Search results

  1. M

    with block for console input and output

    VolteFace Oh yes - thats it! Thank you. :)
  2. M

    with block for console input and output

    Hi, Im wondering, when I want to write and read a view times with / to console if there is not a possibility to shortening my VB code like this: with system.console .writeline("...") myVar = .readline() .writeline(...) myVar2 = .readline() end with That doesnt function. What...
  3. M

    reference to excel

    ooohhh yes - at long last I have the solution : So please read the article in the MSDN: http://support.microsoft.com/default.aspx?scid=kb;en-us;320369 Greetings mhpo ;)
  4. M

    Excel 97

    I want to access Excel-Cells from a Windows-Form. Can I use a reference to a Excel 97-Workbook (COM-reference) in VB.NET (Visual Studio .NET)? I only get a error-message by doing this. If ve sighted a lot of articles that describe the general access to Excel-Cells. And so I did it - but...
  5. M

    reading excel data

    Hi, if you want to access the cells correctly, follow the Excel object-hierarchy. This example shows you the access to a single cell: Dim oXLApp As Excel.Application Dim oXLWs As Excel.Worksheet dim strCell as String oXLApp = New Excel.Application() oXLApp.Workbooks.Open("FileName") oXLWs =...
  6. M

    reference to excel

    Hi, Im trying to access Excel-cells. Therefor I added a reference to the installed Excel 8.0 Object Library. Here is my .NET-code: Dim xlApp As Excel.Application Dim xlMappe As Excel.Workbook Dim xlZelle As Excel.Range xlApp = New Excel.Application() xlMappe =...
  7. M

    reference to excel

    Hi, Im trying to access MS Excel-cells with VB .NET. Therefor i implemented a reference to the installed Excel 8.0 Object Library. So far the Excel-Objects can be referenced. The following code attempts to write data to the cells: Dim xlApp As Excel.Application Dim xlMappe As Excel.Workbook...
Back
Top