Click here to Skip to main content
15,916,091 members
Home / Discussions / Managed C++/CLI
   

Managed C++/CLI

 
QuestionHow to convert from .DOC to .PDF, please help me .......... Pin
Atif Bashir16-Aug-03 1:41
Atif Bashir16-Aug-03 1:41 
GeneralThreads with Form updates Pin
MoonWa13-Aug-03 23:44
MoonWa13-Aug-03 23:44 
GeneralRe: Threads with Form updates Pin
edx_fa22-Aug-03 1:12
edx_fa22-Aug-03 1:12 
GeneralDisplaying an image Pin
Tom Archer13-Aug-03 14:45
Tom Archer13-Aug-03 14:45 
GeneralRe: Displaying an image Pin
igor196025-Aug-03 7:47
igor196025-Aug-03 7:47 
GeneralRe: Displaying an image Pin
Tom Archer25-Aug-03 7:51
Tom Archer25-Aug-03 7:51 
Generalwchar array or String to unsigned char array Pin
Gomac10-Aug-03 8:31
Gomac10-Aug-03 8:31 
GeneralRe: wchar array or String to unsigned char array Pin
edx_fa22-Aug-03 1:01
edx_fa22-Aug-03 1:01 
Sample Code taken from the MSDN:

<br />
// mcppfaq_string_to_wchart.cpp<br />
// compile with: /clr<br />
#include < stdio.h ><br />
#include < stdlib.h ><br />
#include < vcclr.h ><br />
#using < mscorlib.dll ><br />
using namespace System;<br />
<br />
int main()<br />
{<br />
   String __gc* str = S"Hello";<br />
<br />
   // Conversion to wchar_t* :<br />
   const wchar_t __pin* p = PtrToStringChars(str);<br />
   printf("%S\n", p);<br />
<br />
   // Conversion to char* :<br />
   // Convert wchar_t* to char* using a conversion functionssuch as: <br />
   // WideCharToMultiByte()<br />
   // wcstombs()<br />
   char* ch = (char *)malloc((str -> Length + 1) * 2);<br />
   wcstombs(ch, p, (str -> Length + 1) * 2);<br />
   printf("%s\n", ch);<br />
}<br />

GeneralRaw Image to Bitmap object Pin
bwells10-Aug-03 4:23
bwells10-Aug-03 4:23 
GeneralRe: Raw Image to Bitmap object Pin
Nick Parker10-Aug-03 4:53
protectorNick Parker10-Aug-03 4:53 
GeneralRe: Raw Image to Bitmap object Pin
bwells11-Aug-03 14:54
bwells11-Aug-03 14:54 
QuestionDebugging -- looking at managed memory? Pin
Jeremy Osner6-Aug-03 4:40
Jeremy Osner6-Aug-03 4:40 
GeneralProcess.StartTime Pin
kurnaziso6-Aug-03 1:52
kurnaziso6-Aug-03 1:52 
General:: Prototyping a Derived Class :: Pin
Anonymous3-Aug-03 18:21
Anonymous3-Aug-03 18:21 
GeneralRe: :: Prototyping a Derived Class :: Pin
leppie4-Aug-03 7:09
leppie4-Aug-03 7:09 
GeneralRe: :: Prototyping a Derived Class :: Pin
Anonymous4-Aug-03 7:33
Anonymous4-Aug-03 7:33 
GeneralRe: :: Prototyping a Derived Class :: Pin
Anonymous4-Aug-03 7:48
Anonymous4-Aug-03 7:48 
GeneralRe: :: Prototyping a Derived Class :: Pin
Jörgen Sigvardsson20-Aug-03 11:39
Jörgen Sigvardsson20-Aug-03 11:39 
Generalwin98 applications with C++.NET Pin
nikoladsp2-Aug-03 19:15
nikoladsp2-Aug-03 19:15 
GeneralRe: win98 applications with C++.NET Pin
J. Dunlap2-Aug-03 19:19
J. Dunlap2-Aug-03 19:19 
GeneralProblems with splitters in Windows Forms Pin
RafMar1-Aug-03 4:44
RafMar1-Aug-03 4:44 
GeneralSkinning library for WinForms Pin
Slaru31-Jul-03 18:00
Slaru31-Jul-03 18:00 
GeneralRe: Skinning library for WinForms Pin
J. Dunlap31-Jul-03 20:53
J. Dunlap31-Jul-03 20:53 
GeneralPassing GDI+ Image to a managed C++ function Pin
Jonathan de Halleux31-Jul-03 5:38
Jonathan de Halleux31-Jul-03 5:38 
GeneralBeginner question Pin
Jose Vicente30-Jul-03 21:47
Jose Vicente30-Jul-03 21:47 

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.