I'm having problems writing to a seqential access file in VB 6
My.Computer.FileSystem.WriteAllText(path & "checkinfo.txt", _
ourCheck.employee.PadRight(20) _
& ourCheck.check.ToString("N2").PadLeft(10) _
& ourCheck.chkdate.ToString("N2").PadLeft(10) _
& ourCheck.total.ToString("N2").PadLeft(10) _
& ControlChars.NewLine, True)
my debugging errors are 'padleft' is not a member of char...
any advise?