Davek
|
| Posted: 07/28/2003, 5:19 PM |
|
What do I use to reference the data source rows in the After Execute Select event.
Something like: Recordset.Fields.Field1 ?
I need to modify the data before it is displayed in the Grid.
I need to rotate the data 90 degrees so that the records go across the grid from left to right rather than from top to bottom.
Any suggestions here would be useful.
|
|
|
 |
NoName
|
| Posted: 07/31/2003, 5:01 AM |
|
Hi,
in Before Show Row event or before show event of the field you can change the field value before it is displayed:
form_name.field_name.Value = “new value”
This is the only way.
|
|
|
 |
|