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

Managed C++/CLI

 
Questionconneting to sql server 2000 or mysql 5.0 through c++ on windows platform Pin
248912816-Aug-06 1:21
248912816-Aug-06 1:21 
AnswerRe: conneting to sql server 2000 or mysql 5.0 through c++ on windows platform Pin
Christian Graus16-Aug-06 2:24
protectorChristian Graus16-Aug-06 2:24 
QuestionHow to send double value as 8 uint8 values?? Pin
cahit2316-Aug-06 1:17
cahit2316-Aug-06 1:17 
AnswerRe: How to send double value as 8 uint8 values?? Pin
Christian Graus16-Aug-06 2:25
protectorChristian Graus16-Aug-06 2:25 
GeneralRe: How to send double value as 8 uint8 values?? Pin
cahit2316-Aug-06 2:51
cahit2316-Aug-06 2:51 
QuestionGraphics::FromImage Pin
yiwpyos16-Aug-06 1:14
yiwpyos16-Aug-06 1:14 
AnswerRe: Graphics::FromImage Pin
Christian Graus16-Aug-06 2:28
protectorChristian Graus16-Aug-06 2:28 
GeneralRe: Graphics::FromImage Pin
yiwpyos16-Aug-06 22:39
yiwpyos16-Aug-06 22:39 
Hi Christian,

Thanks for your reply. The truth is that my drawing function is a lot more complicated than the example i showed in my message. I am going through three "for" loops to display 3D dispersions on a map.

I chose to use a pictureBox because i thought it would be easier to handle the map displaying (zooming in/out, panning etc) by specifying it as the pictureBox->image, and then drawing the rest on top and following the same zooming, panning etc. Not sure it is the best way to go about it, just chose it.

To cut a long story short, apart from removing the flickering from my drawing i wanted to use double buffering to also improve the speed of my displays because these are displayed in real time (would like to anyway Smile | :) every 10 seconds). I did manage to implement the GDI+ double buffering i was straggling with (amazingly enough i was drawing in "bmpBuf" and was displaying "bmpBufr" >:E). However, although the flickering went away the displaying speed did not improve enough.

Do you think the .NET way of handling double buffering would do better (i read that the .NET way is more optimized http://www.windowsforms.net/articles/windowsformspainting.aspx). Any help how do make this work? This is what i tried

pictureBoxMap->SetStyle(ControlStyles::UserPaint, true);
pictureBoxMap->SetStyle(ControlStyles::AllPaintingInWmPaint, true);
pictureBoxMap->SetStyle(ControlStyles::DoubleBuffer, true);
pictureBoxMap->UpdateStyles();

Or any other suggestion how to improve the displaying speed would be much appreciated.

Thanks

george


george

GeneralRe: Graphics::FromImage Pin
Christian Graus16-Aug-06 22:42
protectorChristian Graus16-Aug-06 22:42 
QuestionReceiving A Byte Array from dll? [modified] Pin
majidbhutta15-Aug-06 23:52
majidbhutta15-Aug-06 23:52 
Questionpixil detection? Pin
Droze15-Aug-06 6:36
Droze15-Aug-06 6:36 
AnswerRe: pixil detection? Pin
Jun Du17-Aug-06 5:15
Jun Du17-Aug-06 5:15 
GeneralRe: pixil detection? Pin
Droze17-Aug-06 10:56
Droze17-Aug-06 10:56 
QuestionFax Routing, Please Help Pin
a_kiani15-Aug-06 2:16
a_kiani15-Aug-06 2:16 
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 

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.