Click here to Skip to main content
15,923,689 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
GeneralRe: Question about Dialog Pin
Christian Graus9-Aug-05 17:27
protectorChristian Graus9-Aug-05 17:27 
GeneralRe: Question about Dialog Pin
Ravi Bhavnani9-Aug-05 17:52
professionalRavi Bhavnani9-Aug-05 17:52 
Generalsystemroot Pin
namespaceuser9-Aug-05 17:11
namespaceuser9-Aug-05 17:11 
GeneralRe: systemroot Pin
Ravi Bhavnani9-Aug-05 17:56
professionalRavi Bhavnani9-Aug-05 17:56 
GeneralRe: systemroot Pin
ThatsAlok9-Aug-05 21:00
ThatsAlok9-Aug-05 21:00 
GeneralRe: systemroot Pin
David Crow10-Aug-05 4:07
David Crow10-Aug-05 4:07 
General_variant Pin
LCI9-Aug-05 11:20
LCI9-Aug-05 11:20 
GeneralRe: _variant Pin
JonEngle9-Aug-05 12:19
JonEngle9-Aug-05 12:19 
You can use _bstr_t:

varString=_bstr_t("c:\\myfiles\\")+_bstr_t(tag)+_bstr_t("s.xml");

or you can create the string using sprintf:

char bigBuffer[1000];
sprintf(bigBuffer,"C:\\Myfiles\\%s.xml",tag);

varString=_bstr_t(bigBuffer);

Hope that helps.
GeneralAssertion failed Pin
valerie999-Aug-05 8:37
valerie999-Aug-05 8:37 
GeneralRe: Assertion failed Pin
Jose Lamas Rios9-Aug-05 9:15
Jose Lamas Rios9-Aug-05 9:15 
GeneralRe: Assertion failed Pin
valerie999-Aug-05 9:34
valerie999-Aug-05 9:34 
GeneralRe: Assertion failed Pin
Jose Lamas Rios9-Aug-05 9:41
Jose Lamas Rios9-Aug-05 9:41 
GeneralRe: Assertion failed Pin
valerie999-Aug-05 9:44
valerie999-Aug-05 9:44 
GeneralRe: Assertion failed Pin
Maximilien9-Aug-05 9:42
Maximilien9-Aug-05 9:42 
GeneralRe: Assertion failed Pin
John R. Shaw9-Aug-05 10:25
John R. Shaw9-Aug-05 10:25 
GeneralRe: Assertion failed Pin
valerie999-Aug-05 10:31
valerie999-Aug-05 10:31 
GeneralRe: Assertion failed Pin
JonEngle9-Aug-05 12:24
JonEngle9-Aug-05 12:24 
GeneralRe: Assertion failed Pin
Tim Smith9-Aug-05 13:03
Tim Smith9-Aug-05 13:03 
GeneralCompiling 64-bit executable(VS .NET 2003). Pin
oleg639-Aug-05 8:30
professionaloleg639-Aug-05 8:30 
GeneralLoad bitmap from a file Pin
mpastchenko9-Aug-05 8:14
mpastchenko9-Aug-05 8:14 
GeneralRe: Load bitmap from a file Pin
David Crow9-Aug-05 8:25
David Crow9-Aug-05 8:25 
GeneralRe: Load bitmap from a file Pin
mpastchenko9-Aug-05 11:53
mpastchenko9-Aug-05 11:53 
GeneralRe: Load bitmap from a file Pin
David Crow10-Aug-05 2:44
David Crow10-Aug-05 2:44 
GeneralRe: Load bitmap from a file Pin
Jose Lamas Rios9-Aug-05 9:36
Jose Lamas Rios9-Aug-05 9:36 
GeneralRe: Load bitmap from a file Pin
mpastchenko9-Aug-05 12:09
mpastchenko9-Aug-05 12:09 

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.