Once again, this problem refers to the 3rd party software we are using with our paradox application. I use the following code to try and close the application from Paradox, but for some unknown reason it doesn't work:
t = ":reportsDB:Windows.db"
sleep(13000)
enumWindowHandles(x,"#32770")
forEach str in x
li = longInt( str )
winSendMessage( li, WM_CLOSE, 0, 0 )
endForEach
Any ideas why it's not working?
t = ":reportsDB:Windows.db"
sleep(13000)
enumWindowHandles(x,"#32770")
forEach str in x
li = longInt( str )
winSendMessage( li, WM_CLOSE, 0, 0 )
endForEach
Any ideas why it's not working?