Quote Originally Posted by khanjan_a2k
~ Create a text file
VB Code:
  1. Open "c:\machines.txt" For Append As # 1
Quote Originally Posted by khanjan_a2k
~ Write to a text file
VB Code:
  1. Print #1, "MachineName"
Quote Originally Posted by khanjan_a2k
~ I want each line from the text file to be an item: how do i do that
Print #1 will place each item on a separate line
Quote Originally Posted by khanjan_a2k
~ I want to edit the text file
Open the file and read the whole thing into a multiline textbox. Do you editing, save the contents back.