private void nextButton_Click(object sender, EventArgs e) { /*contract_tb.Clear(); * string test; * test = participantName_tb.Text + "\t \t \t \t \t" + CurrentDateTime_CF1.Text + "\n \n" + * "Progress Notes are to include any daily activities, behavior issues, appointments and progress" + * " towards goals. Place all dates in parenthesis ( ) at the beginning of note on the far left side, circle the " + * " letter of the goal documenting on, include time beginning and ending of activity. Place signature and title after each data entry" + * "\n \n" + * * CurrentDateTime_CF1.Text + "\n \n" + * * participantName_tb.Text + " arrived at the facility at " + arrivalTime.Text + arrivalTimeDesc_tb.Text + "\n \n" + * * "At " + goal1StartTime.Text + " " + participantName_tb.Text + " began their first objective. " + * objective_cb1.Text + " " + objective1_rtb.Text + "\n \n" + details1_rtb.Text + " " + * participantName_tb.Text + " finished working on objective " + objective_cb1.Text + " at " + goal1EndTime.Text + "\n \n" + + + "At " + goal2StartTime.Text + " " + participantName_tb.Text + " started working on their second objective. " + + objective_cb2.Text + " " + objective2_rtb.Text + "\n \n" + details2_rtb.Text + " " + + participantName_tb.Text + " finished working on objective " + objective_cb2.Text + " at " + goal2EndTime.Text + "\n \n" + + + + "At " + goal3StartTime.Text + " " + participantName_tb.Text + " moved on to their third objective. " + + objective_cb3.Text + " " + objective3_rtb.Text + "\n \n" + details3_rtb.Text + " " + + participantName_tb.Text + " finished working on objective " + objective_cb3.Text + " at " + goal3EndTime.Text + "\n \n" + + + + "At " + goal4StartTime.Text + " " + participantName_tb.Text + " made it to their final objective. " + + objective_cb4.Text + " " + objective4_rtb.Text + "\n \n" + details4_rtb.Text + " " + + participantName_tb.Text + " finished working on objective " + objective_cb4.Text + " at " + goal4EndTime.Text + "\n \n" + + + departureTimeDesc_tb.Text + participantName_tb.Text + " got ready to leave and left the facility at " + departureTime.Text ; */ CreateNoteForm2 nextStep = new CreateNoteForm2(participantName_tb.Text, CurrentDateTime_CF1.Text, arrivalTime, arrivalTimeDesc_tb.Text, goal1StartTime, objective_cb1.Text, objective1_rtb.Text, details1_rtb.Text, goal1EndTime, goal2StartTime, objective_cb2.Text, objective2_rtb.Text, details2_rtb.Text, goal2EndTime, goal3StartTime, objective_cb3.Text, objective3_rtb.Text, details3_rtb.Text, goal3EndTime, goal4StartTime, objective_cb4.Text, objective4_rtb.Text, details4_rtb.Text, goal4EndTime, departureTime); nextStep.RefToForm1 = this; this.Visible = false; nextStep.Show(); this.CenterToScreen(); }
private void Form1_Load(object sender, EventArgs e) { CreateNoteForm1 form3 = new CreateNoteForm1(); form3.Visible = true; CreateNoteForm2 form4 = new CreateNoteForm2(); form4.Visible = true; BodyCheck bodycheck = new BodyCheck(); bodycheck.Visible = true; }
private void nextButton_Click(object sender, EventArgs e) { /*contract_tb.Clear(); string test; test = participantName_tb.Text + "\t \t \t \t \t" + CurrentDateTime_CF1.Text + "\n \n" + "Progress Notes are to include any daily activities, behavior issues, appointments and progress" + " towards goals. Place all dates in parenthesis ( ) at the beginning of note on the far left side, circle the " + " letter of the goal documenting on, include time beginning and ending of activity. Place signature and title after each data entry" + "\n \n" + CurrentDateTime_CF1.Text + "\n \n" + participantName_tb.Text + " arrived at the facility at " + arrivalTime.Text + arrivalTimeDesc_tb.Text + "\n \n" + "At " + goal1StartTime.Text + " " + participantName_tb.Text + " began their first objective. " + objective_cb1.Text + " " + objective1_rtb.Text + "\n \n" + details1_rtb.Text + " " + participantName_tb.Text + " finished working on objective " + objective_cb1.Text + " at " + goal1EndTime.Text + "\n \n" + "At " + goal2StartTime.Text + " " + participantName_tb.Text + " started working on their second objective. " + objective_cb2.Text + " " + objective2_rtb.Text + "\n \n" + details2_rtb.Text + " " + participantName_tb.Text + " finished working on objective " + objective_cb2.Text + " at " + goal2EndTime.Text + "\n \n" + "At " + goal3StartTime.Text + " " + participantName_tb.Text + " moved on to their third objective. " + objective_cb3.Text + " " + objective3_rtb.Text + "\n \n" + details3_rtb.Text + " " + participantName_tb.Text + " finished working on objective " + objective_cb3.Text + " at " + goal3EndTime.Text + "\n \n" + "At " + goal4StartTime.Text + " " + participantName_tb.Text + " made it to their final objective. " + objective_cb4.Text + " " + objective4_rtb.Text + "\n \n" + details4_rtb.Text + " " + participantName_tb.Text + " finished working on objective " + objective_cb4.Text + " at " + goal4EndTime.Text + "\n \n" + departureTimeDesc_tb.Text + participantName_tb.Text + " got ready to leave and left the facility at " + departureTime.Text ; */ CreateNoteForm2 nextStep = new CreateNoteForm2(participantName_tb.Text, CurrentDateTime_CF1.Text, arrivalTime, arrivalTimeDesc_tb.Text, goal1StartTime, objective_cb1.Text, objective1_rtb.Text, details1_rtb.Text, goal1EndTime, goal2StartTime, objective_cb2.Text, objective2_rtb.Text, details2_rtb.Text, goal2EndTime, goal3StartTime, objective_cb3.Text, objective3_rtb.Text, details3_rtb.Text, goal3EndTime, goal4StartTime, objective_cb4.Text, objective4_rtb.Text, details4_rtb.Text, goal4EndTime, departureTime); nextStep.RefToForm1 = this; this.Visible = false; nextStep.Show(); this.CenterToScreen(); }