quote:
Originally posted by LiMãØ
can you show me an example???
it'd be something like this: (now i don't have VB here, so this will be a mix between VB code and pseudocode)
' inside parsecommand...
not_yet=true ' this is a global variable
form1.show vbmodal, screen.activeform
while not_yet
wend
sResult = Form1.text1.text
return
'inside form1...
sub commandbutton_enter_onclick()
not_yet = False
end sub
that's all, however that's a dodgy thing of doing it. There are much better ways (and also more complicated) but that should work