Here is some of my code and I am really lost .
Public Structure sPayroll
Public empNum2 As Integer
Public pDate As String
Public gross As Double
Public wHolding As Double
Public FICA As Double
Public net As Double
End Structure
I want to read data from a Payroll.txt file into this structure. How do I do this.
Public Structure sPayroll
Public empNum2 As Integer
Public pDate As String
Public gross As Double
Public wHolding As Double
Public FICA As Double
Public net As Double
End Structure
I want to read data from a Payroll.txt file into this structure. How do I do this.