Pytanie : jak móc I czytać wtedy jeden komórka przodować kartoteka w vb.net

Cześć, jak móc ty czytać the treść w komórka (A1, A2) i wtedy the następny linia i the następny set komórka (B1, B2) I obecnie używać Vs 2008 i Przodować 2007.

The kod i obecnie używać tekst kartoteka w vb.net być

mastObj1 = stnObj.Masters (System.IO.File.ReadAllLines ("C: \ test.txt " ) ((0)))

Thanks

Odpowiedź : jak móc I czytać wtedy jeden komórka przodować kartoteka w vb.net

(1):
2:
3:
4:
5:
6:
7:
8:
9:
10:
11:
Komórka w the worksheet,

Excel.Sheets xlsheets = wb. Prześcieradło; //Get the prześcieradło od workbook
Excel.Worksheet excelWorksheet = (Excel.Worksheet) xlsheets [(1)]; //Select the pierwszy prześcieradło
Excel.Range excelCell = (Excel.Range) excelWorksheet.get_Range ("B4: FZ4", Type.Missing); //Select pasmo komórka
Excel.Range excelCell2 = (Excel.Range) excelWorksheet.get_Range ("A5: A5", Type.Missing); //Select pojedynczy komórka
Console.WriteLine (excelCell2.Cells.Value2.ToString ()); //Print the wartość the komórka dla pojedynczy komórka wybór
System.Array myvalues = (System.Array) excelCell.Cells.Value2; //Assign ono szyk
sznurek [] strArray = ConvertToStringArray (myvalues); //Convert szyk w Smyczkowy szyk
foreach (smyczkowy str w strArray)
Console.WriteLine ("Tekst w Komórka" + str); //Loop przez the szyk the wartość w the komórka  
Inne rozwiązania  
 
programming4us programming4us