The browses of the code I'm converting use the NTXPOS() function to set the scroll bars on a number of browses. In 16 bits this function seemed to work very nicely, but in FWH, it seems to always return 0. Any suggestions?
The browses of the code I'm converting use the NTXPOS() function to set the scroll bars on a number of browses. In 16 bits this function seemed to work very nicely, but in FWH, it seems to always return 0. Any suggestions?
In 32 bit use OrdKeyNo() and OrdKeyCount() instead.
EMG
In addition to Mr EMG's suggestion, I like to add that if we use XBrowse, it automatically takes care of these issues.
We just tell the XBrowse what columns are to be browsed from what Alias and it does all the rest.
Thanks to you both for your suggestions. I ended up using the OrdKeyNo() call in place of the NTXPOS function and that seems to work perfectly. I'm sure there are advantages to using newer browses, but at this point there are enough other things to work on, I'm taking the quickest path toward conversion. Thanks for both of your suggestions.