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

Managed C++/CLI

 
AnswerRe: test Pin
David.Moore8718-Dec-13 5:25
David.Moore8718-Dec-13 5:25 
AnswerRe: test Pin
Stefan_Lang24-Feb-14 0:27
Stefan_Lang24-Feb-14 0:27 
QuestionI met a hard problem in qt! Pin
wuxuangle30-Oct-13 3:09
wuxuangle30-Oct-13 3:09 
AnswerRe: I met a hard problem in qt! Pin
John Schroedl30-Oct-13 8:36
professionalJohn Schroedl30-Oct-13 8:36 
GeneralRe: I met a hard problem in qt! Pin
wuxuangle31-Oct-13 3:10
wuxuangle31-Oct-13 3:10 
GeneralRe: I met a hard problem in qt! Pin
rekolnet25-Jul-15 10:45
rekolnet25-Jul-15 10:45 
QuestionLNK2019: unresolved external Pin
af0000123-Oct-13 20:44
af0000123-Oct-13 20:44 
AnswerRe: LNK2019: unresolved external Pin
Richard MacCutchan23-Oct-13 21:38
mveRichard MacCutchan23-Oct-13 21:38 
GeneralRe: LNK2019: unresolved external Pin
af0000124-Oct-13 6:35
af0000124-Oct-13 6:35 
AnswerRe: LNK2019: unresolved external Pin
Freak3023-Oct-13 23:07
Freak3023-Oct-13 23:07 
GeneralRe: LNK2019: unresolved external Pin
Richard MacCutchan23-Oct-13 23:32
mveRichard MacCutchan23-Oct-13 23:32 
GeneralRe: LNK2019: unresolved external Pin
af0000124-Oct-13 6:34
af0000124-Oct-13 6:34 
GeneralRe: LNK2019: unresolved external Pin
af0000124-Oct-13 6:33
af0000124-Oct-13 6:33 
AnswerRe: LNK2019: unresolved external Pin
WuRunZhe22-Nov-13 15:23
WuRunZhe22-Nov-13 15:23 
GeneralRe: LNK2019: unresolved external Pin
af0000123-Nov-13 2:35
af0000123-Nov-13 2:35 
QuestionAnyone can help me ? Pin
gecko2k121-Oct-13 18:34
gecko2k121-Oct-13 18:34 
AnswerRe: Anyone can help me ? Pin
Marco Bertschi21-Oct-13 22:15
protectorMarco Bertschi21-Oct-13 22:15 
First of all, please remember the debugging 101:

1. Attach a debugger and try to run it then.
2. The debugger will stop at the Null Pointer assignement, and you can fix the error.

About Null pointer assignments:
Null pointer assignments occur when you try to access a pointer which's memory was deleted or not initialized (via malloc or new) and are a strong hint towards dangling and insecure pointers.
People becoming wiser in order to notice the stupid things they did back in the young days. This doesn't mean that they really stop doing those things. Wise people still do stupid things, only on purpose.

Questionhow can I draw real-time curve in coordinate system? Pin
wuxuangle18-Oct-13 21:41
wuxuangle18-Oct-13 21:41 
AnswerRe: how can I draw real-time curve in coordinate system? Pin
Richard MacCutchan19-Oct-13 2:38
mveRichard MacCutchan19-Oct-13 2:38 
GeneralRe: how can I draw real-time curve in coordinate system? Pin
wuxuangle22-Oct-13 3:47
wuxuangle22-Oct-13 3:47 
GeneralRe: how can I draw real-time curve in coordinate system? Pin
Richard MacCutchan22-Oct-13 5:58
mveRichard MacCutchan22-Oct-13 5:58 
GeneralRe: how can I draw real-time curve in coordinate system? Pin
wuxuangle22-Oct-13 15:40
wuxuangle22-Oct-13 15:40 
GeneralRe: how can I draw real-time curve in coordinate system? Pin
Richard MacCutchan22-Oct-13 21:02
mveRichard MacCutchan22-Oct-13 21:02 
GeneralRe: how can I draw real-time curve in coordinate system? Pin
wuxuangle22-Oct-13 22:47
wuxuangle22-Oct-13 22:47 
AnswerRe: how can I draw real-time curve in coordinate system? Pin
Marco Bertschi21-Oct-13 22:16
protectorMarco Bertschi21-Oct-13 22:16 

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.