Danko Radic wrote:
> When my app is current running app, it creates a record in DB (not just
> one). When NOT being current running, it's trigged (one subroutine) via
> launch code and I don't have globals. I want to modify record mentioned
> above, but I don't know how to find it without having global var where
> it's uniqueID was stored. What would be the most convenient procedure in
> such situation?
You could use the feature manager (FtrSet, FtrGet) to save the unique
ID in a feature. You might think of features as 32-bit variables that
you reference by number rather than by name. But beware: a soft reset
clears all your features.
An approach that takes a little more programming effort than features,
but that is reset-safe, is to use a separate database having only one
record, and putting the unique ID in that. Or, if you have created an
app preferences database, just add an element to your structure for the
unique ID.
--
Roger Chaplin
<[EMAIL PROTECTED]>