Dear freinds,
Whenever a user moves from one column to another column
OR
Whenever a user moves from one row to another row
I need to fire an event,
I should be able to understand the new Row, the new Col and should be
able to execute a function. I don't understand which event to be used.
I tried TsBrowse's bChange but unfortunately TBrowse:bChange will
fire only when the user moves from the current row to a new row, it
doesn't fire when the the user moves to another column of the same row.
I am using oBrw:nRowPos and oBrw:nCell to identify the Row number and column number. I don't knw why oBrw:nCol returning a wrong value
If anybody know any solution, please let me know.
Regards
TSBrowse Which event to be used when user navigate row/col
Re: TSBrowse Which event to be used when user navigate row/
Hi:anserkk wrote:Whenever a user moves from one column to another column OR Whenever a user moves from one row to another row I need to fire an event,
Every time the user moves the cursor from one column to another, TSBrowse evaluates the codeblocks oBrw:aColumns[ nCol ]:bGotFocus and oBrw:aColumns[ nCol ]:bLostFocus. These codeblocks receive the present (oBrw:nCell) and previous (oBrw:nOldCell) column numbers as parameters
Regards.
Manuel Mercado
Re: TSBrowse Which event to be used when user navigate row/
Thank you very much,
I really like your TSBrowse control.
I have few more doubts
1. Is it possible to define a TsBrowse without an Alias clause and later assign Alias clause at run time, depending on the dbf
2. Is it possible to define a TsBrowse and make it totally hidden and show only when it is required.
If possible can I have the syntax for the above.
If the above 2 things are possible then I will be able to solve many complications in my coding.
My suggestions & Feedbacks regarding TsBrowse Ver 7.
---------------------------------------------------------------
While appending a new record, once the user exit the first editable column, the new record is appended, but at certain times user may require more validations on other column of the same row to become a valid record/row. Record should be appended only after all the validations are .T., something like a RowValidation. (lAppendmode changes from .T. to .F. once the user exit the first editable column of a new record) Is it possible to include such things in your next version.
I mostly use temporary dbf on TsBrowse. For eg, A temp dbf is created and data from the Original DBF is read and appended to the temporary dbf. TsBrowse uses the Temp dbf for display. While editing using TsBrowse, I update the original DBF and the temporary dbf (Temp dbf is updated by TsBrowse itself)
In clipper 5.01 I used a customised ver of DbEditBrowse, In that I had total control over the DBF, ie I append/replaced the record/field onto the DBf when all the columns are valid.
I also found a bug in TsBrowse:Proper(). Proper() will work only if the name of the Browse object is declared as private. I don't know whether this is a bug or my mistake.
Regards
Anser
I really like your TSBrowse control.
I have few more doubts
1. Is it possible to define a TsBrowse without an Alias clause and later assign Alias clause at run time, depending on the dbf
2. Is it possible to define a TsBrowse and make it totally hidden and show only when it is required.
If possible can I have the syntax for the above.
If the above 2 things are possible then I will be able to solve many complications in my coding.
My suggestions & Feedbacks regarding TsBrowse Ver 7.
---------------------------------------------------------------
While appending a new record, once the user exit the first editable column, the new record is appended, but at certain times user may require more validations on other column of the same row to become a valid record/row. Record should be appended only after all the validations are .T., something like a RowValidation. (lAppendmode changes from .T. to .F. once the user exit the first editable column of a new record) Is it possible to include such things in your next version.
I mostly use temporary dbf on TsBrowse. For eg, A temp dbf is created and data from the Original DBF is read and appended to the temporary dbf. TsBrowse uses the Temp dbf for display. While editing using TsBrowse, I update the original DBF and the temporary dbf (Temp dbf is updated by TsBrowse itself)
In clipper 5.01 I used a customised ver of DbEditBrowse, In that I had total control over the DBF, ie I append/replaced the record/field onto the DBf when all the columns are valid.
I also found a bug in TsBrowse:Proper(). Proper() will work only if the name of the Browse object is declared as private. I don't know whether this is a bug or my mistake.
Regards
Anser
mmercado wrote:Hi:anserkk wrote:Whenever a user moves from one column to another column OR Whenever a user moves from one row to another row I need to fire an event,
Every time the user moves the cursor from one column to another, TSBrowse evaluates the codeblocks oBrw:aColumns[ nCol ]:bGotFocus and oBrw:aColumns[ nCol ]:bLostFocus. These codeblocks receive the present (oBrw:nCell) and previous (oBrw:nOldCell) column numbers as parameters
Regards.
Manuel Mercado
Re: TSBrowse Which event to be used when user navigate row/
Hello Anser:
Regards.
Manuel Mercado
If no alias is given when browse is created, TSBrowse asumes the active database with it's alias, nevertheless you can create the browse with an alias and change oBrw:cAlias at runtime (assuming similar data structure).anserkk wrote:1. Is it possible to define a TsBrowse without an Alias clause and later assign Alias clause at run time, depending on the dbf
As in every control derived from TControl Class, you can oBrw:Hide() and oBrw:Show() whenever you wantanserkk wrote:2. Is it possible to define a TsBrowse and make it totally hidden and show only when it is required.
I would suggest you to edit an array (is faster) and update your database when you consider data is ok.anserkk wrote:I mostly use temporary dbf on TsBrowse. For eg, A temp dbf is created and data from the Original DBF is read and appended to the temporary dbf. TsBrowse uses the Temp dbf for display. While editing using TsBrowse, I update the original DBF and the temporary dbf (Temp dbf is updated by TsBrowse itself)
Regards.
Manuel Mercado