Click here to Skip to main content
16,011,849 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
AnswerRe: What color is gray? Pin
Ravi Bhavnani1-Oct-02 7:11
professionalRavi Bhavnani1-Oct-02 7:11 
AnswerRe: What color is gray? Pin
Dimitri Rochette1-Oct-02 7:29
Dimitri Rochette1-Oct-02 7:29 
AnswerRe: What color is gray? Pin
Chad Koehler1-Oct-02 7:26
Chad Koehler1-Oct-02 7:26 
GeneralRe: What color is gray? Pin
Aaron Schaefer1-Oct-02 8:26
Aaron Schaefer1-Oct-02 8:26 
QuestionHow can I manage to execute an application in a administrator mode Pin
Alex Gomara1-Oct-02 6:40
Alex Gomara1-Oct-02 6:40 
AnswerRe: How can I manage to execute an application in a administrator mode Pin
Tomasz Sowinski1-Oct-02 6:49
Tomasz Sowinski1-Oct-02 6:49 
GeneralRe: How can I manage to execute an application in a administrator mode Pin
Alex Gomara1-Oct-02 7:13
Alex Gomara1-Oct-02 7:13 
GeneralRe: How can I manage to execute an application in a administrator mode Pin
Rick Crone2-Oct-02 9:26
Rick Crone2-Oct-02 9:26 
The command line parameters can be used in the InitInstance() of your application. The command line is stored in m_lpCmdLine which is a char array. If you pass your parameter with a slash (ie. /MYPARM) they will be considered flags. If you don't include the slash the first
parameter will be considered to be the file you want to open. You can turn off that behavior my setting:

cmdIndo.mShellCommand = CCommandLineInfo::FileNew;

but why not just include the slash?

*NOTE you can test your command line parameter in the developer studio!
see the PROJECT - SETTINGS - DEBUG(tab)

GeneralStoring 2 longs in a single variable Pin
Gilfrog1-Oct-02 6:40
Gilfrog1-Oct-02 6:40 
GeneralRe: Storing 2 longs in a single variable Pin
Tomasz Sowinski1-Oct-02 6:47
Tomasz Sowinski1-Oct-02 6:47 
GeneralRe: Storing 2 longs in a single variable Pin
Gilfrog1-Oct-02 6:53
Gilfrog1-Oct-02 6:53 
GeneralRe: Storing 2 longs in a single variable Pin
Chris Losinger1-Oct-02 6:52
professionalChris Losinger1-Oct-02 6:52 
GeneralRe: Storing 2 longs in a single variable Pin
Gilfrog1-Oct-02 7:02
Gilfrog1-Oct-02 7:02 
GeneralRe: Storing 2 longs in a single variable Pin
Chris Losinger1-Oct-02 10:56
professionalChris Losinger1-Oct-02 10:56 
GeneralRe: Storing 2 longs in a single variable Pin
Tomasz Sowinski1-Oct-02 6:57
Tomasz Sowinski1-Oct-02 6:57 
GeneralRe: Storing 2 longs in a single variable Pin
Ryan B.1-Oct-02 7:52
Ryan B.1-Oct-02 7:52 
GeneralRe: Storing 2 longs in a single variable Pin
Anonymous1-Oct-02 8:26
Anonymous1-Oct-02 8:26 
GeneralRe: Storing 2 longs in a single variable Pin
Chris Richardson1-Oct-02 8:33
Chris Richardson1-Oct-02 8:33 
GeneralRe: Storing 2 longs in a single variable Pin
Scott H. Settlemier1-Oct-02 9:19
Scott H. Settlemier1-Oct-02 9:19 
GeneralRe: Storing 2 longs in a single variable Pin
Chris Richardson1-Oct-02 9:22
Chris Richardson1-Oct-02 9:22 
GeneralRe: Storing 2 longs in a single variable Pin
Scott H. Settlemier1-Oct-02 9:38
Scott H. Settlemier1-Oct-02 9:38 
GeneralRe: Storing 2 longs in a single variable Pin
Gilfrog1-Oct-02 10:00
Gilfrog1-Oct-02 10:00 
GeneralRe: Storing 2 longs in a single variable Pin
PJ Arends1-Oct-02 10:24
professionalPJ Arends1-Oct-02 10:24 
GeneralRe: Storing 2 longs in a single variable Pin
Chris Richardson1-Oct-02 10:32
Chris Richardson1-Oct-02 10:32 
GeneralDataStorage / Modification Project Pin
Anonymous1-Oct-02 6:20
Anonymous1-Oct-02 6:20 

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.