Click here to Skip to main content
15,914,452 members
Home / Discussions / C#
   

C#

 
Questioninvalid shortcut keys Pin
earlgraham12-Jun-07 11:40
earlgraham12-Jun-07 11:40 
AnswerRe: invalid shortcut keys Pin
MatrixCoder12-Jun-07 13:07
MatrixCoder12-Jun-07 13:07 
Questionexception error caused by reading text file Pin
Latheesan12-Jun-07 9:59
Latheesan12-Jun-07 9:59 
AnswerRe: exception error caused by reading text file Pin
turbochimp12-Jun-07 10:34
turbochimp12-Jun-07 10:34 
QuestionOffice Automation Pin
PHDENG8112-Jun-07 8:55
PHDENG8112-Jun-07 8:55 
QuestionWhere is FolderNameEditor Pin
Rome Singh12-Jun-07 8:35
Rome Singh12-Jun-07 8:35 
AnswerRe: Where is FolderNameEditor Pin
JoeSharp12-Jun-07 19:37
JoeSharp12-Jun-07 19:37 
GeneralRe: Where is FolderNameEditor Pin
Rome Singh13-Jun-07 4:58
Rome Singh13-Jun-07 4:58 
QuestionHow can I write text to a picturebox? Pin
Andrew Stampor12-Jun-07 7:49
Andrew Stampor12-Jun-07 7:49 
AnswerRe: How can I write text to a picturebox? Pin
Not Active12-Jun-07 7:58
mentorNot Active12-Jun-07 7:58 
GeneralRe: How can I write text to a picturebox? Pin
Giorgi Dalakishvili12-Jun-07 8:03
mentorGiorgi Dalakishvili12-Jun-07 8:03 
GeneralRe: How can I write text to a picturebox? Pin
Not Active12-Jun-07 8:21
mentorNot Active12-Jun-07 8:21 
GeneralRe: How can I write text to a picturebox? Pin
Andrew Stampor12-Jun-07 8:29
Andrew Stampor12-Jun-07 8:29 
GeneralRe: How can I write text to a picturebox? Pin
Not Active12-Jun-07 8:58
mentorNot Active12-Jun-07 8:58 
GeneralRe: How can I write text to a picturebox? Pin
Andrew Stampor12-Jun-07 9:23
Andrew Stampor12-Jun-07 9:23 
GeneralRe: How can I write text to a picturebox? Pin
Hesham Yassin12-Jun-07 11:47
Hesham Yassin12-Jun-07 11:47 
AnswerRe: How can I write text to a picturebox? Pin
Christian Graus12-Jun-07 11:16
protectorChristian Graus12-Jun-07 11:16 
AnswerRe: How can I write text to a picturebox? Pin
Muammar©12-Jun-07 19:47
Muammar©12-Jun-07 19:47 
Bitmap bm = new Bitmap(@"C:\YourPicture.bmp");            
Graphics gr = Graphics.FromImage(bm);
            gr.DrawString(""test", new Font("Verdana", (float)10, FontStyle.Bold, GraphicsUnit.Pixel), new SolidBrush(Color.Red),(float)20, (float)20);
            gr.Dispose();
            pictureBox1.Image = bm;




Smile: A curve that can set a lot of things straight!
(\ /)
(O.o)
(><)

QuestionC# Tutorial or samples for beginners Pin
Software_Guy_12312-Jun-07 7:38
Software_Guy_12312-Jun-07 7:38 
AnswerRe: C# Tutorial or samples for beginners Pin
Tarakeshwar Reddy12-Jun-07 7:49
professionalTarakeshwar Reddy12-Jun-07 7:49 
AnswerRe: C# Tutorial or samples for beginners Pin
dino209412-Jun-07 11:37
dino209412-Jun-07 11:37 
AnswerRe: C# Tutorial or samples for beginners Pin
Sathesh Sakthivel12-Jun-07 15:24
Sathesh Sakthivel12-Jun-07 15:24 
AnswerRe: C# Tutorial or samples for beginners Pin
Software_Guy_12313-Jun-07 16:57
Software_Guy_12313-Jun-07 16:57 
QuestionC++ Equivalents Pin
LimeyRedneck12-Jun-07 7:34
professionalLimeyRedneck12-Jun-07 7:34 
AnswerRe: C++ Equivalents Pin
Dave Doknjas12-Jun-07 13:48
Dave Doknjas12-Jun-07 13:48 

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.