Looks like a '\' is missing in the file path. Try "C:\\file.flv".
KingsGambit
Posts
-
Flash Player Activex problem -
convertion between string and doubleThe problem is due to ',' in '1,000'. Remove ',' and it would work.
-
Drawing text issueYou can try using Graphics object gfx only for drawing. No need to mix GDI and GDI+. Instead of TextOut(), use Graphics::DrawString()
-
How to disable warning popup in ActiveXHi, Not sure if the way we register the ActiveX has anything to do with the 'No Safe' message displayed by the web browser. Thanks, Rejeesh
-
How to disable warning popup in ActiveXCheck the following link on digitally signing the ActiveX control. http://msdn.microsoft.com/en-us/library/aa752035(v=vs.85).aspx[^]
-
how to simulate the mspaint...You can Google it to find samples.
-
Help Microsoft Scripting RuntimeCheck the following codeproject article: Adding VBScript and JScript support in your C++ applications[^]
-
How can i delete History and Cookies Directory in Internet explorer?Checkout if the following link helps http://www.walkernews.net/2007/07/07/rundll32-programmatically-delete-ie7-browsing-history/[^]
-
App Launch CrashMay be you will have to install the VC++ 2008 redistributable as well.
-
Download file using CInternetSession [modified]I think you can try the function URLDownloadToFile(). http://msdn.microsoft.com/en-us/library/ms775123(v=vs.85).aspx[^]
-
Refresh/redraw controls in CFormViewZ-Order for the child controls will not work for displaying a child window on the top of another. What you can do is instead of using a CStatic control for displaying the bitmap, you can render the bitmap directly on to the parent window.
-
Convert to DLLFor creating a DLL you can check the following link: http://msdn.microsoft.com/en-us/library/ms235636(v=vs.80).aspx[^]
-
VC FLEXYes it is possible. You can use Adobe Flash Player ActiveX control in ypur VC++ project. You can make use of events and methods provided by Adobe Flash Player control to communicate between C++ and the Flash file (Which is the result of compiling your Flex project).
-
How can convert a char array to CString?Check the encoding used in file.
-
what data type use in String concatination function in vc++ DLL?Check if the following link helps: http://support.microsoft.com/kb/187912[^]
-
Best tutorials for Windows Phone 7You can check if the following link is useful: http://msdn.microsoft.com/en-us/wp7trainingcourse.aspx[^]
-
Os InstallUse GetVersionEx() http://msdn.microsoft.com/en-us/library/ms724451(VS.85).aspx[^]
-
How to call DoDataExchange() of a property page at runtimeDoDataExchange() is not supposed to be called directly. You can use UpdateData().
-
PDA Serail NumberCheck if the following link is helpful http://social.msdn.microsoft.com/Forums/en-SG/vssmartdevicesvbcs/thread/467c081d-2808-4019-a4a2-486e3fb24d19[^]
-
OnQuit event of DWebBrowserEvents2 interface not called on IE8 on some Vista machinDocumentation states OnQuit 'Fires before the Windows Internet Explorer application quits'. May be you can check if the IE has actually quit.