vb.net - Selective reading from file in visual studio 2013 -


public class form1  private sub button1_click(sender object, e eventargs) handles button1.click     dim filenumb integer = freefile()     dim temps string = ""     dim tempm string     fileopen(filenumb, "06122010113028_2165890.xml", openmode.input)     until eof(filenumb)         temps = lineinput(filenumb)         tempm += temps + vbcrlf     loop     fileclose(filenumb)     label1.text = tempm   end sub end class 

this code wrote using tutorial found visual studio 2013 , have been surfing net 30 minutes, can't find how select of information text block need. needs string, still won't trick. if got text in formattable format use ifs select info use. can code or should use other text code reading option select valuable info?


Comments

Popular posts from this blog

javascript - Google App Script ContentService downloadAsFile not working -

javascript - Function overwritting -

php - Find a regex to take part of Email -