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]Option Explicit
Private Declare Function BeginPath Lib "gdi32" (ByVal hdc As Long) As Long
Private Declare Function EndPath Lib "gdi32" (ByVal hdc As Long) As Long
Private Declare Function StrokeAndFillPath Lib "gdi32" (ByVal hdc As Long) As Long
Private Sub Command1_Click()
BeginPath Form1.hdc
Form1.Print "Hello"
EndPath Form1.hdc
StrokeAndFillPath Form1.hdc
End Sub
' Set up an appropriate font and fill style
Private Sub Form_Load()
Form1.FillStyle = vbUpwardDiagonal
Form1.FontName = "Arial Bold"
Form1.FontSize = 36
End Sub[/blue]