D
DS
I have this in a module.
Public Declare Function ShowCursor Lib "user32" (ByVal bShow As Long) As
Long
Public Sub HideTheCursor()
Call ShowCursor(0)
End Sub
Public Sub ShowTheCursor()
Call ShowCursor(-1)
End Sub
And on load of the Startup form
Dim TU as Boolean
TU =Dllokup("TerminalTouch","tblTerminal","TerminalName =
Environ(""ComputerName"")")
If TU = True Then
Call HideTheCursor()
Else
End If
This isn't hiding the cursor. Any help is appreciated.
Thanks
DS
Public Declare Function ShowCursor Lib "user32" (ByVal bShow As Long) As
Long
Public Sub HideTheCursor()
Call ShowCursor(0)
End Sub
Public Sub ShowTheCursor()
Call ShowCursor(-1)
End Sub
And on load of the Startup form
Dim TU as Boolean
TU =Dllokup("TerminalTouch","tblTerminal","TerminalName =
Environ(""ComputerName"")")
If TU = True Then
Call HideTheCursor()
Else
End If
This isn't hiding the cursor. Any help is appreciated.
Thanks
DS