Click here to Skip to main content
15,887,214 members
Home / Discussions / C#
   

C#

 
GeneralRe: how to speed up GDI+ without using pointer Pin
fadee26-Sep-03 20:00
fadee26-Sep-03 20:00 
GeneralAding a dynamic web reference at runtime Pin
Obi725-Sep-03 22:10
Obi725-Sep-03 22:10 
GeneralRe: Ading a dynamic web reference at runtime Pin
Kannan Kalyanaraman26-Sep-03 0:57
Kannan Kalyanaraman26-Sep-03 0:57 
GeneralRe: Ading a dynamic web reference at runtime Pin
Obi726-Sep-03 1:32
Obi726-Sep-03 1:32 
GeneralSetup creation problem Pin
..Hubert..25-Sep-03 22:03
..Hubert..25-Sep-03 22:03 
GeneralQuestion about sockets. Pin
jtmtv1825-Sep-03 20:08
jtmtv1825-Sep-03 20:08 
QuestionHow to blit a System.Drawing.Image into DirectDraw.Surface ? Pin
ralfoide25-Sep-03 19:06
ralfoide25-Sep-03 19:06 
AnswerRe: How to blit a System.Drawing.Image into DirectDraw.Surface ? Pin
Jeremy Kimball25-Sep-03 20:06
Jeremy Kimball25-Sep-03 20:06 
Wouldn't something like this work?

(assuming surface is 'mySurface' and Image is 'myImage')

System.IntPtr pDC = mySurface.GetDC();
Graphics g = Graphics.FromHdc( pDC );
g.DrawImage( myImage, ..... );
g.ReleaseHdc( pDC );

The key is to remember to release the Device Context, or else you'll leak resources.

Let me know if this works (not in front of Studio at the moment)

Jeremy Kimball

GeneralRe: How to blit a System.Drawing.Image into DirectDraw.Surface ? Pin
ralfoide26-Sep-03 8:38
ralfoide26-Sep-03 8:38 
GeneralRichTextBox Auto Scroll Down Pin
zecodela25-Sep-03 18:27
zecodela25-Sep-03 18:27 
GeneralRe: RichTextBox Auto Scroll Down Pin
jtmtv1825-Sep-03 20:00
jtmtv1825-Sep-03 20:00 
GeneralRe: RichTextBox Auto Scroll Down Pin
J. Dunlap25-Sep-03 20:15
J. Dunlap25-Sep-03 20:15 
GeneralRe: RichTextBox Auto Scroll Down Pin
zecodela25-Sep-03 20:38
zecodela25-Sep-03 20:38 
GeneralDesign question... Pin
sharkfish25-Sep-03 14:13
sharkfish25-Sep-03 14:13 
GeneralRe: Design question... Pin
sharkfish25-Sep-03 15:34
sharkfish25-Sep-03 15:34 
GeneralMaking a file readOnly Pin
kman25-Sep-03 11:36
kman25-Sep-03 11:36 
GeneralRe: Making a file readOnly Pin
Wjousts25-Sep-03 11:46
Wjousts25-Sep-03 11:46 
GeneralRe: Making a file readOnly Pin
kman25-Sep-03 11:50
kman25-Sep-03 11:50 
GeneralRe: Making a file readOnly Pin
Wjousts25-Sep-03 12:00
Wjousts25-Sep-03 12:00 
GeneralRe: Making a file readOnly Pin
kman25-Sep-03 12:17
kman25-Sep-03 12:17 
QuestionToolbar button circumvents textbox validation? Pin
Wjousts25-Sep-03 11:29
Wjousts25-Sep-03 11:29 
AnswerRe: Toolbar button circumvents textbox validation? Pin
ankita patel25-Sep-03 12:24
ankita patel25-Sep-03 12:24 
GeneralRe: Toolbar button circumvents textbox validation? Pin
Wjousts25-Sep-03 13:05
Wjousts25-Sep-03 13:05 
AnswerRe: Toolbar button circumvents textbox validation? Pin
J. Dunlap25-Sep-03 13:12
J. Dunlap25-Sep-03 13:12 
GeneralRe: Toolbar button circumvents textbox validation? Pin
Wjousts25-Sep-03 13:34
Wjousts25-Sep-03 13:34 

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.