Click here to Skip to main content
15,889,909 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
GeneralRe: Testing Dll Error problem Pin
Cedric Moonen12-Nov-09 22:24
Cedric Moonen12-Nov-09 22:24 
QuestionMFC Pin
billu 212-Nov-09 20:23
billu 212-Nov-09 20:23 
AnswerRe: MFC Pin
CPallini12-Nov-09 20:36
mveCPallini12-Nov-09 20:36 
GeneralRe: MFC Pin
billu 212-Nov-09 21:20
billu 212-Nov-09 21:20 
GeneralRe: MFC Pin
CPallini12-Nov-09 21:27
mveCPallini12-Nov-09 21:27 
AnswerRe: MFC Pin
David Crow13-Nov-09 3:43
David Crow13-Nov-09 3:43 
QuestionHow to delete a line from file? Pin
Paulraj G12-Nov-09 20:22
Paulraj G12-Nov-09 20:22 
AnswerRe: How to delete a line from file? Pin
Maxwell Chen12-Nov-09 20:31
Maxwell Chen12-Nov-09 20:31 
AnswerRe: How to delete a line from file? Pin
CPallini12-Nov-09 20:35
mveCPallini12-Nov-09 20:35 
AnswerRe: How to delete a line from file? Pin
«_Superman_»12-Nov-09 20:36
professional«_Superman_»12-Nov-09 20:36 
AnswerRe: How to delete a line from file? Pin
David Crow13-Nov-09 3:46
David Crow13-Nov-09 3:46 
Question.html to .doc using C++. Pin
Paresh Chitte12-Nov-09 20:19
Paresh Chitte12-Nov-09 20:19 
QuestionHow to make faster or any way to Speed up UI? Pin
002comp12-Nov-09 19:54
002comp12-Nov-09 19:54 
AnswerRe: How to make faster or any way to Speed up UI? Pin
Maxwell Chen12-Nov-09 19:58
Maxwell Chen12-Nov-09 19:58 
GeneralRe: How to make faster or any way to Speed up UI? Pin
002comp12-Nov-09 20:13
002comp12-Nov-09 20:13 
GeneralRe: How to make faster or any way to Speed up UI? Pin
Maxwell Chen12-Nov-09 20:29
Maxwell Chen12-Nov-09 20:29 
GeneralRe: How to make faster or any way to Speed up UI? Pin
002comp12-Nov-09 20:34
002comp12-Nov-09 20:34 
GeneralRe: How to make faster or any way to Speed up UI? Pin
CPallini12-Nov-09 20:43
mveCPallini12-Nov-09 20:43 
GeneralRe: How to make faster or any way to Speed up UI? Pin
Iain Clarke, Warrior Programmer12-Nov-09 23:15
Iain Clarke, Warrior Programmer12-Nov-09 23:15 
QuestionRe: How to make faster or any way to Speed up UI? Pin
David Crow13-Nov-09 3:49
David Crow13-Nov-09 3:49 
QuestionDLL creation problem Pin
Game-point12-Nov-09 17:28
Game-point12-Nov-09 17:28 
AnswerRe: DLL creation problem Pin
«_Superman_»12-Nov-09 17:48
professional«_Superman_»12-Nov-09 17:48 
GeneralRe: DLL creation problem Pin
Game-point12-Nov-09 18:40
Game-point12-Nov-09 18:40 
GeneralRe: DLL creation problem Pin
«_Superman_»12-Nov-09 18:43
professional«_Superman_»12-Nov-09 18:43 
You're doing it all wrong.
Command line arguments are used to pass in arguments.
And not set them from you're program.

For example, if you run the Exe like - MyExe hello world
You can read them in your program using the parameter of main.

argv[0] will be "MyExe"
argv[1] will be "hello"
argv[2] will be "world"

«_Superman
I love work. It gives me something to do between weekends.

Microsoft MVP (Visual C++)

GeneralRe: DLL creation problem Pin
Game-point12-Nov-09 18:58
Game-point12-Nov-09 18:58 

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.