Database
vsdata.asc
Associated article: The VSData Database Engine
Tags: Database
Source code examples accompanying the article by Michiel de Bruijn in which he uses VideoSoft's VsData database engine--an engine implemented as a single ActiveX control--and Visual Basic to build a catalog application for a collection of MIDI files. Also see VSDATA.ZIP.
_The VsData Database Engine_
by Michiel de Bruijn
Example 1:
VsData1.CreateDatabase _
"MIDIfiles", "$$$%FWD$"
Example 2:
For Fld% = 1 To 7
VsData1.Field(Fld%) = _
txtField(Fld% - 1)
Next
VsData1.Update
Example 3:
VsData1.SearchString = Chr(34) & _
Search$ & Chr(34) & " ...


