Changes between Initial Version and Version 1 of Ticket #2, comment 2
- Timestamp:
- 10/21/14 23:25:35 (10 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #2, comment 2
initial v1 17 17 Private Sub Form1_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load 18 18 19 ' TODO: This line of code loads data into the 'Medical_systemDataSet4.tblPatient_Lab' table. You can move, or remove it, as needed.19 ''''TODO: This line of code loads data into the 'Medical_systemDataSet4.tblPatient_Lab' table. You can move, or remove it, as needed.''' 20 20 21 21 Me.TblPatient_LabTableAdapter2.Fill(Me.Medical_systemDataSet4.tblPatient_Lab) 22 'TODO: This line of code loads data into the 23 24 'Medical_systemDataSet4.tblPatient_Appointment' table. You can move, or remove it, as needed. 22 ''''TODO: This line of code loads data into the 23 'Medical_systemDataSet4.tblPatient_Appointment' table. You can move, or remove it, as needed.''' 25 24 Me.TblPatient_AppointmentTableAdapter1.Fill(Me.Medical_systemDataSet4.tblPatient_Appointment) 26 25 27 ' TODO: This line of code loads data into the28 'Medical_systemDataSet4.tblPatient_Examination' table. You can move, or remove it, as needed. 26 ''''TODO: This line of code loads data into the 27 'Medical_systemDataSet4.tblPatient_Examination' table. You can move, or remove it, as needed.''' 29 28 Me.TblPatient_ExaminationTableAdapter1.Fill(Me.Medical_systemDataSet4.tblPatient_Examination) 30 29 31 ' TODO: This line of code loads data into the 'Medical_systemDataSet3.tblPatient_Lab' table. You can move, or remove it, as needed.30 ''''TODO: This line of code loads data into the 'Medical_systemDataSet3.tblPatient_Lab' table. You can move, or remove it, as needed.''' 32 31 33 32 Me.TblPatient_LabTableAdapter1.Fill(Me.Medical_systemDataSet3.tblPatient_Lab) 34 33 35 ' TODO: This line of code loads data into the 'Medical_systemDataSet2.tblPatient_Lab' table. You can move, or remove it, as needed.34 '''TODO: This line of code loads data into the 'Medical_systemDataSet2.tblPatient_Lab' table. You can move, or remove it, as needed.''' 36 35 37 36 Me.TblPatient_LabTableAdapter.Fill(Me.Medical_systemDataSet2.tblPatient_Lab) 38 37 39 'TODO: This line of code loads data into the 'Medical_systemDataSet2.tblPatient_Examination' table. You can move, or remove it, as needed. 38 ''' 'TODO: This line of code loads data into the 'Medical_systemDataSet2.tblPatient_Examination' table. You can move, or remove it, as needed.''' 40 39 41 40 Me.TblPatient_ExaminationTableAdapter.Fill(Me.Medical_systemDataSet2.tblPatient_Examination) 42 41 43 ' TODO: This line of code loads data into the 'Medical_systemDataSet.tblPatient_Appointment' table. You can move, or remove it, as needed.42 ''''TODO: This line of code loads data into the 'Medical_systemDataSet.tblPatient_Appointment' table. You can move, or remove it, as needed'''. 44 43 Me.TblPatient_AppointmentTableAdapter.Fill(Me.Medical_systemDataSet.tblPatient_Appointment) 45 44 46 45 47 ' TODO: This line of code loads data into the 'Medical_systemDataSet.tblPatient' table. You can move, or remove it, as needed.46 ''''TODO: This line of code loads data into the 'Medical_systemDataSet.tblPatient' table. You can move, or remove it, as needed.''' 48 47 49 48 Me.TblPatientTableAdapter.Fill(Me.Medical_systemDataSet.tblPatient) … … 53 52 DataGridShow() 54 53 55 control can display a collection of data in multiple columns and rows. It includes functionality to sort by columns. 54 ''' control can display a collection of data in multiple columns and rows. It includes functionality to sort by columns.'''