Login / Register  search  syndication  about

          Jason Buss' Blog

Jason Buss on SalesLogix development & customization, SQL, and more.

SalesLogix Basics 6 - Tab Control

The tab control is very simple to use, yet gives you another way to organize controls on new views you create in SalesLogix.

 

The tab control will act as a control container, similar to a panel control, but with separate containers for each defined 'tab' in the control.  The 'Tabs' Property of the control launches the Tab Control property page which allows you to define each individual tab you would like in the control.  To add other controls to a particular tab, you need to change the ActiveTabIndex property for the control in Architect, then when the correct tab has focus, simply add controls to the tab as you would do for any other control container.  When you are finished, make sure you set the ActiveTabIndex property back to the index of the tab you want to initially display in the control.

In addition, you can manipulate existing tabs in the control via code.  Most of the properties for the tab control apply to the control as a whole, but you can use the tab property to manipulate individual tabs by index number.  For example, say you wanted to display certian tabs based on some criteria:

If <condition> = True Then

       TabControl1.Tabs(0).Visible = True

       TabControl1.Tabs(1).Visible = False

Else

        TabControl1.Tabs(0).Visible = False

        TabControl1.Tabs(1).Visible = True 

End If

In this example, if the condition is met the first tab will be shown and the second will be hidden with the opposite being the case if the condition is not met.

That pretty much covers the basic usage of the Tab Control in SalesLogix.  I hope you found this overview helpful! Smile

What's This?
  
Bookmark and Share

About Jason Buss

   Jason is a senior application developer with Customer FX.



Related Content
   Can the SalesLogix Application architect's build process be automated?
Can the SalesLogix Application architect's build process be automated, or called from a batch file? W
Posted on May 16, 2013 by SalesLogix Support to SalesLogix Questions & Answers
 
   Is it possible to Sync SalesLogix Attachments based on Account Manager?
Is it possible to only sync SalesLogix Attachments from the accounts where the user is the account manag
Posted on May 15, 2013 by SalesLogix Support to SalesLogix Questions & Answers
 
   SalesLogix Remote Library Management
Is it possible to log into a SalesLogix Remote Database as Admin and Manage the Library Files?
Posted on May 14, 2013 by SalesLogix Support to SalesLogix Questions & Answers
 
   Demystifying SalesLogix Web: Dashboards and Analytics Tools
Join us for a free webinar, Wednesday, May 15th at 2pm CDT. The SalesLogix Web dashboards and analytics
Posted on May 08, 2013 by Brianna Tinjum to The Inbox
 
   What is the Difference Between Left Joins and Inner Joins in SalesLogix?
Question: What is the difference between Left joins and Inner joins in SalesLogix?
Posted on May 07, 2013 by SalesLogix Support to SalesLogix Questions & Answers
 
Comments

No Comments

Leave a Comment

(required)  
(optional)
(required)  
Add
All contents Copyright © 2013 Customer FX Corporation
Customer FX Corporation
2324 University Avenue West, Suite 115
Saint Paul, Minnesota 55114
Tel: 800.728.5783

  Follow @CustomerFX on twitter
Follow the best news, tips, and articles
  Subscribe to Customer FX on youtube
Watch SalesLogix tutorial videos from Customer FX
Login / Register