Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
Open <filename> For Output Access Write As #1
Print #1, "Cust ID: " & view.fields("IDCUST").value & vbCrLf
Print #1, "etc." & vbCrLf
...
Print #1, "etc."
Close #1
view.init 'initializes the view to default values.
view.order=0 'order the view by the first indexed field.
view.browse "", true 'no filter, return all records
'True: return records in forward order
'fetch retuns true if record exists and moves to the
'next logical record in the view
do while view.fetch
... 'do whatever
loop