What will be the FWH equivalent of the below given VB declaration
- Code: Select all Expand view
Dim WithEvents rs As ADODB.Recordset
I know the regular one ie
- Code: Select all Expand view
oRs:=CreateObject("ADODB.RecordSet")
But what about the parameter WithEvents ?
Will be very useful while developing application in WAN network.
For eg: If you are loading huge data to xBrowse or any control, User will not feel the time delay by using "ADODB.Recordset withEvents" because Initially few records will be loaded into the xBrowse and rest of the records will be fetched in the background. That's what I understand.
I hope xBrowse will be able to handle this type of RecordSet
A Spanish wensite link for more info
http://www.recursosvisualbasic.com.ar/h ... ogreso.htm
Regards
Anser