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.
Private Sub Command3_Click()
Me.Text1.SetFocus
Dim ARR() As String
Dim ITM As Long
Dim iFileNo As Integer
iFileNo = FreeFile
Close #iFileNo
Open App.Path & "\SCHEDE_PS\SCHEDEPS.txt" For Output As #iFileNo
With Me.RichTextBox1
ARR = Split(.Text, vbCrLf)
For ITM = 0 To UBound(ARR)
Print #iFileNo, ARR(ITM)
Next ITM
End With
Close #iFileNo
End Sub