Hi,
I've made the following event that launch 'section.exe' to generate a value, but before I get the value, it process right away the 'fileOpen' after the shell command. With this, I could not get the right value.
Code:
Sub Button1_click
Shell("section.exe")
FileOpen (c1,AppPath&"\SectionSelected.text",cRead)
lbsection.Text= FileRead (c1)
FileClose(c1)
End Sub
What is the right way?... or effective solutions?
Thanks,
Rioven