Atozed Forums

Full Version: How get current active form name
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
so for i doing something like this 
Webapplication.create('FormName').show --> in form1
but i want to use form1 name in form2 like this way
TiwForm1.release

I found my solution after posting this
maybe someone need this
TIWAppForm(WebApplication.ActiveForm).Release;
TiwForm1 is the class, not the instance. You can't free a class, because it doesnt exist as an instance.