user login


ngoodman

Recommended Posts

The simplest? Just create a page that is marked as the starting page (usually Page_0). In the button, select Quick Sequence action and put code like this:

private string password = system.entrydialog("enter your password")
if (!isempty(password))
   if (password == "mypassword")
	  page.strCurrentPage = "mainAppPage"
   else
	  system.messageBox("Invalid password!")
   endif
endif

Link to comment
Share on other sites

Archived

This topic is now archived and is closed to further replies.