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.
Public invoiceNumber As Int16
Public invoiceFile As String = System.Windows.Forms.Application.StartupPath & "invoicenumber.txt"
Public Sub openInvoiceNumber()
Dim FN As Int16 = FreeFile()
FileOpen(FN, invoiceFile, OpenMode.Input)
Input(FN, invoiceNumber)
FileClose(FN)
End Sub
Public Sub saveInvoiceNumber()
Dim FN As Int16 = FreeFile()
FileOpen(FN, invoiceFile, OpenMode.Output)
Write(FN, invoiceNumber)
FileClose(FN)
End Sub