Hi this so simply code is not working, and it's driving me crazy!
When my app starts I open a frame and a response window which is my login. What I want is the user enter the correct login, and then close the window, but I cannot close it. I don't know what am I doing wrong. Even if I open just my login window, this doesn't close.
Here is my code:
//In the open event of my app:
open(w_base)
open(w_login)
//in the ok button to submit the login in the w_login window (which is response):
close(w_login)
So simply but doesn't work. Even if I just open the w_login on the open event of my app, this is not closing! I already put some messageboxes to see what is happening inside, but nothing. when I put:
open(w_base)
open(w_login)
messagebox("test", "close it!!")
in the open event of my app, the messagebox is never shown. What is happening here?
When my app starts I open a frame and a response window which is my login. What I want is the user enter the correct login, and then close the window, but I cannot close it. I don't know what am I doing wrong. Even if I open just my login window, this doesn't close.
Here is my code:
//In the open event of my app:
open(w_base)
open(w_login)
//in the ok button to submit the login in the w_login window (which is response):
close(w_login)
So simply but doesn't work. Even if I just open the w_login on the open event of my app, this is not closing! I already put some messageboxes to see what is happening inside, but nothing. when I put:
open(w_base)
open(w_login)
messagebox("test", "close it!!")
in the open event of my app, the messagebox is never shown. What is happening here?