VB Load By Name



techstore
LQ Net Home

























LoadByFormName

print    Printer Friendly Page

  Open any form whose name is passed as a parameter.

  Returns a TRUE value if there were no errors.

Public Function LoadFormByName(frmName As String) As Boolean
Dim f As Form
On Error Resume Next

Set f = Forms.Add(frmName)

If Err.Number = 0 Then
f.Show
LoadFormByName = True
End If
End Function








   Today's News





Office Depot, Inc

Tech Depot - An Office Depot Co.



Overstock.com, Inc.

























Copyright © 2006-2008, LQ Systems,Inc. All rights reserved.