Click here to Skip to main content
16,009,318 members
Home / Discussions / Managed C++/CLI
   

Managed C++/CLI

 
AnswerRe: Fax Routing, Please Help Pin
Milton Karimbekallil15-Aug-06 18:22
Milton Karimbekallil15-Aug-06 18:22 
QuestionHow can i use dll function in c++.net ? please help . Pin
nattafy15-Aug-06 1:39
nattafy15-Aug-06 1:39 
AnswerRe: How can i use dll function in c++.net ? please help . Pin
guestcat17-Aug-06 0:44
guestcat17-Aug-06 0:44 
QuestionHow to stop USB Mass Storage Device window popping out Pin
mmhu11-Aug-06 4:35
mmhu11-Aug-06 4:35 
AnswerRe: How to stop USB Mass Storage Device window popping out Pin
Christian Graus14-Aug-06 18:26
protectorChristian Graus14-Aug-06 18:26 
GeneralRe: How to stop USB Mass Storage Device window popping out Pin
mmhu15-Aug-06 11:07
mmhu15-Aug-06 11:07 
QuestionHow to use WndProc or WindowsProc function Pin
mmhu9-Aug-06 6:45
mmhu9-Aug-06 6:45 
AnswerRe: How to use WndProc or WindowsProc function Pin
Milton Karimbekallil10-Aug-06 22:57
Milton Karimbekallil10-Aug-06 22:57 
GeneralRe: How to use WndProc or WindowsProc function Pin
mmhu11-Aug-06 4:24
mmhu11-Aug-06 4:24 
GeneralRe: How to use WndProc or WindowsProc function Pin
Milton Karimbekallil13-Aug-06 20:47
Milton Karimbekallil13-Aug-06 20:47 
GeneralRe: How to use WndProc or WindowsProc function Pin
mmhu14-Aug-06 2:17
mmhu14-Aug-06 2:17 
GeneralRe: How to use WndProc or WindowsProc function Pin
Milton Karimbekallil15-Aug-06 18:00
Milton Karimbekallil15-Aug-06 18:00 
GeneralRe: How to use WndProc or WindowsProc function Pin
mmhu17-Aug-06 11:05
mmhu17-Aug-06 11:05 
Question.NET slow graphics Pin
9ine9-Aug-06 1:03
9ine9-Aug-06 1:03 
AnswerRe: .NET slow graphics Pin
led mike9-Aug-06 6:00
led mike9-Aug-06 6:00 
GeneralRe: .NET slow graphics [modified] Pin
9ine10-Aug-06 1:21
9ine10-Aug-06 1:21 
GeneralRe: .NET slow graphics Pin
led mike10-Aug-06 5:03
led mike10-Aug-06 5:03 
GeneralRe: .NET slow graphics Pin
9ine10-Aug-06 6:15
9ine10-Aug-06 6:15 
the float data needs to be drawn once if there is resize event in the form. the data is drawn to memg graphics object. from which it is drawn to a form if it is obscured and then released by another window.
if the form itself resized the data plot needs to be redrawn to fit changed dimensions of the form.

this is double buffer. the float data is put into memg object wich then is painted to a form, so we dont see flick due to clearing the form and ploting data directly to a form.

Graphics *g = CreateGraphics();
creates graphics objects of the form in OnPaint event and the memg object is painted into it.

paint() and resize() is just stubs for OnPaint() and OnResize() events

9ine

GeneralRe: .NET slow graphics Pin
led mike10-Aug-06 6:30
led mike10-Aug-06 6:30 
GeneralRe: .NET slow graphics Pin
9ine10-Aug-06 23:18
9ine10-Aug-06 23:18 
GeneralRe: .NET slow graphics Pin
led mike15-Aug-06 7:40
led mike15-Aug-06 7:40 
AnswerRe: .NET slow graphics Pin
Joe Woodbury14-Aug-06 17:22
professionalJoe Woodbury14-Aug-06 17:22 
GeneralRe: .NET slow graphics Pin
9ine14-Aug-06 23:51
9ine14-Aug-06 23:51 
GeneralRe: .NET slow graphics Pin
9ine14-Aug-06 23:52
9ine14-Aug-06 23:52 
GeneralRe: .NET slow graphics Pin
Christian Graus15-Aug-06 0:21
protectorChristian Graus15-Aug-06 0:21 

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.