How can I set a value typed in a gridline as the default for the next gridline. Was looking at Default Property and Previous Value Field without sucess.
*This post is locked for comments
How can I set a value typed in a gridline as the default for the next gridline. Was looking at Default Property and Previous Value Field without sucess.
*This post is locked for comments
Jorge
One way would be to store the value, possibly in the grid's LineChk event.
Then, in LineGotFocus, check that MaintFlg = NEWROW.
If it does, then you are on a newly created grid line, and you could use SetObjectValue to set the stored value into the control.
Barry