Click here to Skip to main content
15,886,791 members
Home / Discussions / C#
   

C#

 
QuestionHow to update Outlook appointments Pin
NewToAspDotNet28-Jan-08 6:59
NewToAspDotNet28-Jan-08 6:59 
GeneralGDI+ Performance Pin
#realJSOP28-Jan-08 6:30
mve#realJSOP28-Jan-08 6:30 
GeneralRe: GDI+ Performance Pin
Judah Gabriel Himango28-Jan-08 7:02
sponsorJudah Gabriel Himango28-Jan-08 7:02 
GeneralRe: GDI+ Performance Pin
Ennis Ray Lynch, Jr.28-Jan-08 8:07
Ennis Ray Lynch, Jr.28-Jan-08 8:07 
GeneralRe: GDI+ Performance Pin
#realJSOP28-Jan-08 8:30
mve#realJSOP28-Jan-08 8:30 
GeneralRe: GDI+ Performance Pin
Mike Hankey28-Jan-08 11:13
mveMike Hankey28-Jan-08 11:13 
GeneralRe: GDI+ Performance Pin
#realJSOP28-Jan-08 13:22
mve#realJSOP28-Jan-08 13:22 
GeneralRe: GDI+ Performance Pin
Mike Hankey28-Jan-08 13:45
mveMike Hankey28-Jan-08 13:45 
Are you using the standard way using OnPaint and Invalidating? If so you might bypass that and do the draw directly and bypass the OnPaint.

private void Draw()
{
Graphics g = ?control?.CreateGraphics();
g.DrawImage(image, rct);
g.Dispose();
}

This way you don't depend on the system to draw it when it gets around to it! May sound a little strange but it does help!

Mike

Life is not measured by the number of breaths we take, but by the
moments that take our breath away. "George Carlin


Semper Fi
http://www.hq4thmarinescomm.com[^]



GeneralDeleting data from Excel file in C# Pin
meeram39528-Jan-08 5:56
meeram39528-Jan-08 5:56 
GeneralRe: Deleting data from Excel file in C# Pin
led mike28-Jan-08 6:22
led mike28-Jan-08 6:22 
GeneralQuestion on using the & sign and string Pin
avengerzx928-Jan-08 5:37
avengerzx928-Jan-08 5:37 
GeneralRe: Question on using the & sign and string Pin
avengerzx928-Jan-08 5:42
avengerzx928-Jan-08 5:42 
GeneralRe: Question on using the & sign and string Pin
Rob Philpott28-Jan-08 5:57
Rob Philpott28-Jan-08 5:57 
GeneralRe: Question on using the & sign and string Pin
PIEBALDconsult28-Jan-08 7:34
mvePIEBALDconsult28-Jan-08 7:34 
Generalproperties sort order Pin
netJP12L28-Jan-08 5:16
netJP12L28-Jan-08 5:16 
GeneralRe: properties sort order Pin
LongRange.Shooter28-Jan-08 8:31
LongRange.Shooter28-Jan-08 8:31 
GeneralRe: properties sort order Pin
visualhint30-Jan-08 5:37
visualhint30-Jan-08 5:37 
GeneralWorker thread problem Pin
Rick van Woudenberg28-Jan-08 3:48
Rick van Woudenberg28-Jan-08 3:48 
GeneralRe: Worker thread problem Pin
Mustafa Ismail Mustafa28-Jan-08 3:57
Mustafa Ismail Mustafa28-Jan-08 3:57 
GeneralRe: Worker thread problem Pin
leppie28-Jan-08 4:10
leppie28-Jan-08 4:10 
GeneralRe: Worker thread problem Pin
Mustafa Ismail Mustafa28-Jan-08 8:08
Mustafa Ismail Mustafa28-Jan-08 8:08 
GeneralRe: Worker thread problem Pin
Pete O'Hanlon28-Jan-08 9:33
mvePete O'Hanlon28-Jan-08 9:33 
GeneralRe: Worker thread problem Pin
leppie28-Jan-08 4:01
leppie28-Jan-08 4:01 
Generalcreateprocess. Stop command prompt being shown Pin
Ylno28-Jan-08 3:36
Ylno28-Jan-08 3:36 
GeneralRe: createprocess. Stop command prompt being shown Pin
leppie28-Jan-08 3:56
leppie28-Jan-08 3:56 

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.