Click here to Skip to main content
15,899,314 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
Questionrepresent string as its DWORD value Pin
Makakuin12-Oct-06 3:37
Makakuin12-Oct-06 3:37 
AnswerRe: represent string as its DWORD value Pin
Mark Salsbery12-Oct-06 4:48
Mark Salsbery12-Oct-06 4:48 
GeneralRe: represent string as its DWORD value Pin
Makakuin12-Oct-06 7:20
Makakuin12-Oct-06 7:20 
GeneralRe: represent string as its DWORD value Pin
Mark Salsbery12-Oct-06 7:43
Mark Salsbery12-Oct-06 7:43 
AnswerRe: represent string as its DWORD value Pin
Zac Howland12-Oct-06 7:24
Zac Howland12-Oct-06 7:24 
GeneralRe: represent string as its DWORD value Pin
Makakuin12-Oct-06 7:41
Makakuin12-Oct-06 7:41 
GeneralRe: represent string as its DWORD value Pin
Zac Howland12-Oct-06 7:56
Zac Howland12-Oct-06 7:56 
GeneralRe: represent string as its DWORD value [modified] Pin
Makakuin12-Oct-06 9:09
Makakuin12-Oct-06 9:09 
What I mean is:

For now I use:

//////////////////////////////
DCB dcb;

dcb.BaudRate = inifile.getInt("Baudrate"); //Accepts int
dcb.StopBits = inifile.getInt("StopBits");//Accepts int
//////////////////////////////
and so on...

inifile is my created class where getInt(char* paramname) is returning value of type 'int', which is acceptable to DCB class. As you know originaly it would be done like this:

/////////////////////////////
dcb.BaudRate = CBR_9600; //Accepts DWORD
dcb.StopBits = ONESTOPBIT; //Accepts DWORD

/////////////////////////////

where CBR_9600 and ONESTOPBIT are defined by c++ like 9600 and 0.
What I want to do is store those settings in config file (doesn`t matter ini or xml) as strings CBR_9600 and ONESTOPBIT and then read them.
This won`t work:

//////////////////////////////
dcb.BaudRate = inifile.getTxtVal("BaudRate");
//////////////////////////////

because getTxtVal() returns char[] (wich is not acceptable for DCB) variable containing CBR_9600.

May be it is now easyer to understand what i was trying to say.... Frown | :(

But maybe I`m a lOl.






-- modified at 15:30 Thursday 12th October, 2006
GeneralRe: represent string as its DWORD value Pin
Zac Howland12-Oct-06 9:16
Zac Howland12-Oct-06 9:16 
GeneralRe: represent string as its DWORD value Pin
Makakuin12-Oct-06 10:00
Makakuin12-Oct-06 10:00 
GeneralRe: represent string as its DWORD value Pin
Zac Howland12-Oct-06 10:03
Zac Howland12-Oct-06 10:03 
GeneralRe: represent string as its DWORD value Pin
Makakuin12-Oct-06 9:28
Makakuin12-Oct-06 9:28 
QuestionRe: represent string as its DWORD value Pin
David Crow12-Oct-06 9:34
David Crow12-Oct-06 9:34 
QuestionResource.h File Checking Pin
Andy20212-Oct-06 3:12
Andy20212-Oct-06 3:12 
AnswerRe: Resource.h File Checking Pin
Hamid_RT12-Oct-06 3:20
Hamid_RT12-Oct-06 3:20 
GeneralRe: Resource.h File Checking Pin
David Crow12-Oct-06 3:50
David Crow12-Oct-06 3:50 
GeneralRe: Resource.h File Checking Pin
Maximilien12-Oct-06 7:20
Maximilien12-Oct-06 7:20 
GeneralRe: Resource.h File Checking Pin
David Crow12-Oct-06 7:28
David Crow12-Oct-06 7:28 
GeneralRe: Resource.h File Checking Pin
Grahamfff12-Oct-06 9:41
Grahamfff12-Oct-06 9:41 
GeneralRe: Resource.h File Checking Pin
David Crow12-Oct-06 10:11
David Crow12-Oct-06 10:11 
AnswerRe: Resource.h File Checking Pin
toxcct12-Oct-06 3:26
toxcct12-Oct-06 3:26 
GeneralRe: Resource.h File Checking Pin
Galatei12-Oct-06 7:41
Galatei12-Oct-06 7:41 
GeneralRe: Resource.h File Checking Pin
Blake Miller13-Oct-06 4:32
Blake Miller13-Oct-06 4:32 
QuestionC on UNIX Question Pin
Yadrif12-Oct-06 2:34
Yadrif12-Oct-06 2:34 
AnswerRe: C on UNIX Question Pin
tom144312-Oct-06 2:50
tom144312-Oct-06 2:50 

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.