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

C / C++ / MFC

 
GeneralChange View in SDI-Application Pin
AnTri16-Jan-08 9:04
AnTri16-Jan-08 9:04 
GeneralRe: Change View in SDI-Application Pin
Mark Salsbery16-Jan-08 9:39
Mark Salsbery16-Jan-08 9:39 
GeneralRe: Change View in SDI-Application Pin
AnTri16-Jan-08 9:49
AnTri16-Jan-08 9:49 
GeneralUsing extendes MFC-Dll for my control Pin
AnTri16-Jan-08 8:36
AnTri16-Jan-08 8:36 
GeneralRe: Using extendes MFC-Dll for my control Pin
Mark Salsbery16-Jan-08 8:50
Mark Salsbery16-Jan-08 8:50 
GeneralRe: Using extendes MFC-Dll for my control Pin
AnTri16-Jan-08 9:49
AnTri16-Jan-08 9:49 
GeneralRe: Using extendes MFC-Dll for my control Pin
Iain Clarke, Warrior Programmer17-Jan-08 2:14
Iain Clarke, Warrior Programmer17-Jan-08 2:14 
QuestionFormatting text onto a DC Pin
Santanu Lahiri16-Jan-08 8:05
Santanu Lahiri16-Jan-08 8:05 
GeneralRe: Formatting text onto a DC Pin
James R. Twine16-Jan-08 8:11
James R. Twine16-Jan-08 8:11 
GeneralRe: Formatting text onto a DC Pin
Santanu Lahiri16-Jan-08 9:06
Santanu Lahiri16-Jan-08 9:06 
GeneralRe: Formatting text onto a DC Pin
Santanu Lahiri16-Jan-08 15:52
Santanu Lahiri16-Jan-08 15:52 
GeneralRe: Formatting text onto a DC Pin
Santanu Lahiri18-Jan-08 4:31
Santanu Lahiri18-Jan-08 4:31 
QuestionHow do you reverse the action on a Spin control Pin
littleGreenDude16-Jan-08 4:04
littleGreenDude16-Jan-08 4:04 
GeneralRe: How do you reverse the action on a Spin control Pin
led mike16-Jan-08 4:47
led mike16-Jan-08 4:47 
GeneralRe: How do you reverse the action on a Spin control Pin
littleGreenDude16-Jan-08 5:53
littleGreenDude16-Jan-08 5:53 
GeneralRe: How do you reverse the action on a Spin control Pin
toxcct16-Jan-08 5:55
toxcct16-Jan-08 5:55 
GeneralRe: How do you reverse the action on a Spin control Pin
littleGreenDude16-Jan-08 6:07
littleGreenDude16-Jan-08 6:07 
GeneralRe: How do you reverse the action on a Spin control Pin
led mike16-Jan-08 6:07
led mike16-Jan-08 6:07 
GeneralRe: How do you reverse the action on a Spin control Pin
toxcct16-Jan-08 6:21
toxcct16-Jan-08 6:21 
GeneralRe: How do you reverse the action on a Spin control Pin
Mark Salsbery16-Jan-08 7:08
Mark Salsbery16-Jan-08 7:08 
GeneralConverting a dynamic Stl String Array in a BSTR ! Pin
CrocodileBuck16-Jan-08 3:39
CrocodileBuck16-Jan-08 3:39 
GeneralRe: Converting a dynamic Stl String Array in a BSTR ! Pin
led mike16-Jan-08 5:04
led mike16-Jan-08 5:04 
GeneralRe: Converting a dynamic Stl String Array in a BSTR ! Pin
CrocodileBuck16-Jan-08 5:58
CrocodileBuck16-Jan-08 5:58 
AnswerRe: Converting a dynamic Stl String Array in a BSTR ! Pin
Nathan Holt at EMOM16-Jan-08 6:13
Nathan Holt at EMOM16-Jan-08 6:13 
You need to convert the string to unicode, or just use unicode from the beginning. (I recommend the latter.) If arrRelease was an array or vector of wstring, then you could use something like return SysAllocString(arrRelease[k].c_str()) Also, I agree with Led Mike that STL containers like vector<string> are much more appropriate than string *

Nathan
GeneralRe: Converting a dynamic Stl String Array in a BSTR ! Pin
CrocodileBuck17-Jan-08 4:08
CrocodileBuck17-Jan-08 4:08 

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.