Normal Topic Totally Isolating Users (Read 449 times)
UPaul42
Junior Member
Members
**
Offline


been a Q&A user/programmer
since version 2.0

Posts: 57
Location: Broad Brook CT
Joined: Jul 23rd, 2003
Totally Isolating Users
Nov 7th, 2005 at 4:55pm
Print Post Print Post  
I'm trying to keep users out of almost everything without using security.

I'm using a seperated icon with the properties set to open the correct database.

I have the command area closed and I have a form called Main_Menu.

I want the Main_Menu form to open immediately.

I think I'm supposed to use something like: SetDefaultTab("Add Data!Main_Menu!").

If this is correct, where do you put this?

If not correct, what should I be trying to do.
  

&&http://www.lantica.com/images/sespro_badges/sespro3.gif&&Paul Anderson&&President&&Systems-Consulting&&89 Main Street, Broad Brook CT 06016&&(860) 627-5393&&Sales@Systems-Consulting.com
Back to top
IP Logged
 
The Cow
YaBB Administrator
*****
Offline



Posts: 2530
Joined: Nov 22nd, 2002
Re: Totally Isolating Users
Reply #1 - Nov 7th, 2005 at 5:23pm
Print Post Print Post  
In Application Open programming, use:
Code
Select All
SetDefaultTab("Add Data Main_Menu")
 



That will cause the user to see the Main_Menu form should they close any other form (and the Main_Menu tab exists). To cause it to open in the first place, use SelectTreeItem, also from Application Open programming.
  

Mark Lasersohn&&Programmer&&Lantica Software, LLC
Back to top
IP Logged
 
UPaul42
Junior Member
Members
**
Offline


been a Q&A user/programmer
since version 2.0

Posts: 57
Location: Broad Brook CT
Joined: Jul 23rd, 2003
Re: Totally Isolating Users
Reply #2 - Nov 7th, 2005 at 5:58pm
Print Post Print Post  
Thank you Mark. It works as planned.
  

&&http://www.lantica.com/images/sespro_badges/sespro3.gif&&Paul Anderson&&President&&Systems-Consulting&&89 Main Street, Broad Brook CT 06016&&(860) 627-5393&&Sales@Systems-Consulting.com
Back to top
IP Logged