Gumma Posted June 7, 2011 Posted June 7, 2011 I am probably going to embarrass myself here, but... why isn't this working: FileWriteLine($file,"fTravelPlans" & "{TAB}" & "fCellPhone" & "{TAB}" &"fClinicFax" & "{TAB}" & "fClinicPhoneNumber" & "{TAB}" & "fCurrentMedicalHistory" & "{TAB}") My output looks like this: fTravelPlans+{TAB}fCellPhone{TAB}fClinicFax{TAB}fClinicPhoneNumber{TAB}fCurrentMedicalHistory{TAB} instead of adding a tab as I need. I am guessing I'm missing something really easy here... so maybe someone can help me! Thanks
MrMitchell Posted June 7, 2011 Posted June 7, 2011 (edited) Try @TAB instead of {TAB}, don't put quotes around it either. Edited June 7, 2011 by MrMitchell
Developers Jos Posted June 7, 2011 Developers Posted June 7, 2011 (edited) "{TAB}" is used in send(). Try: FileWriteLine($file,"fTravelPlans" & @TAB & "fCellPhone" & @TAB &"fClinicFax" & @TAB & "fClinicPhoneNumber" & @TAB & "fCurrentMedicalHistory" & @TAB) Jos Edited June 7, 2011 by Jos SciTE4AutoIt3 Full installer Download page - Beta files Read before posting How to post scriptsource Forum etiquette Forum Rules Live for the present, Dream of the future, Learn from the past.
Gumma Posted June 7, 2011 Author Posted June 7, 2011 Thanks guys - I knew I was missing something easy
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now