Click here to Skip to main content
15,905,563 members
Home / Discussions / C#
   

C#

 
GeneralRe: how to make a minimalist event manager with c# Pin
Rohan Varendani16-Dec-19 22:35
Rohan Varendani16-Dec-19 22:35 
GeneralRe: how to make a minimalist event manager with c# Pin
Richard MacCutchan16-Dec-19 22:41
mveRichard MacCutchan16-Dec-19 22:41 
GeneralRe: how to make a minimalist event manager with c# Pin
OriginalGriff16-Dec-19 23:10
mveOriginalGriff16-Dec-19 23:10 
AnswerRe: how to make a minimalist event manager with c# Pin
#realJSOP23-Dec-19 0:47
professional#realJSOP23-Dec-19 0:47 
GeneralRe: how to make a minimalist event manager with c# Pin
Mycroft Holmes16-Dec-19 22:29
professionalMycroft Holmes16-Dec-19 22:29 
AnswerRe: how to make a minimalist event manager with c# Pin
#realJSOP23-Dec-19 0:46
professional#realJSOP23-Dec-19 0:46 
AnswerRe: how to make a minimalist event manager with c# Pin
Gerry Schmitz17-Dec-19 6:01
mveGerry Schmitz17-Dec-19 6:01 
QuestionPrint on roll paper using report rdlc and reportviewer Pin
Member 1419221613-Dec-19 8:56
Member 1419221613-Dec-19 8:56 
AnswerRe: Print on roll paper using report rdlc and reportviewer Pin
Richard MacCutchan13-Dec-19 9:20
mveRichard MacCutchan13-Dec-19 9:20 
QuestionTracking Data Changes Pin
Kevin Marois13-Dec-19 8:41
professionalKevin Marois13-Dec-19 8:41 
AnswerRe: Tracking Data Changes Pin
Eddy Vluggen13-Dec-19 11:35
professionalEddy Vluggen13-Dec-19 11:35 
GeneralRe: Tracking Data Changes Pin
Kevin Marois13-Dec-19 11:43
professionalKevin Marois13-Dec-19 11:43 
AnswerRe: Tracking Data Changes Pin
Gerry Schmitz13-Dec-19 12:38
mveGerry Schmitz13-Dec-19 12:38 
GeneralRe: Tracking Data Changes Pin
Kevin Marois16-Dec-19 10:51
professionalKevin Marois16-Dec-19 10:51 
GeneralRe: Tracking Data Changes Pin
Gerry Schmitz16-Dec-19 12:06
mveGerry Schmitz16-Dec-19 12:06 
QuestionHow do you make a unit test of an empty linked list? Pin
Melissa Anthonia13-Dec-19 7:56
Melissa Anthonia13-Dec-19 7:56 
AnswerRe: How do you make a unit test of an empty linked list? Pin
Melissa Anthonia13-Dec-19 9:13
Melissa Anthonia13-Dec-19 9:13 
GeneralRe: How do you make a unit test of an empty linked list? Pin
Gerry Schmitz13-Dec-19 12:49
mveGerry Schmitz13-Dec-19 12:49 
GeneralRe: How do you make a unit test of an empty linked list? Pin
Melissa Anthonia13-Dec-19 13:45
Melissa Anthonia13-Dec-19 13:45 
AnswerRe: How do you make a unit test of an empty linked list? Pin
Melissa Anthonia14-Dec-19 3:14
Melissa Anthonia14-Dec-19 3:14 
Questiondesign a printdocument control with a text and boxes like filling form Pin
bimalachira13-Dec-19 7:06
bimalachira13-Dec-19 7:06 
AnswerRe: design a printdocument control with a text and boxes like filling form Pin
OriginalGriff13-Dec-19 8:03
mveOriginalGriff13-Dec-19 8:03 
You don't: a PrintDocument is not an interactive control, it provides no mechanism for user input.
You could conceivably add code to open a new form to fill in in the PrintDocument, but that really isn't what it's for (and the same code is called for the actual print do it's gonna get messy if you want anything to work properly).

Instead, create a form for the user to input his data, validate it, and store that - then pass it through to the PrintDocument for format for output.
"I have no idea what I did, but I'm taking full credit for it." - ThisOldTony
AntiTwitter: @DalekDave is now a follower!

Questionc# memory crash Pin
Member 1449096413-Dec-19 5:26
Member 1449096413-Dec-19 5:26 
AnswerRe: c# memory crash Pin
OriginalGriff13-Dec-19 5:42
mveOriginalGriff13-Dec-19 5:42 
GeneralRe: c# memory crash Pin
Member 1449096413-Dec-19 5:57
Member 1449096413-Dec-19 5:57 

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.