I will post any usefull tips as I run across.
The new RecordRowCount as announced in the update notes is actually "RecordSetRowCount" here is a typical use for it.
db = OpenRecordSet("Name of data sheet")
Var = RecordSetRowCount(db)
It works great!
================================================
"WaitForExists" also works good. Example:
<Lg = Window("Scr Name").EditBox("editbox3").WaitForExists(NNN)
If Lg = "False" then>
Notice it returns either "True" or "False"
I requested an "IfExists" Statement but they said to use this instead.
===============================================
The CheckExists" looks like this now:
<Window("Scr Name").EditBox("editbox3").CheckExists(True, "")>
If the window does not exist the run is terminated. Change the True to False and it gives a warning only.
===============================================
To get data from and object here is one way using the latest version:
<Num = Window("Scr Name").HTMLLink("Data").Property("Inner Text")>
The HTMLLink is the Control type.
===============================================
Than's about it for now.
Good Luck!
Thought for the day: "ARRAYS ARE COOL!"