I have a frame control called tupp_times_frame. I would have thought that the following code would change the text
tupp_times_frame = 'Frame - changed text'
guisetctlvalue('tupp_times_frame')
but nothing seems to happen. I also tried the following
temp = 'Frame - changed text'
guisetctlvalue('tupp_times_frame', temp)
Am I doing something wrong ?
Yes - I should have followed the link talking about Group boxes. The correct code is:-
temp = 'Frame - changed text'
guiaddctltext('tupp_times_frame', temp)
|