BroSki23454
Technical User
- Jan 20, 2014
- 3
Hello im getting an error that I cant seem to find the solution for and was hoping someone here could help me out.
The error message is a type mismatch and has to do with the Wscript.Echo line, thanks for your help
.
The error message is a type mismatch and has to do with the Wscript.Echo line, thanks for your help
.
Code:
For i = 0 To UBound(tblEmployee)
WScript.Echo vbNewLine & "Employee ID:", tblEmployee(i)(ID) & vbNewLine & _
"Last name:", tblEmployee(i)(FNAME) & vbNewLine & _
"First name:", tblEmployee(i)(LNAME) & vbNewLine & _
"Hours:", tblEmployee(i)(HOURS) & vbNewLine & _
"Rate:", tblEmployee(i)(RATE) & vbNewLine & _
"Email:", tblEmployee(i)(EMAIL) & vbNewLine & _
"Pay:", tblEmployee(i)(PAY) & vbNewLine
Next