Click here to Skip to main content
15,922,007 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
Questionhow to include library file Pin
sharanu5-Feb-08 2:00
sharanu5-Feb-08 2:00 
AnswerRe: how to include library file Pin
Rajkumar R5-Feb-08 2:17
Rajkumar R5-Feb-08 2:17 
AnswerRe: how to include library file Pin
Chris Losinger5-Feb-08 2:17
professionalChris Losinger5-Feb-08 2:17 
AnswerRe: how to include library file Pin
David Crow5-Feb-08 2:37
David Crow5-Feb-08 2:37 
GeneralRe: how to include library file Pin
Rajesh R Subramanian5-Feb-08 5:22
professionalRajesh R Subramanian5-Feb-08 5:22 
GeneralRe: how to include library file Pin
CPallini5-Feb-08 6:31
mveCPallini5-Feb-08 6:31 
GeneralExtract string from CString Pin
Anu_Bala5-Feb-08 1:35
Anu_Bala5-Feb-08 1:35 
GeneralRe: Extract string from CString Pin
nbugalia5-Feb-08 1:47
nbugalia5-Feb-08 1:47 
GeneralRe: Extract string from CString Pin
Rajkumar R5-Feb-08 1:56
Rajkumar R5-Feb-08 1:56 
GeneralRe: Extract string from CString [modified] Pin
CPallini5-Feb-08 2:08
mveCPallini5-Feb-08 2:08 
GeneralRe: Extract string from CString Pin
Rajkumar R5-Feb-08 2:13
Rajkumar R5-Feb-08 2:13 
GeneralRe: Extract string from CString Pin
Mark Salsbery5-Feb-08 5:56
Mark Salsbery5-Feb-08 5:56 
GeneralRe: Extract string from CString Pin
CPallini5-Feb-08 6:11
mveCPallini5-Feb-08 6:11 
GeneralRe: Extract string from CString Pin
Mark Salsbery5-Feb-08 6:14
Mark Salsbery5-Feb-08 6:14 
GeneralRe: Extract string from CString Pin
Rajesh R Subramanian5-Feb-08 21:41
professionalRajesh R Subramanian5-Feb-08 21:41 
QuestionRe: Extract string from CString Pin
Rajkumar R6-Feb-08 0:15
Rajkumar R6-Feb-08 0:15 
NewsRe: Extract string from CString Pin
Rajesh R Subramanian6-Feb-08 1:23
professionalRajesh R Subramanian6-Feb-08 1:23 
GeneralRe: Extract string from CString Pin
Rajkumar R6-Feb-08 1:30
Rajkumar R6-Feb-08 1:30 
GeneralRe: Extract string from CString Pin
Rajesh R Subramanian6-Feb-08 1:45
professionalRajesh R Subramanian6-Feb-08 1:45 
GeneralRe: Extract string from CString [modified] Pin
Rajkumar R6-Feb-08 1:49
Rajkumar R6-Feb-08 1:49 
QuestionDhcpRequestParams() Pin
Ajay L D5-Feb-08 0:15
Ajay L D5-Feb-08 0:15 
QuestionRe: DhcpRequestParams() Pin
David Crow14-Mar-08 5:50
David Crow14-Mar-08 5:50 
Generalhidden window Pin
Kogee San4-Feb-08 23:45
Kogee San4-Feb-08 23:45 
GeneralRe: hidden window Pin
Rajkumar R5-Feb-08 2:12
Rajkumar R5-Feb-08 2:12 
if /SUBSYSTEM is console, that is console application, by default system provides a console, i am not sure whether it can be disabled, In linux, for console applications, console is not visible until an console IO statement is executed.

In your sample, main() is not going to execute in (/SUBSYSTEM:WINDOWS) and WinMain is not going to execute in (/SUBSYSTEM:CONSOLE).
However since in (/SUBSYSTEM:WINDOWS) application, since u r not creating any windows, it seems the application is hidden.

1)If you want any user interface and want to hide whenever possible, go for windows application and use ShowWindow() API to hide.
If you never want to have an user interface in this application,
2) still u can use windows application with no window created or
3) go for "Windows Service Application", Windows Service application is usually meant for background and long run task.
GeneralRe: hidden window Pin
Kogee San5-Feb-08 14:36
Kogee San5-Feb-08 14:36 

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.