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 Function basGrabFile(FilIn As String) As String
'Michael Red 3/3/2003
'Sample Usage: ? basGrabFile("C:\MsAccess\DrawArcsInVB.Txt")
'Note the Arg [FilIn] is the FULLY QUALIFIED PATH of the Source _
and the entire text is returned to the caller [prog | procedure]
Dim MyFil As Integer
Dim MyTxt As String
Dim MyPrts() As String
Dim MyPrtRec() As String
'Just grab the Stuff
MyFil = FreeFile
Open FilIn For Binary As #MyFil
MyTxt = String(LOF(MyFil), " ")
Get #MyFil, 1, MyTxt
Close #MyFil
basGrabFile = MyTxt
End Function