Click here to Skip to main content
15,919,245 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
GeneralRe: CHtmlView in a CDialog Pin
monrobot1327-Sep-02 6:58
monrobot1327-Sep-02 6:58 
QuestionEmbedded VC++ 3.0... does it work fine ? Pin
Braulio Dez27-Sep-02 4:19
Braulio Dez27-Sep-02 4:19 
GeneralCoInitializeEx & _WIN32_WINNT Pin
Jon Hulatt27-Sep-02 4:01
Jon Hulatt27-Sep-02 4:01 
GeneralRe: CoInitializeEx & _WIN32_WINNT Pin
Andreas Saurwein27-Sep-02 4:23
Andreas Saurwein27-Sep-02 4:23 
GeneralRe: CoInitializeEx & _WIN32_WINNT Pin
Rohit  Sinha27-Sep-02 5:09
Rohit  Sinha27-Sep-02 5:09 
GeneralCopying a CString to the clipboard Pin
Anonymous27-Sep-02 4:00
Anonymous27-Sep-02 4:00 
GeneralRe: Copying a CString to the clipboard Pin
Andreas Saurwein27-Sep-02 4:08
Andreas Saurwein27-Sep-02 4:08 
GeneralRe: Copying a CString to the clipboard Pin
Daniel Ferguson27-Sep-02 4:19
Daniel Ferguson27-Sep-02 4:19 
CSharedFile sf(GMEM_MOVEABLE | GMEM_SHARE | GMEM_ZEROINIT);

// Place clipboard data in the shared memory file
sf.Write(sString, strlen(sString)); 
	
if (sf.GetLength() > 0) {
	// Put the data on the clipboard
	OpenClipboard(AfxGetMainWnd()->GetSafeHwnd());	
	EmptyClipboard();
#ifdef _UNICODE
	SetClipboardData(CF_UNICODETEXT, sf.Detach());
#else
	SetClipboardData(CF_TEXT, sf.Detach());
#endif
	CloseClipboard();
}


_____________________
"So in the interests of survival, they trained themselves to be agreeing machines instead of thinking machines. All their minds had to do was to discover what other people were thinking, and then they thought that, too."
Breakfast of Champions, Kurt Vonnegut

GeneralRe: Copying a CString to the clipboard Pin
Anonymous27-Sep-02 4:32
Anonymous27-Sep-02 4:32 
GeneralRe: Copying a CString to the clipboard Pin
valikac27-Sep-02 6:22
valikac27-Sep-02 6:22 
GeneralCalling convention in a DLL Pin
Paul Riley27-Sep-02 3:37
Paul Riley27-Sep-02 3:37 
GeneralRe: Calling convention in a DLL Pin
KaЯl27-Sep-02 3:58
KaЯl27-Sep-02 3:58 
GeneralRe: Calling convention in a DLL Pin
Paul Riley27-Sep-02 4:11
Paul Riley27-Sep-02 4:11 
GeneralRe: Calling convention in a DLL Pin
Anonymous27-Sep-02 4:04
Anonymous27-Sep-02 4:04 
GeneralRe: Calling convention in a DLL Pin
Paul Riley27-Sep-02 4:14
Paul Riley27-Sep-02 4:14 
GeneralRe: Calling convention in a DLL Pin
Anonymous27-Sep-02 4:25
Anonymous27-Sep-02 4:25 
GeneralRe: Calling convention in a DLL Pin
Paul Riley27-Sep-02 4:30
Paul Riley27-Sep-02 4:30 
GeneralRe: Calling convention in a DLL Pin
jmkhael27-Sep-02 4:40
jmkhael27-Sep-02 4:40 
GeneralRe: Calling convention in a DLL Pin
Paul Riley27-Sep-02 4:58
Paul Riley27-Sep-02 4:58 
Generalrelease as default Pin
Zizilamoroso27-Sep-02 3:24
Zizilamoroso27-Sep-02 3:24 
GeneralRe: release as default Pin
Andreas Saurwein27-Sep-02 4:09
Andreas Saurwein27-Sep-02 4:09 
GeneralRe: release as default Pin
Zizilamoroso27-Sep-02 4:28
Zizilamoroso27-Sep-02 4:28 
GeneralRe: release as default Pin
Andreas Saurwein27-Sep-02 4:32
Andreas Saurwein27-Sep-02 4:32 
GeneralRe: release as default Pin
jmkhael27-Sep-02 4:53
jmkhael27-Sep-02 4:53 
GeneralRe: release as default Pin
Andreas Saurwein27-Sep-02 4:59
Andreas Saurwein27-Sep-02 4:59 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.