I've just now no english designer client installed).
you need to set your "another field" to "update fields after field update" (second tab on the field's properties - I've just now no english designer client installed). This works even in a layout region.
Here is the original R5 english client checkbox name ;)I have forgot about this trick .... unfortunately this not help me because my field (that I need to refresh it) isnt' computed based on a formula... anyway, 10x for your help.
"Refresh fields on keyword change"
PS: Are you from Romania ? The very best collegues I ever worked with (until now ;-) came from Timisoara. I hope that we'd find a new common project in the very next time ;-)yeap.. I have from Romania ... more exactely from Timisoara :D
Sub Click(Source As Button)
Dim ws As New notesuiworkspace
Dim uidoc As notesuidocument
Dim doc As notesdocument
Dim popup As notesdocument
Dim s As New NotesSession
Dim index As Integer
Set uidoc=ws.currentdocument
Set doc=ws.currentdocument.document
Dim dbcrt As NotesDatabase
Set dbcrt=s.currentdatabase
path$=dbcrt.FilePath
final_path$ = Leftbp$(path$, Len(path$)-12)
Set db=New notesdatabase (dbcrt.server,final_path$ + "users.nsf")
Dim temp As Variant
org=doc.k_org(0)
Set v=db.getview("(All"+Left (org$,2)+")")
Set user_doc=v.getfirstdocument
index=0
While Not user_doc Is Nothing
Redim Preserve strArray(index) As String
strArray(index)=user_doc.name(0)
index=index+1
Set user_doc=v.getnextdocument(user_doc)
Wend
doc.users_list=strArray
Call uidoc.refresh
End SubThat you are from Timisoara, too, lets me think again: We are living on a small planet ;)you have right ;D
I need to refresh automatically the content of the users_list field depends of the k_org value.Does this mean, if the user clicks on the radiobutton, then the above mentioned code (sub click...) should be executed?
when I select item3, the form refresh the list for the last item accesed (item2); if I select item4, the form refresh the list for item3 and so on even I use postrecalc-event or the exiting-event ... ???ZitatI need to refresh automatically the content of the users_list field depends of the k_org value.Does this mean, if the user clicks on the radiobutton, then the above mentioned code (sub click...) should be executed?
If so, maybe you could use the postrecalc-event!? Or the exiting-event of the radiobutton-field (not that perfect).