hi, to all
i was wondering if some one got this problem before and if he had any
solution
i got a query:
SELECT MSysObjects.Nam e, MSysObjects.Typ e, GETFRMCAPTION([Name]) AS
Expr1
FROM MSysObjects
WHERE (((MSysObjects. Type)=-32768));
and this function to get form caption
Public Function GETFRMCAPTION(F RMNM As String) As String
test = "Forms" & "!" & FRMNM & "." & "Caption"
GETFRMCAPTION = Eval("Forms" & "!" & FRMNM & "." & "Caption")
End Function
but it will not work
the final result i want to get the form caption in the the field expr1
in the query to be added later in the security form of the application
i will be more than thankfull if any one could help me in this problem
many thanks and regards in advance
i was wondering if some one got this problem before and if he had any
solution
i got a query:
SELECT MSysObjects.Nam e, MSysObjects.Typ e, GETFRMCAPTION([Name]) AS
Expr1
FROM MSysObjects
WHERE (((MSysObjects. Type)=-32768));
and this function to get form caption
Public Function GETFRMCAPTION(F RMNM As String) As String
test = "Forms" & "!" & FRMNM & "." & "Caption"
GETFRMCAPTION = Eval("Forms" & "!" & FRMNM & "." & "Caption")
End Function
but it will not work
the final result i want to get the form caption in the the field expr1
in the query to be added later in the security form of the application
i will be more than thankfull if any one could help me in this problem
many thanks and regards in advance
Comment