CastleSoft Posted October 22, 2012 Posted October 22, 2012 How do you pass a query string to a UniGui form ? I would like to be able to do something like: dashboard.com/myprojects/id=123 or dashboard.com/myprojects/myproject.dll?id=123 Thanks
estrify Posted October 22, 2012 Posted October 22, 2012 How do you pass a query string to a UniGui form ? I would like to be able to do something like: dashboard.com/myprojects/id=123 or dashboard.com/myprojects/myproject.dll?id=123 Thanks Please, take a look to the demo URLParameters. It might contain the answers you need. Regards,
CastleSoft Posted October 23, 2012 Author Posted October 23, 2012 Please, take a look to the demo URLParameters. It might contain the answers you need. Regards, Thanks... I just did, but I get an 'Undeclared identifier: Parameters' when I try to use similar code ?? UniApplication.Parameters.Values['projectID']; My uses clause looks the same ? Any ideas ??
estrify Posted October 23, 2012 Posted October 23, 2012 Thanks... I just did, but I get an 'Undeclared identifier: Parameters' when I try to use similar code ?? UniApplication.Parameters.Values['projectID']; My uses clause looks the same ? Any ideas ?? ? We use it without problems. Could it be a simple namespace problem?. UniApplication is a function to a TUniGUIApplication class and it is under a namespace called Uniguiapplication. Regards,
CastleSoft Posted October 24, 2012 Author Posted October 24, 2012 ? We use it without problems. Could it be a simple namespace problem?. UniApplication is a function to a TUniGUIApplication class and it is under a namespace called Uniguiapplication. Regards, Yes namespace related. uniGUIApplication.UniApplication.Parameters[] works fine.
Recommended Posts