Click here to Skip to main content
15,914,642 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
GeneralRe: Controls don't show up in ClassWizard Pin
Frank Deo6-Oct-00 2:45
Frank Deo6-Oct-00 2:45 
GeneralRe: Controls don't show up in ClassWizard Pin
Erik Funkenbusch10-Oct-00 11:32
Erik Funkenbusch10-Oct-00 11:32 
General*** Saving TABLES from Access with MFC application *** Pin
Steve Lai5-Oct-00 11:47
Steve Lai5-Oct-00 11:47 
General *** Displaying TABLES from Access in a MFC application *** Pin
Steve Lai5-Oct-00 11:45
Steve Lai5-Oct-00 11:45 
Generalconnect to lan pc for management Pin
Tony5-Oct-00 8:41
Tony5-Oct-00 8:41 
QuestionHow to restore users Visual Studio profiles on WinNT4 Pin
adilo045-Oct-00 7:56
adilo045-Oct-00 7:56 
GeneralConvert BSTR into LPSTR Pin
gupta5-Oct-00 6:18
gupta5-Oct-00 6:18 
GeneralRe: Convert BSTR into LPSTR Pin
Michael Dunn5-Oct-00 7:19
sitebuilderMichael Dunn5-Oct-00 7:19 
#include <atlconv.h>


void convert(BSTR bstr)
{
  USES_CONVERSION;
  LPSTR sz = W2A(bstr);  // convert to a non-const string
  LPCSTR sz2 = W2CA(bstr);  // convert to a const string
}


The new strings allocated by the W2A and W2CA macros are on the stack, so they will vanish once the function returns.
QuestionHow to change the language in my application Pin
Anonymous5-Oct-00 3:09
Anonymous5-Oct-00 3:09 
QuestionHow to IMPLEMENT a Mutex in C++ ? Pin
GBO5-Oct-00 2:06
GBO5-Oct-00 2:06 
AnswerRe: How to IMPLEMENT a Mutex in C++ ? Pin
Erik Funkenbusch5-Oct-00 7:52
Erik Funkenbusch5-Oct-00 7:52 
GeneralUpdate: How to IMPLEMENT a Mutex in C++ ? (Assembler Guru required) Pin
GBO5-Oct-00 21:42
GBO5-Oct-00 21:42 
GeneralRe: Update: How to IMPLEMENT a Mutex in C++ ? (Assembler Guru required) Pin
GBO5-Oct-00 23:32
GBO5-Oct-00 23:32 
QuestionFace Recognition Software? Pin
Jeremy Davis4-Oct-00 23:19
Jeremy Davis4-Oct-00 23:19 
GeneralHelp with colors in MFC, damn I'm bad at painting :) Pin
Fredrik4-Oct-00 21:53
Fredrik4-Oct-00 21:53 
GeneralRe: Help with colors in MFC, damn I'm bad at painting :) Pin
Jeremy Davis4-Oct-00 22:13
Jeremy Davis4-Oct-00 22:13 
GeneralAnyone got any idea of how to do this? Pin
Fredrik5-Oct-00 21:34
Fredrik5-Oct-00 21:34 
GeneralRe: Anyone got any idea of how to do this? Pin
Jeremy Davis5-Oct-00 22:22
Jeremy Davis5-Oct-00 22:22 
QuestionHow to hide main dialog Pin
Crystal4-Oct-00 17:44
Crystal4-Oct-00 17:44 
AnswerRe: How to hide main dialog Pin
Sam Hobbs4-Oct-00 18:30
Sam Hobbs4-Oct-00 18:30 
GeneralSTL Collection Classes Pin
paulb4-Oct-00 17:19
paulb4-Oct-00 17:19 
GeneralRe: STL Collection Classes Pin
Erik Funkenbusch5-Oct-00 8:03
Erik Funkenbusch5-Oct-00 8:03 
GeneralRe: STL Collection Classes Pin
Erik Funkenbusch5-Oct-00 8:17
Erik Funkenbusch5-Oct-00 8:17 
GeneralRe: STL Collection Classes Pin
Norbert Muench6-Oct-00 3:29
sussNorbert Muench6-Oct-00 3:29 
GeneralCustomize Open File Dialog Pin
Farzad Bakhtiar4-Oct-00 17:01
sussFarzad Bakhtiar4-Oct-00 17:01 

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.