11/27/2024 12:23:10 AM
|
|
slxdeveloper.com Community Forums |
|
|
|
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!
Forum to discuss writing script in Architect plugins for SalesLogix & general SalesLogix customization topics (for Windows client only). View the code of conduct for posting guidelines.
|
|
|
|
Picklist window width
Posted: 16 Jan 07 6:36 AM
|
fiogf49gjkf0d Hi, Is there a way to change the default window size when selecting a picklist value?
I have created a new picklist which has a code and item description. On the opportunity detail a value can selected from this picklist. I have used popupcolumns = 6 so that both the code and item description are displayed. However my descriptions are long and therefore the picklist popup window by default truncates the description. Is there a way I can make it display in a larger window by default, rather than the user having to resize the window each time? |
|
|
|
Re: Picklist window width
Posted: 16 Jan 07 8:38 AM
|
fiogf49gjkf0d You can code the picklist rather than using an object.
dim oPick Set oPick = Application.PickLists.Item("").Select(nPopupColumns, "", nLeft, nTop, nWidth, nHeight) 'In your case, nPopupColumns = 6. Change the other n parameters to set the position and dimensions to what you want. 'To get the value out of your picklist, continue with...
If Not oPick Is Nothing Then If oPick.Count > 0 Then strMyString = oPick.Item(0) 'Now do what you want with strMyString End If End If
|
|
|
|
You can
subscribe to receive a daily forum digest in your
user profile. View the site code
of conduct for posting guidelines.
Forum RSS Feed - Subscribe to the forum RSS feed to keep on top of the latest forum activity!
|
|
|
|
|
|
|
|