Click here to Skip to main content
15,918,031 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
GeneralOCX tweak Pin
el davo2-Jun-03 15:08
el davo2-Jun-03 15:08 
Generaltypename keyword question Pin
Joe Woodbury2-Jun-03 14:43
professionalJoe Woodbury2-Jun-03 14:43 
GeneralRe: typename keyword question Pin
Joaquín M López Muñoz2-Jun-03 20:51
Joaquín M López Muñoz2-Jun-03 20:51 
Questionhow to make Floppy-Disk-Device's LED blinking Pin
FlyingDancer2-Jun-03 14:36
FlyingDancer2-Jun-03 14:36 
AnswerRe: how to make Floppy-Disk-Device's LED blinking Pin
Toni782-Jun-03 21:00
Toni782-Jun-03 21:00 
GeneralRe: how to make Floppy-Disk-Device's LED blinking Pin
FlyingDancer2-Jun-03 21:25
FlyingDancer2-Jun-03 21:25 
Generala problem on WinExec Pin
olinn2-Jun-03 13:46
olinn2-Jun-03 13:46 
GeneralRe: a problem on WinExec Pin
Chris Richardson2-Jun-03 14:24
Chris Richardson2-Jun-03 14:24 
Well, the program itself isn't the one doing the redirecting, it's the "cmd" (NT bases systems) or "command" (95 bases boxes) program that does the redirecting. So, if you want to do it, you can do it like this:

// NOTE: not very safe code.  Also, it will only work on NT/2K/XP (since I used cmd.exe).
TCHAR a_szCommandLine[512] = {0};
_stprintf( a_szCommandLine, _T("cmd.exe /c \"exefilename.exe -? > a.txt\"") );
WinExec( a_szCommandLine, SW_HIDE );


Chris Richardson
Terrain Software
GeneralRe: a problem on WinExec Pin
olinn3-Jun-03 3:49
olinn3-Jun-03 3:49 
GeneralAdd Member Variable Pin
Dan Savilonis2-Jun-03 13:30
Dan Savilonis2-Jun-03 13:30 
GeneralRe: Add Member Variable Pin
Christian Graus2-Jun-03 13:53
protectorChristian Graus2-Jun-03 13:53 
GeneralRe: Add Member Variable Pin
Dan Savilonis2-Jun-03 14:14
Dan Savilonis2-Jun-03 14:14 
GeneralCode examples on DDX_control() Pin
Steven M Hunt2-Jun-03 13:22
Steven M Hunt2-Jun-03 13:22 
QuestionWhere is Tray[notification] Icon Position? Pin
Behzad Ebrahimi2-Jun-03 12:50
Behzad Ebrahimi2-Jun-03 12:50 
AnswerRe: Where is Tray[notification] Icon Position? Pin
Behzad Ebrahimi2-Jun-03 13:41
Behzad Ebrahimi2-Jun-03 13:41 
GeneralMxing MFC client with ATL DLL (CString) Pin
Peter Weyzen2-Jun-03 12:49
Peter Weyzen2-Jun-03 12:49 
GeneralRe: Mxing MFC client with ATL DLL (CString) Pin
Peter Weyzen3-Jun-03 12:01
Peter Weyzen3-Jun-03 12:01 
GeneralSTL vector Pin
Greg232342-Jun-03 11:50
sussGreg232342-Jun-03 11:50 
GeneralRe: STL vector Pin
Neville Franks2-Jun-03 12:11
Neville Franks2-Jun-03 12:11 
GeneralRe: STL vector Pin
Mike Nordell2-Jun-03 22:18
Mike Nordell2-Jun-03 22:18 
GeneralDialog App Question Pin
Tom Wright2-Jun-03 11:20
Tom Wright2-Jun-03 11:20 
GeneralRe: Dialog App Question Pin
abc8762-Jun-03 11:40
abc8762-Jun-03 11:40 
GeneralRe: Dialog App Question Pin
Tom Wright2-Jun-03 12:03
Tom Wright2-Jun-03 12:03 
GeneralRe: Dialog App Question Pin
Tom Wright2-Jun-03 12:04
Tom Wright2-Jun-03 12:04 
GeneralRe: Dialog App Question Pin
User 66582-Jun-03 11:47
User 66582-Jun-03 11:47 

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.