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

C#

 
AnswerRe: openFileDialog win form Pin
stancrm28-Jul-08 1:05
stancrm28-Jul-08 1:05 
GeneralRe: openFileDialog win form Pin
arkiboys28-Jul-08 1:17
arkiboys28-Jul-08 1:17 
GeneralRe: openFileDialog win form Pin
sumit703428-Jul-08 1:33
sumit703428-Jul-08 1:33 
GeneralRe: openFileDialog win form Pin
arkiboys28-Jul-08 1:58
arkiboys28-Jul-08 1:58 
GeneralRe: openFileDialog win form Pin
sumit703428-Jul-08 2:20
sumit703428-Jul-08 2:20 
GeneralRe: openFileDialog win form Pin
Thomas Stockwell28-Jul-08 1:35
professionalThomas Stockwell28-Jul-08 1:35 
QuestionHow to draw a status bar panel ? Pin
reallyneedhelp28-Jul-08 0:48
reallyneedhelp28-Jul-08 0:48 
AnswerRe: How to draw a status bar panel ? Pin
Harvey Saayman28-Jul-08 0:55
Harvey Saayman28-Jul-08 0:55 
reallyneedhelp wrote:
status bar pane


define status bar panel...

if you want to draw custom stuff on a control such as the panel youd use its OnPaint event handler like so
OnPaint(object sender, EventArgs e)
{
    // This will draw a line from the 1st point(x = 50, y = 50), to the 2nd point(x = 100, y = 100) 
    e.Graphics.DrawLine(new Point(50, 50),new Point(100, 100));
}


look around in the graphics object to see what else you can draw

Harvey Saayman - South Africa
Junior Developer
.Net, C#, SQL

you.suck = (you.passion != Programming)

AnswerRe: How to draw a status bar panel ? Pin
Thomas Stockwell28-Jul-08 1:36
professionalThomas Stockwell28-Jul-08 1:36 
QuestionPrinter service using c#.net Pin
balu1234528-Jul-08 0:19
balu1234528-Jul-08 0:19 
AnswerRe: Printer service using c#.net Pin
teejayem28-Jul-08 2:54
teejayem28-Jul-08 2:54 
Questioncreating page in the same window Pin
ktamanna28-Jul-08 0:13
ktamanna28-Jul-08 0:13 
AnswerRe: creating page in the same window Pin
Harvey Saayman28-Jul-08 1:01
Harvey Saayman28-Jul-08 1:01 
GeneralRe: creating page in the same window Pin
ktamanna30-Jul-08 18:24
ktamanna30-Jul-08 18:24 
AnswerRe: creating page in the same window Pin
nelsonpaixao28-Jul-08 13:29
nelsonpaixao28-Jul-08 13:29 
QuestionDateTime issue in PDA application Pin
neer127-Jul-08 23:47
neer127-Jul-08 23:47 
AnswerRe: DateTime issue in PDA application Pin
DaveyM6928-Jul-08 0:33
professionalDaveyM6928-Jul-08 0:33 
QuestionLanguage encoding problem Pin
Muammar©27-Jul-08 23:12
Muammar©27-Jul-08 23:12 
AnswerRe: Language encoding problem Pin
Frank Horn27-Jul-08 23:53
Frank Horn27-Jul-08 23:53 
GeneralRe: Language encoding problem Pin
Muammar©28-Jul-08 0:02
Muammar©28-Jul-08 0:02 
GeneralRe: Language encoding problem Pin
Frank Horn28-Jul-08 0:50
Frank Horn28-Jul-08 0:50 
GeneralRe: Language encoding problem Pin
Muammar©28-Jul-08 1:32
Muammar©28-Jul-08 1:32 
QuestionAccessing a directory on server drive Pin
punkymt127-Jul-08 21:34
punkymt127-Jul-08 21:34 
AnswerRe: Accessing a directory on server drive Pin
Muhammad Gouda27-Jul-08 21:39
Muhammad Gouda27-Jul-08 21:39 
GeneralRe: Accessing a directory on server drive Pin
punkymt127-Jul-08 21:46
punkymt127-Jul-08 21:46 

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.