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...
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 ;)
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...
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 =...
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 =...
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...
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.