Reply To: Write text file to embedded library

Home Forums Problems and solutions in GDL GDL add-ons Write text file to embedded library Reply To: Write text file to embedded library

#4296
James Goode
Participant

I can’t seem to get my object to write the symb_pos_x and symb_pos_y to the file at all. My other object can definitely read the file though.

this is my code for OUTPUT

chOUT=OPEN ("TEXT", "SurveyPoint.txt", "separator =' ', MODE=WO, LIBRARY")
	OUTPUT chOUT, 1, 1, symb_pos_x
	OUTPUT chOUT, 2, 1, symb_pos_y
	OUTPUT chOUT, 3, 1, symb_pos_z
close chOUT