QB64.org Forum
Active Forums => QB64 Discussion => Topic started by: IronMan on November 03, 2020, 03:46:11 pm
-
I am needing a way for a QB64 / InForm App to look and see if a file exist every 5 minutes. The app will remain running on the Task Bar, and if the file is detected, I need the app to automaticly execute Button1. Does any one know how this can be accomplished, or have a snippet to share?
-
do that in sub beforeupdatedisplay.
-
do that in sub beforeupdatedisplay.
Works perfect.
Thank you.
-
Works perfect. but my progress bar does not function when I do this. If I click the button1 manually everything works, and everything works with the
1.IF _FILEEXISTS("yourfile") THEN
2.__UI_Click Button1
3.END IF
perfectly but does not show my progress bar like it does when you manually click button1. But it does everything else that button1 does when clicked.
-
Share the whole package (frm + BAS) so I can look deeper.