|
|
|
|
|
How to add a new row to a Table control?
A Table control managed programmatically can be: To manage the addition of a new row into a Table control programmatically: - In the window, crate a button containing the Table control. This button will manage the addition of the row into the Table control.
- In the click code of this button:
Note: If you use TableAdd to add a row to the Table control, you need to use TableCount to get the number of the new row added. Code example nRowNum is int // Add a row nRowNum = TableAddLine(TABLE_OrdLine) // The added row becomes the current row TABLE_OrdLine = nRowNum // Select the column where the input will be performed SetFocusAndReturnToUserInput(TABLE_OrdLine.COL_ProductRef)
This page is also available for…
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|