Hi,
Can anyone help me understand why I can't update/show the result of Dialog.FileBrowse on a CTRL_EDIT_01 with DlgEditField.SetProperties? I have tried many configurations for this to work but its impossible (for me)
I keep getting an error saying it must be a string or some times no errors but nothing happens.
Thanks for the help
Can anyone help me understand why I can't update/show the result of Dialog.FileBrowse on a CTRL_EDIT_01 with DlgEditField.SetProperties? I have tried many configurations for this to work but its impossible (for me)
I keep getting an error saying it must be a string or some times no errors but nothing happens.
Code:
ClientZIPLocation = Dialog.FileBrowse(true, "Locate File", _SourceFolder, "Client (Client*.zip)|Client*.zip|", "", "zip", false, true); DlgEditField.SetProperties(CTRL_EDIT_01, {Text = SessionVar.Expand(ClientZIPLocation)});
Comment