A
Aaron_nesbitt
Hi,
Is there any way to convert a sting (Pulled from a data tabel) into
VB.NET code?
The original case statment looked like this:
Select Case e.Link.ItemName
Case "frmNEWFORM"
Dim f As frmNEWFORM
f = New frmNEWFORM
f.init()
I would ideally like to have the "frmNEWFORM" held in a database so I
can maintain my menu system from the database.
Is This Possible?
Sub OpenForm(ByVal e As String) 'e is the name of the link being
clicked
For Each ComMenu.ROW In ComMenu.TABLE.Rows
If e = ComMenu.FIELDS.sysdesc.ToString Then
...
...
...
End If
Next
Is there any way to convert a sting (Pulled from a data tabel) into
VB.NET code?
The original case statment looked like this:
Select Case e.Link.ItemName
Case "frmNEWFORM"
Dim f As frmNEWFORM
f = New frmNEWFORM
f.init()
I would ideally like to have the "frmNEWFORM" held in a database so I
can maintain my menu system from the database.
Is This Possible?
Sub OpenForm(ByVal e As String) 'e is the name of the link being
clicked
For Each ComMenu.ROW In ComMenu.TABLE.Rows
If e = ComMenu.FIELDS.sysdesc.ToString Then
...
...
...
End If
Next