... hier mal ein kleiner auszug aus der designer-hilfe:
' Display the contents of c:\config.sys a line at a time.
Dim text As String, fileNum As Integer
fileNum% = FreeFile()
Open "c:\config.sys" For Input As fileNum%
Do While Not EOF(fileNum%)
Line Input #1, text$
Print text$ ' Prints one line of config.sys
Loop
Close fileNum%
jetzt musst du "nur noch" text$ zerpflücken, nachschauen ob es das doc schon gibt, wenn ja, alle felder updaten, ansonsten neues doc anlegen.