Click here to Skip to main content
15,918,742 members
Home / Discussions / C#
   

C#

 
AnswerRe: Any Software tool available for generating UML ACTIVITY DIAGRAM from C# Code ? Pin
RC nathan19-Nov-09 20:53
RC nathan19-Nov-09 20:53 
Questionasynchronous write file problem Pin
hande5418-Nov-09 11:45
hande5418-Nov-09 11:45 
AnswerRe: asynchronous write file problem Pin
Bassam Saoud18-Nov-09 12:30
Bassam Saoud18-Nov-09 12:30 
AnswerRe: asynchronous write file problem Pin
Dave Kreskowiak18-Nov-09 17:27
mveDave Kreskowiak18-Nov-09 17:27 
GeneralRe: asynchronous write file problem Pin
hande5419-Nov-09 6:38
hande5419-Nov-09 6:38 
QuestionHide Black Console Window later in program Pin
LimitedAtonement18-Nov-09 7:33
LimitedAtonement18-Nov-09 7:33 
AnswerRe: Hide Black Console Window later in program Pin
The Man from U.N.C.L.E.18-Nov-09 7:57
The Man from U.N.C.L.E.18-Nov-09 7:57 
GeneralRe: Hide Black Console Window later in program Pin
PIEBALDconsult18-Nov-09 9:23
mvePIEBALDconsult18-Nov-09 9:23 
QuestionStretch to parent control Pin
Zaegra18-Nov-09 7:19
Zaegra18-Nov-09 7:19 
AnswerRe: Stretch to parent control Pin
LimitedAtonement18-Nov-09 7:44
LimitedAtonement18-Nov-09 7:44 
GeneralRe: Stretch to parent control Pin
Zaegra18-Nov-09 8:34
Zaegra18-Nov-09 8:34 
GeneralRe: Stretch to parent control Pin
Abhishek Sur18-Nov-09 9:49
professionalAbhishek Sur18-Nov-09 9:49 
GeneralRe: Stretch to parent control Pin
0x3c018-Nov-09 10:01
0x3c018-Nov-09 10:01 
AnswerRe: Stretch to parent control Pin
Abhishek Sur18-Nov-09 9:51
professionalAbhishek Sur18-Nov-09 9:51 
GeneralRe: Stretch to parent control Pin
Zaegra18-Nov-09 10:04
Zaegra18-Nov-09 10:04 
AnswerRe: Stretch to parent control Pin
Luc Pattyn18-Nov-09 10:08
sitebuilderLuc Pattyn18-Nov-09 10:08 
GeneralRe: Stretch to parent control Pin
Zaegra18-Nov-09 10:45
Zaegra18-Nov-09 10:45 
GeneralRe: Stretch to parent control Pin
LimitedAtonement18-Nov-09 11:12
LimitedAtonement18-Nov-09 11:12 
GeneralRe: Stretch to parent control Pin
Luc Pattyn18-Nov-09 13:42
sitebuilderLuc Pattyn18-Nov-09 13:42 
GeneralRe: Stretch to parent control Pin
Zaegra18-Nov-09 19:23
Zaegra18-Nov-09 19:23 
NewsRe: Stretch to parent control Pin
LimitedAtonement20-Nov-09 6:20
LimitedAtonement20-Nov-09 6:20 
GeneralRe: Stretch to parent control Pin
Luc Pattyn20-Nov-09 7:29
sitebuilderLuc Pattyn20-Nov-09 7:29 
QuestionProgressBar like a ruler Pin
stancrm18-Nov-09 6:31
stancrm18-Nov-09 6:31 
AnswerRe: ProgressBar like a ruler Pin
musefan18-Nov-09 7:02
musefan18-Nov-09 7:02 
Create a user control, and use its paint event. Then you can draw it however you want and give it a function like...

int percentToDraw;
void UpdateProgress(int percent)
{
   percentToDraw = percent;
   this.Invalidate();
}

void OnPaint(object sender, PaintEventArgs e)
{
   //e.Draw whatever you want here using percentToDrawValue
}


Life goes very fast. Tomorrow, today is already yesterday.

AnswerRe: ProgressBar like a ruler Pin
The Man from U.N.C.L.E.18-Nov-09 7:46
The Man from U.N.C.L.E.18-Nov-09 7: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.