Hi, I create my installation project using VS.NET 2005 , then I add the merge modules to the project ! but it doesn't work ! - I also tried to customize the MSDE Internal properties but it didn't work ! any suggestions !!! hatem++;
Hatem Darweesh
Posts
-
How to embed MSDE installation into my application installer -
How to get all the entries in registryHi, you can use RegOpenKey(..) in loop , see MSDN for more help , u will find multible Registry functions to retrieve data from registry .. hatem
-
problem with EnumDisplayDevices(..)sorry , but I tryed your code , and the same problem occures , !! , I think it may be the problem of Windows2000 , or some thing wrong with my VC++ !! , hatem
-
problem with EnumDisplayDevices(..)I did , nothing happened !! the same error , I want to tell u that I seached in User32.lib , I find all enum function , but EnumDisplayDevices does not exit at all !!! , I MSDN they say that this function exists in User32.LIB !! , I wonder if there is another function , instead of this unexist one !! hatem
-
problem with EnumDisplayDevices(..)thank you.. .. but :( nothing changed ! , still "undeclared indentifier" with .. #include #include #define COMPILE_MULTIMON_STUBS void main() { DISPLAY_DEVICE dd; EnumDisplayDevices(0, 0, &dd, 0); } and , "unresolved external symbol __imp__EnumDisplayDevicesA@16" with .. #define WINVER 0x0500 #include #include #define COMPILE_MULTIMON_STUBS void main() { DISPLAY_DEVICE dd; EnumDisplayDevices(0, 0, &dd, 0); } and if I repaced the windows.h & multimon.h it make 29 error !!! I eally disappointed !!
-
which MFC or SDK should be used for video capturing?hi, the best way to capture video , use DirectShow , youwil find many samples and help in MSDN : DirectX -> DirectShow , u can also see DirectX 9 SDK it contains more new feature and may help u. hatem