Bruce,
I'm trying to conditionally display two tabs. I have a Jobs database that allows applicants to create an account and then log on to view jobs. Initially, applicants go to the main menu and select "Create Account". I have the account form called without a browse (browseless form technique) by using 'Insert_btn=Insert' as the parameter to the menu call.
On this form I have numerous tabs, two of which I want to display conditionally. One tab is labeled 'Create Password', the other is "Change Password'. I want the create password tab to display when creating a new account, i.e. an Insert. I want the change password tab to display when the user edits thier account info, i.e. a Change.
So, on the Create Password tab, I placed the following in the Tab Condition field:
p_web.formsettings.action = Net:InsertRecord
and on the Change Password tab, the condition is:
p_web.formsettings.action = Net:ChangeRecord
What I see is that the Change Password tab is displayed but not the Create Password tab. This leads me to the conclusion that when I use the "browseless form" technique, the form actually opens in change mode. Assuming that conclusion is correct, how can I accomplish this?
Thanks,
Jeff King