Level Extreme platform
Subscription
Corporate profile
Products & Services
Support
Legal
Français
Need Some Help
Message
General information
Forum:
Visual Basic
Category:
Coding, syntax & commands
Title:
Need Some Help
Miscellaneous
Thread ID:
00603741
Message ID:
00603741
Views:
61
I want to open a form by passing the name of the form as a string
to a function. I have:


Public Sub LaunchForm(sFormName As String)

  Dim oWinObj As New WindowObj
  Dim oForm As Form

  Set oWinObj = New WindowObj

  oForm = oWinObj.OpenForm(sFormName)

End Sub


oWinObj is in a class:


Public Function OpenForm(sFormName As String) As Form

  Dim oForm As Form

  Set oForm = Forms.Add(sFormName)
  oForm.Show

  OpenForm = oForm

End Function


Now it I don't try to return the instance of the form (oForm), it
works fine. In other words, if the function above is defined as
a Sub instead of a Function.

I get the error 'Invalid use of property'

Can someone help please?
Everything makes sense in someone's mind
public class SystemCrasher :ICrashable
In addition, an integer field is not for irrational people
Next
Reply
Map
View

Click here to load this message in the networking platform