Click here to Skip to main content
16,004,906 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
AnswerRe: How to hide program on execution Pin
lonely_life1-Sep-04 19:01
lonely_life1-Sep-04 19:01 
Questionhow:Name function after API name?? Pin
happycpp1-Sep-04 11:35
happycpp1-Sep-04 11:35 
AnswerRe: how:Name function after API name?? Pin
Christian Graus1-Sep-04 11:56
protectorChristian Graus1-Sep-04 11:56 
GeneralRe: how:Name function after API name?? Pin
happycpp3-Sep-04 6:09
happycpp3-Sep-04 6:09 
GeneralRe: how:Name function after API name?? Pin
Christian Graus5-Sep-04 10:12
protectorChristian Graus5-Sep-04 10:12 
Generalansi c: gets dangerous Pin
kfaday1-Sep-04 10:49
kfaday1-Sep-04 10:49 
GeneralRe: ansi c: gets dangerous Pin
Stefan Pedersen1-Sep-04 14:13
Stefan Pedersen1-Sep-04 14:13 
GeneralRe: ansi c: gets dangerous Pin
Henry miller2-Sep-04 3:47
Henry miller2-Sep-04 3:47 
That warning is telling you that it is IMPOSSIBLE to use gets correctly! If your program uses gets I can crash it. Any professor who sees gets in code should automaticly give the student an F!

instead you should use fgets, which can replace your use of gets like this:

fgets(Comando,150,STDIN);

See, it is easy to use fgets, and I can no longer crash your program just be doing something stupid.
GeneralRe: ansi c: gets dangerous Pin
kfaday3-Sep-04 16:07
kfaday3-Sep-04 16:07 
GeneralRe: ansi c: gets dangerous Pin
James R. Twine2-Sep-04 10:24
James R. Twine2-Sep-04 10:24 
QuestionHow do I change the Icon. Pin
nigma_x1-Sep-04 10:48
nigma_x1-Sep-04 10:48 
AnswerRe: How do I change the Icon. Pin
Graham Bradshaw1-Sep-04 12:22
Graham Bradshaw1-Sep-04 12:22 
GeneralRe: How do I change the Icon. Pin
nigma_x2-Sep-04 3:44
nigma_x2-Sep-04 3:44 
GeneralWM_CAPTURECHANGED, lParam=0 Pin
cowwoc20021-Sep-04 10:46
cowwoc20021-Sep-04 10:46 
GeneralRe: WM_CAPTURECHANGED, lParam=0 Pin
darkbyte1-Sep-04 13:17
darkbyte1-Sep-04 13:17 
GeneralRe: WM_CAPTURECHANGED, lParam=0 Pin
Anonymous1-Sep-04 17:17
Anonymous1-Sep-04 17:17 
GeneralRe: WM_CAPTURECHANGED, lParam=0 Pin
Ryan Binns1-Sep-04 18:29
Ryan Binns1-Sep-04 18:29 
GeneralRe: WM_CAPTURECHANGED, lParam=0 Pin
cowwoc20021-Sep-04 18:50
cowwoc20021-Sep-04 18:50 
GeneralRe: WM_CAPTURECHANGED, lParam=0 Pin
Ryan Binns1-Sep-04 21:32
Ryan Binns1-Sep-04 21:32 
GeneralSubtitles ... Pin
Andre Massada1-Sep-04 10:44
Andre Massada1-Sep-04 10:44 
GeneralAdd event to Controlbar button Pin
TNguyen1-Sep-04 8:35
TNguyen1-Sep-04 8:35 
GeneralRe: Add event to Controlbar button Pin
Cliff Hatch20-Jan-05 8:54
Cliff Hatch20-Jan-05 8:54 
GeneralWindow Service Parameters from INI file Pin
aman20061-Sep-04 8:08
aman20061-Sep-04 8:08 
GeneralRe: Window Service Parameters from INI file Pin
David Crow1-Sep-04 8:31
David Crow1-Sep-04 8:31 
GeneralRe: Window Service Parameters from INI file Pin
aman20061-Sep-04 8:44
aman20061-Sep-04 8:44 

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.