Oracle Objects for OLE Release 9.2 Part Number A95895-01 |
|
See Also |
Quick Tour |
Batch Insert Form |
Private Sub Form_Load()
Grid1.Enabled = True
CurrRow = 0 'Top row
ReadRow = 0
ReadCol = 0
'Set column headings
Grid1.Row = CurrRow
Grid1.Col = 0
Grid1.Text = "Employee Number"
Grid1.Col = 1
Grid1.Text = "Employee Name"
Grid1.Col = 2
Grid1.Text = "Department Number"
NoOfCols = 3
CurrRow = CurrRow + 1
End Sub
|
Copyright © 1994, 2002 Oracle Corporation. All Rights Reserved. |
|