9/19/2026 4:05:49 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 general administration topics for SalesLogix (including LAN & remote topics). View the code of conduct for posting guidelines.
|
|
|
|
Refresh custom mainview when data changed in other custom mainview
Posted: 27 Jun 07 8:26 AM
|
| I have custom mainview1 and custom mainview2. MV2 gets some readonly data from MV1 on its detail screen. When data is changed on MV1 and MV2 is open underneath it, the data does not refresh. Is there a way to refresh MV2 to reflect changes on MV1 without the user needing to perform a refresh of some sort? Thanks |
|
|
|
Re: Refresh custom mainview when data changed in other custom mainview
Posted: 28 Jun 07 12:23 PM
|
You could do something like this:
For i = 0 To Application.MainViews.Count - 1 If Application.MainViews.Item(i).Caption = "(The Caption of Your View)" Then Application.MainViews.Item(i).Refresh Next
You could look at the other properties and use something other than caption to identify your readonly view. Hopefully this post is more helpful than the datagrid one that I responded to... |
|
|
| |
|
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!
|
|
|
|
|
|
|
|