This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.
Pages: [1]
1
The Rest - Ask For Help / Add text to a a map (NetMapsHERE)
« on: November 02, 2017, 05:37:03 AM »
How to add a textfield to the map on a specific location (long/lat) ?
What method to use
(just like the SetIcon method to add an icon)
What method to use
(just like the SetIcon method to add an icon)
2
Web Server - Ask For Help / Re: Open windows after using NetWebClient
« on: October 11, 2016, 01:06:48 AM »
Found it !
It's the "NetTalk DLL WinSock Call Back Window" that stays open.
Closed it with NetCloseCallBackWindow() after the ThisWebClient.Kill()
It's the "NetTalk DLL WinSock Call Back Window" that stays open.
Closed it with NetCloseCallBackWindow() after the ThisWebClient.Kill()
3
Web Server - Ask For Help / Open windows after using NetWebClient
« on: October 10, 2016, 03:38:57 PM »
I have a program that detects open windows when performing a specific task.
I added a procedure that sends some json data with netWebClient.
After that call there is an additional window left open (hidden?).
How can I close it or how can I detect it?
The code to check open windows:
!Window1 &WINDOW
!Window2 &WINDOW
WO# = false
Window1 &= System{PROP:Target}
loop J# = 1 to 64
SetTarget(,J#)
Window2 &= System{PROP:Target}
if not Window2 &= Window1
WO# = true
break
end
end
SetTarget()
if WO# = true
message('open window detected')
end
I added a procedure that sends some json data with netWebClient.
After that call there is an additional window left open (hidden?).
How can I close it or how can I detect it?
The code to check open windows:
!Window1 &WINDOW
!Window2 &WINDOW
WO# = false
Window1 &= System{PROP:Target}
loop J# = 1 to 64
SetTarget(,J#)
Window2 &= System{PROP:Target}
if not Window2 &= Window1
WO# = true
break
end
end
SetTarget()
if WO# = true
message('open window detected')
end
Pages: [1]