The Forums on slxdeveloper.com are now retired. The forum archive will remain available for the time being. Thank you for your participation on slxdeveloper.com!
|
|
list view 
Posted: 12 Aug 07 5:24 AM
|
Dear all
We built some custom module in slx 7.0 and we are having a form like insert tickets. I am having small requirement. After user filled the entire information on that form for insertion when ever he clicked on o.k button he need to switch to a list view of one specified group. I have written code to switch over to main view which will show that record but i need to switch over to list view of specified group
Pls help any body if you know the solution
vamsi
|
|
|
| |
|
Re: list view 
Posted: 14 Aug 07 10:42 AM
|
Do you know the name of the group? If so, try this (replace *GroupNameHere* with the name of the group):
Application.UserOptions.SetAsString "System|Contact Details", "MainViewMode", 2, False Application.BasicFunctions.SetCurrentClientGroup "Contact:*GroupNameHere*" |
|
|
| |
| |
|