The performance of iceProjector is better than most other programs'. It's a good idea to transparent the flash with windows region.
sunlin7
Posts
-
How to play flash movies with transparent background color in a Window? -
关于32/64位操作系统下,应用程序兼容性问题You would get more help if you describe your problems in English. 以前你也用中文在这里叫过吧?鬼佬们不懂中文,白瞎了~~ 个人理解,仅供参考: win32程序在win64上面是通过wow64工作的,被。64位程隔离在一个独立的环境里面序和32位程序在用户层不可互访。因此没有办法只用一个程序在64位和32位间无缝转换。即64环境中必须用64的程序才能安装64位的驱动,32位环境中只能用32位程序安装驱动。 不过完全可以做到在源代码层面统一。
modified on Wednesday, July 21, 2010 9:19 AM
-
programming C in Visual C++ express edition.You need run VisualStudio, then choose the follow options begin from "Tools" menu: "Tools->Options...->Project and solutions->VC++ Directories" you can set the executable/libraray/include directories now.
-
C2061Sorry for my spelling.^_^
-
C2061I think your spelling wrong:
virtual bool OnEvent(const SEvent& event) { initialMenu = new initialMenu(Context); return true; } virtual bool OnEvent(const SEvent& event) { initialMenu = new InitialMenu(Context); return true; }
-
programming C in Visual C++ express edition.You need to add the sdk information to your Visual Studio. e.g: add "D:\Program Files\Microsoft SDKs\Windows\v6.0A\bin" to "Executable files", add "D:\Program Files\Microsoft SDKs\Windows\v6.0A\Include" to "Include files", add "D:\Program Files\Microsoft SDKs\Windows\v6.0A\lib" to "Libraray files", ... Please check these settings of Visual Studio on your machine.
-
Seeking introductory text on the STLOK. Look, I am really sorry for my mistake.
-
Seeking introductory text on the STLI'm so sorry about that. I am a new guy with passion in codeproject.
-
Seeking introductory text on the STLThe Bible for stl is the C++ Templates the complete guide
-
C++ dll to Call in VBc++ code: __declspec(dllexport)BSTR WINAPI RetMsg(void) { wchar_t szMsg[] = L"Hello, world!"; BSTR pMsg = SysAllocStringLen(szMsg, wcslen(szMsg) + 1); return pMsg; } __declspec(dllexport)ULONG WINAPI FreeMsg(BSTR pMsg) { return SysFreeString(pMsg); } VB code: Private Declare Function RetMsg Lib "msg.dll" Alias "RetMsg" () As String
-
Having different value for a global variable per thread.You can use the follow code: __declspec( thread ) int tls_i = 1; in visual c++.
-
Hide Command Prompt in Console Applicationcomplite your project as a windows application, there will be no console during it's executeing unless you AllocConsole when application need interactiving with user, FreeConsole when you want hide the console. Sorry for my English, I'm not good at it.
-
Hide Command Prompt in Console Applicationyou can alloc a console by AllocConsole function and destroy by FreeConsole when you didn't need it. hope this will solve your problem.
-
Making An Exe stand alone [modified]you can use memu "Project"->"settings(Alt+F7)", click "complie" in dialog, then choose then choose "Code Generation", see the "use run-time libraray", choose "MultiThreaded" or "MultiThreaded Debug", rebuild project to apply changes.
-
Making An Exe stand alone [modified]The program will work well when you use the static c runtime libraray.
-
File Creation in share mode in VC++read text lines from file and save them to vector(or other container), then sort the vector and unique it.
-
How to reduce exe size?try UPX to pack and compress your executeable files.
-
How to reduce exe size?the mspaint.exe can convert 24bit true color image to 16bit ones.