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

C#

 
GeneralRe: equivalent code Pin
J4amieC17-Mar-06 3:16
J4amieC17-Mar-06 3:16 
GeneralRe: equivalent code Pin
V.17-Mar-06 3:22
professionalV.17-Mar-06 3:22 
AnswerRe: equivalent code Pin
Guffa17-Mar-06 5:07
Guffa17-Mar-06 5:07 
AnswerRe: equivalent code Pin
mcljava17-Mar-06 4:34
mcljava17-Mar-06 4:34 
GeneralRe: equivalent code Pin
V.17-Mar-06 4:38
professionalV.17-Mar-06 4:38 
QuestionRotating image in C# Pin
CoolASL17-Mar-06 1:41
CoolASL17-Mar-06 1:41 
AnswerRe: Rotating image in C# Pin
JuanAlbertoMD17-Mar-06 3:41
JuanAlbertoMD17-Mar-06 3:41 
AnswerRe: Rotating image in C# Pin
Werdna17-Mar-06 5:20
Werdna17-Mar-06 5:20 
An easy way to draw rotated image is to use transformations:
Graphics g = ...;

g.RotateTransform(angle);
g.DrawImage(...)

if you want to rotate around any point, you can use matrix.
Matrix m = new Matrix();
m.RotateAt(angle, new PointF(x, y));
g.Transform = m;
g.DrawImage(...);

QuestionPath of current project. Pin
deepscyberpulse17-Mar-06 1:32
deepscyberpulse17-Mar-06 1:32 
AnswerRe: Path of current project. Pin
nidheeshkayal17-Mar-06 1:53
nidheeshkayal17-Mar-06 1:53 
AnswerRe: Path of current project. Pin
jimjo19-Mar-06 20:01
jimjo19-Mar-06 20:01 
QuestionAdd help text to custom functions in Excel Pin
jimjo17-Mar-06 1:26
jimjo17-Mar-06 1:26 
QuestionRichTextBox and SendKeys action Pin
conrado717-Mar-06 1:25
conrado717-Mar-06 1:25 
AnswerRe: RichTextBox and SendKeys action Pin
IdUnknown17-Mar-06 3:23
IdUnknown17-Mar-06 3:23 
GeneralRe: RichTextBox and SendKeys action Pin
conrado717-Mar-06 3:39
conrado717-Mar-06 3:39 
QuestionShow/Hide Quick Launch Toolbar on Button Click Pin
sherwani17-Mar-06 1:06
sherwani17-Mar-06 1:06 
QuestionHow to handle Window Context Menu events ? Pin
sherwani17-Mar-06 1:02
sherwani17-Mar-06 1:02 
AnswerRe: How to handle Window Context Menu events ? Pin
CoolASL17-Mar-06 3:41
CoolASL17-Mar-06 3:41 
GeneralRe: How to handle Window Context Menu events ? Pin
sherwani17-Mar-06 3:43
sherwani17-Mar-06 3:43 
AnswerRe: How to handle Window Context Menu events ? Pin
CoolASL17-Mar-06 3:58
CoolASL17-Mar-06 3:58 
QuestionHow to handleTwo events ? Pin
sherwani17-Mar-06 1:00
sherwani17-Mar-06 1:00 
QuestionIdentify opened ports in local machine Pin
deepthi wilson17-Mar-06 0:03
deepthi wilson17-Mar-06 0:03 
AnswerRe: Identify opened ports in local machine Pin
Jijo BP17-Mar-06 0:07
Jijo BP17-Mar-06 0:07 
AnswerRe: Identify opened ports in local machine Pin
Vasudevan Deepak Kumar17-Mar-06 0:45
Vasudevan Deepak Kumar17-Mar-06 0:45 
QuestionOpen only one child form Pin
Boipelo16-Mar-06 22:47
Boipelo16-Mar-06 22:47 

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.