Hello, I'm automating part of the note taking ability of my old bad POS, I managed to do much of the heavy lifting in the past weeks, I can finally do everything i want and more.
Now I have a form with two buttons that expand the form to show a note taking beast that can lets us escape the hell of the one way editing the POS actually support (no cursor just delete. want to change the time on that order better delete everything and start the note from scratch, well not anymore)
Now i'm stuck, my form shows up as two buttons over the POS window, however I need it to go away when I minimized the POS or switch to a different page or application, I was able to do so by doing a while loop, it worked badly as it will repeat the show command infinitely and if i break the loop then there's no way to restart the loop if the user didn't interact with the buttons directly.
I have many ways I could know when controls are visible and it worked, I just don't have a way of constantly checking for this without straining the CPU, I know if I work it somehow I could do a while loop that can work, but it'll be CPU intensive. (Bad POS entails BAD PC)
Should I make another form that does the loop? can I make the loop slower ?
I'm using VB.net VS 2017 with AutoitX dll.
EDIT: Hello anyone who searched for this, if you're and idiot like me and forgot that Timers exist then this will jog your memory
Add a timer to your form, set the timer for 1 sec intervals (dealers choice)
start your timer (within form load or manually)
Timer1.start()
then double click the timer to create a Timer tick (for my case the control visibility test i want to make each second)
it should look something like this :
Private Sub timer1_Tick(sender As Object, e As EventArgs) Handles timer1.Tick
dim visibleform = ait.ControlCommand("my app", "", "[NAME:wacontact]", "IsVisible", "")
If visibleform = 0 Then
Me.Hide()
ElseIf visibleform = 1 And Me.Visible = False Then ' to prevent the timer ticks from interupting any sendkeys or something we put two conditions.
Me.Show()
End If
End Sub
remarks: ait. is the call I set for Autoit DLL.