Thank you.
Thanks and Regards, Selvam, http://www15.brinkster.com/selvamselvam/
Thank you.
Thanks and Regards, Selvam, http://www15.brinkster.com/selvamselvam/
The DLL doesn't own the message pump. If the DLL opens modeless dialogs or has a frame window, the application's main message pump must call a routine exported by the DLL. http://msdn.microsoft.com/en-us/library/f22wcbea(v=vs.80).aspx[^]
Thanks and Regards, Selvam, http://www15.brinkster.com/selvamselvam/
Hi Richard, Thanks for your help. so, I can use ASCII functions(string manipulations, Windows API functions , etc) for my French application. Is it?
Thanks and Regards, Selvam, http://www15.brinkster.com/selvamselvam/
Hi, We are going to support our application for French localization (iso-8859-1 Windows-1252). The application developed using C++ and C# technologies. As per my understanding, if we support Unicode or MBCS (Multi-byte character set), we won’t get any data loss. Can we use normal string function for handle French characters or _MBCS requires for handle French characters? Example: Can we
if( *sz1 == 'A' )
for Character Comparison or
if( !_mbccmp( sz1, sz2) )
Thanks and Regards, Selvam, http://www15.brinkster.com/selvamselvam/
CListCtrl encapsulate list view. so, we can use the list view messages http://msdn.microsoft.com/en-us/library/cc656508%28VS.85%29.aspx[^]
Thanks and Regards, Selvam, http://www.wincpp.com
try to move the following line to outside main function
bool GetNextComb( std::vector<unsigned int> &vi );
Thanks and Regards, Selvam, http://www.wincpp.com
Hi, C++ supports Unicode using wchar_t data type. You can allocate size for unicode data type and write Unicode format.
size_t n = fwrite(s.c_str(), sizeof(wchar_t), s.size(), f);
more information/example on the following web http://groups.google.com/group/microsoft.public.vc.language/msg/ea6b6462744737d5?pli=1[^] http://cboard.cprogramming.com/c-programming/87932-reading-unicode-file.html[^]
Thanks and Regards, Selvam, http://www.wincpp.com
Unicode and ANSI file I/O, line by line[^]
Thanks and Regards, Selvam, http://www.wincpp.com
You can make it Or try with Google for get logic for develop code.
Thanks and Regards, Selvam, http://www.wincpp.com
http://msdn.microsoft.com/en-us/magazine/cc301454.aspx[^]
Thanks and Regards, Selvam, http://www.wincpp.com
http://www.codeguru.com/cpp/controls/treeview/misc-advanced/article.php/c3983/[^]
Thanks and Regards, Selvam, http://www.wincpp.com
check with TerminateProcess Function http://msdn.microsoft.com/en-us/library/ms686714%28VS.85%29.aspx[^] How To Terminate an Application "Cleanly" in Win32 http://support.microsoft.com/kb/178893[^]
Thanks and Regards, Selvam, http://www.wincpp.com
I don't find any direct function support from windows programming. We may use MENUINFO Structure for change style( ex, MNS_AUTODISMISS, mask MIM_BACKGROUND).
Thanks and Regards, Selvam, http://www.wincpp.com
modified on Thursday, September 10, 2009 1:31 AM
create window with one menu and use ShowWindow function for hide the window.
Thanks and Regards, Selvam, http://www.wincpp.com
Check Microsoft Media Server (MMS) Protocol spec,. http://msdn.microsoft.com/en-us/library/cc234711%28PROT.10%29.aspx
Thanks and Regards, Selvam, http://www.wincpp.com
Are you getting error during linking time? If so, you may be miss symbols from your dll's. check with dependency walker for get missing symbols.
Thanks and Regards, Selvam, http://www.wincpp.com
Microsoft C language Reference http://msdn.microsoft.com/en-us/library/fw5abdx6.aspx[^]
Thanks and Regards, Selvam, http://www.wincpp.com
try with the following change.
int x;
CWinThread *pThread = AfxBeginThread (GcThreadFunction, &x);
Thanks and Regards, Selvam, http://www.wincpp.com
http://support.microsoft.com/kb/180232[^]
Thanks and Regards, Selvam, http://www.wincpp.com
It may be fail for Dialog Data Validation. you can check miRadio definition. http://msdn.microsoft.com/en-in/library/k48w5b23%28en-us,VS.80%29.aspx[^] http://msdn.microsoft.com/en-in/library/57weza95%28en-us,VS.80%29.aspx[^]
Thanks and Regards, Selvam, http://www.wincpp.com