Hi All,
I am trying to write file in PB.
This is code I am using when I open the file.
li_ascii_file_num = FileOpen(is_sds_ascii_file, LineMode!, Write!, LockWrite!, Replace!)
I write the file and read the file within the code this works file.
When I close the file and open this file outside the PB it is blank I could not find anything in that .txt file.
Can you please help me out how I can see the content of the file if I open it outside PB.
Thanks,
Shaila
ls_str = 'Bill No.:' + String(ll_bilno)
FileWrite(ll_jobno, ls_str + ls_next_line)
FileClose(ll_jobno)
Works fine for me !