Simple question I think, I need a way to do this instead of using oForm.Reload and messing the navigation.
oForm = oDoc.DrawPage.Forms.getByName("MainForm")
Text = oForm.getByName("textbox")
Text.Reload()
Basically this would reload only one control of the form and not the whole form. Is there a way to write this macro how I want it?
I tried the way it is written on the example but unfortunately it didn’t work.