Gumma 0 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 Share this post Link to post Share on other sites
MrMitchell 16 Posted June 7, 2011 (edited) Try @TAB instead of {TAB}, don't put quotes around it either. Edited June 7, 2011 by MrMitchell Share this post Link to post Share on other sites
Jos 2,211 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. Share this post Link to post Share on other sites
Gumma 0 Posted June 7, 2011 Thanks guys - I knew I was missing something easy Share this post Link to post Share on other sites