IFindProjectsLike Method |
Namespace: SuperOffice.COM.SuperOfficeDB
ProjectsLike
This text may be copied to the notepad, and saved as a *.vbs file. Remember to change the login information.
This will find all projects that start with the SoundEx version of Super
dim objprojects set objso = CreateObject("superofficedb.database") If not (objSO is nothing) Then objso.login "<USERID>", "<password>" set objprojects = objso.find.projectslike("super") set proj = objprojects.getfirst while not objprojects.eof item = proj.name msgbox item set proj = objprojects.getnext wend else msgbox "could not log in" end if set objso = nothing