07-04-2008, 08:47 AM
sorry to ask but...
I found the command from as in
str s = "notepad"
str ss.from(s ".exe")
now ss is "notepad.exe"
The same with +:
ss=s
s+".exe"
I have a dialog with 3 edit boxes, what I want to do is getwintext from the first edit and also getwintext from the second edit add them together and setwintext to the third edit, my question is there a simple way to do this , I have tried using the .from command and it is not working like I want it to! thanks
str a.getwintext(id(3 win("my media" "#32770")))
str b.getwintext(id(4 win("my media" "#32770")))
str c.setwintext(id(5 win("my media" "#32770")))
I was thinking something like this but not working!
str a.getwintext(id(3 win("my media" "#32770")))
str b.getwintext(id(4 win("my media" "#32770")))
int aa
aa=a
int bb
bb=b
int i
i= (aa bb)
i.setwintext(id(5 win("my media" "#32770")))
I found the command from as in
str s = "notepad"
str ss.from(s ".exe")
now ss is "notepad.exe"
The same with +:
ss=s
s+".exe"
I have a dialog with 3 edit boxes, what I want to do is getwintext from the first edit and also getwintext from the second edit add them together and setwintext to the third edit, my question is there a simple way to do this , I have tried using the .from command and it is not working like I want it to! thanks
str a.getwintext(id(3 win("my media" "#32770")))
str b.getwintext(id(4 win("my media" "#32770")))
str c.setwintext(id(5 win("my media" "#32770")))
I was thinking something like this but not working!
str a.getwintext(id(3 win("my media" "#32770")))
str b.getwintext(id(4 win("my media" "#32770")))
int aa
aa=a
int bb
bb=b
int i
i= (aa bb)
i.setwintext(id(5 win("my media" "#32770")))