Click here to Skip to main content
16,004,806 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
GeneralDeployment problem (Vc++ Runtime Library Error!)I'm Using VC .Net Pin
HenrikO23-Apr-02 4:48
HenrikO23-Apr-02 4:48 
GeneralRe: Deployment problem (Vc++ Runtime Library Error!) Pin
l a u r e n23-Apr-02 4:58
l a u r e n23-Apr-02 4:58 
GeneralRe: Deployment problem (Vc++ Runtime Library Error!) Pin
HenrikO23-Apr-02 5:28
HenrikO23-Apr-02 5:28 
GeneralRe: Deployment problem (Vc++ Runtime Library Error!) Pin
Mike Zinni23-Apr-02 5:04
Mike Zinni23-Apr-02 5:04 
GeneralRe: Deployment problem (Vc++ Runtime Library Error!) Pin
act_x23-Apr-02 5:23
act_x23-Apr-02 5:23 
GeneralRe: Deployment problem (Vc++ Runtime Library Error!) Pin
Michael P Butler23-Apr-02 5:39
Michael P Butler23-Apr-02 5:39 
GeneralBSTR (char * ) and MSXML basic question... Pin
Braulio Dez23-Apr-02 4:16
Braulio Dez23-Apr-02 4:16 
GeneralRe: BSTR (char * ) and MSXML basic question... Pin
Le centriste23-Apr-02 6:02
Le centriste23-Apr-02 6:02 
What is the type of strCostSelNode?? If it is not BSTR, you must convert it. Typecasting is not enough, in the case of a BSTR. Ex:

<br />
USES_CONVERSION;<br />
wchar_t *strCostSelNodeW;<br />
char *strCostSelNodeA;<br />
_TCHAR *strCostSelNodeT;<br />
<br />
BSTR bsCostSelNode1 = W2BSTR(strCostSelNodeW);<br />
BSTR bsCostSelNode2 = A2BSTR(strCostSelNodeA);<br />
BSTR bsCostSelNode3 = T2BSTR(strCostSelNodeT);<br />
<br />
MSXML2::IXMLDOMNodePtr  pCostSelNode   = _pXMLClonedDoc->selectSingleNode(bsCostSelNode1); // or 2 or 3<br />
<br />
::SysFreeString(bsCostSelNode1);<br />
::SysFreeString(bsCostSelNode2);<br />
::SysFreeString(bsCostSelNode3);<br />


Tell me if you need more info.

Michel

It is a lovely language, but it takes a very long time to say anything in it, because we do not say anything in it, unless it is worth taking a very long time to say, and to listen to.

- TreeBeard
GeneralRe: BSTR (char * ) and MSXML basic question... Pin
Braulio Dez23-Apr-02 20:53
Braulio Dez23-Apr-02 20:53 
GeneralCFontDialog Pin
Tzoockee23-Apr-02 4:15
Tzoockee23-Apr-02 4:15 
GeneralRe: CFontDialog Pin
Niklas L23-Apr-02 5:00
Niklas L23-Apr-02 5:00 
GeneralRe: CFontDialog Pin
Tzoockee23-Apr-02 7:17
Tzoockee23-Apr-02 7:17 
GeneralRe: CFontDialog Pin
Tzoockee23-Apr-02 8:37
Tzoockee23-Apr-02 8:37 
GeneralRe: CFontDialog Pin
Niklas L23-Apr-02 23:54
Niklas L23-Apr-02 23:54 
GeneralLocation of cursor resources Pin
Tom Archer23-Apr-02 3:36
Tom Archer23-Apr-02 3:36 
GeneralRe: Location of cursor resources Pin
Joaquín M López Muñoz23-Apr-02 3:42
Joaquín M López Muñoz23-Apr-02 3:42 
GeneralRe: Location of cursor resources Pin
moliate23-Apr-02 18:21
moliate23-Apr-02 18:21 
GeneralRe: Location of cursor resources Pin
Tom Archer23-Apr-02 22:45
Tom Archer23-Apr-02 22:45 
GeneralRe: Location of cursor resources Pin
moliate24-Apr-02 2:37
moliate24-Apr-02 2:37 
GeneralRe: Location of cursor resources Pin
Tom Archer24-Apr-02 2:44
Tom Archer24-Apr-02 2:44 
Generalmonochrome bitmap Pin
Niklas L23-Apr-02 3:31
Niklas L23-Apr-02 3:31 
GeneralRe: monochrome bitmap Pin
l a u r e n23-Apr-02 5:06
l a u r e n23-Apr-02 5:06 
GeneralRe: monochrome bitmap Pin
Niklas L23-Apr-02 22:35
Niklas L23-Apr-02 22:35 
GeneralRe: monochrome bitmap Pin
Mike Nordell23-Apr-02 9:54
Mike Nordell23-Apr-02 9:54 
GeneralRe: monochrome bitmap Pin
Niklas L23-Apr-02 22:37
Niklas L23-Apr-02 22:37 

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.