Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
[blue]Public Declare Function EmptyClipboard Lib "user32" () As Long
Public Declare Function OpenClipboard Lib "user32" (ByVal hwnd As Long) As Long
Public Declare Function CloseClipboard Lib "user32" () As Long[/blue]
[blue]Public Sub ClearClipBoard(frm As Form)
OpenClipboard frm.hwnd
EmptyClipboard
CloseClipboard
End Sub[/blue]
[blue] Call ClearClipBoard(Me)[/blue]