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

Managed C++/CLI

 
GeneralRe: Getting Error message in debuging Pin
Mark Salsbery19-May-09 6:04
Mark Salsbery19-May-09 6:04 
GeneralRe: Getting Error message in debuging Pin
led mike19-May-09 6:37
led mike19-May-09 6:37 
QuestionDraw Rectangle onto Picture in PictureBox Pin
cherrymotion17-May-09 4:25
cherrymotion17-May-09 4:25 
AnswerRe: Draw Rectangle onto Picture in PictureBox Pin
N a v a n e e t h17-May-09 4:47
N a v a n e e t h17-May-09 4:47 
GeneralRe: Draw Rectangle onto Picture in PictureBox Pin
cherrymotion17-May-09 6:10
cherrymotion17-May-09 6:10 
GeneralRe: Draw Rectangle onto Picture in PictureBox Pin
N a v a n e e t h17-May-09 6:48
N a v a n e e t h17-May-09 6:48 
QuestionReference User32.lib Pin
thenutz7215-May-09 14:16
thenutz7215-May-09 14:16 
AnswerRe: Reference User32.lib Pin
Mark Salsbery15-May-09 20:20
Mark Salsbery15-May-09 20:20 
thenutz72 wrote:
Why did I have to that? I kept telling myself the dll was already referenced and I had the "windows.h" #include going on.


windows.h has nothing to do with the linker. It's the import library
you were missing that the linker needed.

thenutz72 wrote:
The code is in a normal CLR project, .NET Form button_click (so it must be using User32.dll already, right?).


No. The .NET framework may use user32.dll internally but that has nothing to do with your project.

thenutz72 wrote:
It may have worked but did I do it 'right'?


Not necessarily. If you're using native code from a managed class' code,
the you would use platform invoke: Using Explicit PInvoke in C++ (DllImport Attribute)[^]


You shouldn't be mixing paths to different SDKs. If you're using the
Visual Studio IDE for your project, then use its directories settings
to configure paths to the ONE SDK you want to use. Then you don't need
paths in all your project configurations unless you need to override something.


Learning C++/CLI is a pretty big undertaking for a beginner in C++...
Are you sure you don't want to get familiar with the C++ language before adding
the complexity of the managed world? All your questions are fundamentals you should know Smile | :)

Mark Salsbery
Microsoft MVP - Visual C++

Java | [Coffee]

GeneralRe: Reference User32.lib Pin
thenutz7216-May-09 9:12
thenutz7216-May-09 9:12 
QuestionHow to get machine certificate and user license. Pin
deadlyabbas12-May-09 21:00
deadlyabbas12-May-09 21:00 
AnswerRe: How to get machine certificate and user license. Pin
Randor 14-May-09 15:06
professional Randor 14-May-09 15:06 
QuestionAbout Multiple Windows Forms Pin
savitri11-May-09 20:47
savitri11-May-09 20:47 
AnswerRe: About Multiple Windows Forms Pin
N a v a n e e t h12-May-09 22:24
N a v a n e e t h12-May-09 22:24 
GeneralRe: About Multiple Windows Forms Pin
savitri13-May-09 1:22
savitri13-May-09 1:22 
GeneralRe: About Multiple Windows Forms Pin
N a v a n e e t h13-May-09 2:20
N a v a n e e t h13-May-09 2:20 
QuestionRe: About Multiple Windows Forms Pin
savitri13-May-09 19:41
savitri13-May-09 19:41 
QuestionRe: About Multiple Windows Forms Pin
Mark Salsbery14-May-09 6:58
Mark Salsbery14-May-09 6:58 
AnswerRe: About Multiple Windows Forms Pin
N a v a n e e t h14-May-09 16:02
N a v a n e e t h14-May-09 16:02 
GeneralRe: About Multiple Windows Forms Pin
savitri14-May-09 19:20
savitri14-May-09 19:20 
GeneralRe: About Multiple Windows Forms Pin
N a v a n e e t h14-May-09 23:52
N a v a n e e t h14-May-09 23:52 
QuestionRe: About Multiple Windows Forms Pin
savitri15-May-09 21:20
savitri15-May-09 21:20 
QuestionCreating Windows Service VC++ 6.0 Pin
iamJayPatil11-May-09 18:52
iamJayPatil11-May-09 18:52 
QuestionDetermining if an inputted file name exists? Pin
TabascoSauce9-May-09 12:50
TabascoSauce9-May-09 12:50 
AnswerRe: Determining if an inputted file name exists? Pin
dybs9-May-09 13:04
dybs9-May-09 13:04 
GeneralRe: Determining if an inputted file name exists? Pin
TabascoSauce9-May-09 13:12
TabascoSauce9-May-09 13:12 

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.