Delete Cell Contents (OpenInsight 32-bit Specific)
At 26 JUL 2004 10:18:36PM Marty Rosenbloom wrote:
Hi,
Is there a way to delete the contents of one cell on an edit table without deleting the whole row?
TIA,
Marty
At 26 JUL 2004 11:05PM [email protected] wrote:
I don't believe there is a 'sendmessage' or 'set_property' which will effect an individual cell.
You can of course get rowdata, set val to null then set rowdata
[email protected] onmouseover=window.status=the new revelation technology .. a refreshing change;return(true)"
David Tod Sigafoos ~ SigSolutions
At 26 JUL 2004 11:12PM [email protected] wrote:
or as i should have mentioned
if cell currently selected
set_property(ctrl, 'ACCESSDATA', NULL$)
else you can set the 'accesspos' then the data
set_property(ctrl, 'ACCESSPOS', 2:@fm:2)
set_property(ctrl, 'ACCESSDATA', NULL$)
[email protected] onmouseover=window.status=the new revelation technology .. a refreshing change;return(true)"
David Tod Sigafoos ~ SigSolutions
At 27 JUL 2004 03:22AM Donald Bakke wrote:
Marty,
Did you mean programmatically or as an end user?
At 27 JUL 2004 04:32AM [email protected] wrote:
or even CELLPOS which Acts as a combination of ACCESSPOS and ACCESSDATA. Parameter position is an @FM delimited array of column number and row number.
The Sprezzatura Group Web Site
World Leaders in all things RevSoft
At 27 JUL 2004 09:06AM Marty Rosenbloom wrote:
Hi Don,
I meant as an end user.
Marty
At 27 JUL 2004 09:31AM [email protected] wrote:
Ensure "Row Select" is not checked in the form designer. Press F2 in the cell then Del.
The Sprezzatura Group Web Site
World Leaders in all things RevSoft
At 27 JUL 2004 10:46PM Jonathan Bird wrote:
…or click on the cell and hit the backspace key…