home *** CD-ROM | disk | FTP | other *** search
- VERSION 2.00
- Begin Form MDIChild1C
- BackColor = &H00C0C0C0&
- Caption = "CLINICAL DATA"
- ClientHeight = 4020
- ClientLeft = 180
- ClientTop = 1920
- ClientWidth = 9600
- Height = 4425
- Left = 120
- LinkTopic = "Form3"
- MDIChild = -1 'True
- ScaleHeight = 4020
- ScaleWidth = 9600
- Top = 1575
- Width = 9720
- Begin VBedit BEdit1C
- CellHeight = 500
- CellWidth = 500
- CombBaseLine = 500
- CombEndHeight = 360
- CombEndMarker = 0 'False
- CombHeight = 270
- FontBold = 0 'False
- FontItalic = 0 'False
- FontName = "Arial"
- FontSize = 24
- FontStrikethru = 0 'False
- FontUnderline = 0 'False
- Height = 855
- InflateBottom = 180
- InflateLeft = 180
- InflateRight = 180
- InflateTop = 240
- Left = 840
- TabIndex = 4
- Top = 0
- Version = 268435458
- Width = 7695
- End
- Begin AniPushButton AniButton3C
- BackColor = &H00C0C0C0&
- Cycle = 2 '2-state 1/2 & 1/2
- Height = 480
- Left = 8880
- PictDrawMode = 1 'Autosize control
- Picture = CHILD1C.FRX:0000
- TabIndex = 3
- Top = 120
- Width = 480
- End
- Begin VHedit HEdit1C
- FontBold = 0 'False
- FontItalic = 0 'False
- FontName = "Arial"
- FontSize = 24
- FontStrikethru = 0 'False
- FontUnderline = 0 'False
- Height = 555
- InflateBottom = 270
- InflateLeft = 270
- InflateRight = 270
- InflateTop = 270
- Left = 8640
- TabIndex = 2
- Top = 720
- Version = 268435458
- Visible = 0 'False
- Width = 495
- End
- Begin ListBox List3
- BackColor = &H00FF0000&
- FontBold = -1 'True
- FontItalic = 0 'False
- FontName = "Arial"
- FontSize = 12
- FontStrikethru = 0 'False
- FontUnderline = 0 'False
- ForeColor = &H00FFFFFF&
- Height = 3450
- Index = 1
- Left = 4800
- TabIndex = 1
- Top = 1080
- Width = 4695
- End
- Begin ListBox List3
- BackColor = &H00FF0000&
- FontBold = -1 'True
- FontItalic = 0 'False
- FontName = "Arial"
- FontSize = 12
- FontStrikethru = 0 'False
- FontUnderline = 0 'False
- ForeColor = &H00FFFFFF&
- Height = 3450
- Index = 0
- Left = 0
- TabIndex = 0
- Top = 1080
- Width = 4815
- End
- Sub AniButton3C_Click ()
- Select Case anibutton3C.Value
- Case 2
- editswap bedit1C, hedit1C, 1
- hedit1C.Visible = -1
- bedit1C.Visible = 0
-
- appendflag3 = -1
- Case 1
- editswap bedit1C, hedit1C, 2
- hedit1C.Visible = 0
- bedit1C.Visible = -1
-
- appendflag3 = 0
- End Select
- End Sub
- Sub List3_Click (Index As Integer)
- If appendflag3 Then
- Select Case Index
- Case 0
- LIST3(1).AddItem LIST3(0).List(LIST3(0).ListIndex) + " " + bedit1C.Text
- Case 1
- LIST3(1).RemoveItem LIST3(1).ListIndex
- End Select
- Select Case Index
- Case 0
- LIST3(1).AddItem LIST3(0).List(LIST3(0).ListIndex)
- Case 1
- LIST3(1).RemoveItem LIST3(1).ListIndex
- End Select
- End If
- End Sub
-