B
Brian
Add a reference to Excel:
Toolbar---->Projects------>Add Reference----->.Net Then try to find
Excel and click select.
Toolbar---->Projects------>Add Reference----->.Net Then try to find
Excel and click select.
IAmIronMan said:Okay you are doing good.......
I did that and got the error that
"Excel has not been defined".
How to resolve that.
Don't mind the other people in this thread.
It isn't my fault the code is not complete.
-----Original Message-----
Put the imports at the top of the code page before anything else.
Imports Office = Microsoft.Office.Core
Imports Excel1 = Microsoft.Office.Interop.Excel
Public Class Form1
Inherits System.Windows.Forms.Form
'--Your code here
End class
FINALLY!!!!!!! WAS THAT SO HARD!!
Alright brian you done good now explain this stuff to
me......
The first error I get after pasting your code is:
I will go through these errors one at a time until they
are all resolved and their are a lot of them:
'Imports' statment must precede any declarations.
I am sure scorpion53061 made an error in the code and
that is why it isn't working.
Just work with me on this. Don't tick me off whatever you
do
-----Original Message-----
Try this:
'--Add a reference then
'-- Put this at the top
Imports Office = Microsoft.Office.Core
Imports Excel = Microsoft.Office.Interop.Excel
Private Sub CreateSpreadSheetFromDataSet()
Dim Excel As New Excel.Application
Dim oBook As Excel.Workbook
Dim WSheet As New Excel.Worksheet
WSheet = Excel.Workbooks.Add.Worksheets.Add
Excel.Visible = True
Dim rows As Integer
Dim columns As Integer
Dim r As Integer
Dim c As Integer
Dim DataArray(rows, columns) As Object
For c = 0 To columns - 1
DataArray(r, c) = dstest.Tables
(0).Columns.Item(c).ColumnName
For r = 0 To rows - 1
DataArray(r, c) = dstest.Tables
(0).Rows(r).Item(c)
Next
Next
WSheet.Range("A2").Resize(rows, columns).Value =
DataArray
Dim columns2 as Integer
Dim columns3 as Integer = 1
For columns2 = 0 To dstest.Tables (0).Columns.Count - 1
WSheet.Cells(1, columns3).Value =
dstest.Tables(0).Columns(columns2).ColumnName
columns3 = columns3 + 1
Next
End Sub
Private Function closeExcel() As Short
Dim count As Short = 0
Dim excelInstance As System.Diagnostics.Process
Dim excelInstances() As Process =
System.Diagnostics.Process.GetProcessesByName("Excel")
For Each excelInstance In excelInstances
Try
excelInstance.Close() '<-- you can use close
or kill .. up to you
excelInstance.Kill()
count += 1
Catch ex As Exception
End Try
Next
Return count
End Function
in message
Because no one will answer me.........scorpion emailed
everyone telling them not to help me.
He (acting like a she) isn't responding to my posts.
Emailing him is out because his spam filter is
rejecting
me.
I just need a little help here with this. Just paste
the
code here what he wrote without all the other stuff on
there. When I do that I get errors all over the place.
-----Original Message-----
"IAmIronMan" <[email protected]>
schrieb
This person scorpion53061 wrote a code sample at
http://www.kjmsolutions.com/datasetarray.htm
in which he did not explain it well.
[.....]
Why not answer in the other thread? Nobody knows what
you were referring to.
If you want to write a single person, ask him if you
can
write him an email.
--
Armin
http://www.plig.net/nnq/nquote.html
http://www.netmeister.org/news/learn2quote.html
.
in message
You should have listened and done what I asked and you
wouldn't be having this problem.
I wasn't asking too much.
-----Original Message-----
I posted something in another thread intending to give
something back to
those newer than me and this has completely blown up
in
my face. Post again
so I can make sure it is really you and I will give
you
the link.
This guy is spreading lies about me on all the ng's I
think.
I can only hope people take the time to read for
themselves and not just
take his word for it.....
message
that where related to the article he had in question
of course... not the
actual person posting in this group...
"IAmIronMan"wrote in message
This individual is stealing other peoples code and
claiming it as his own. The proof is when I asked
him to
explain his code he would not.
For proof view these threads in
dotnet.languages.vb
Giving Back(Thank You)
scorpion53061
Straighten This Out....
This is the forged code he won't explain:
http://www.kjmsolutions.com/datasetarray.htm
.
.
FINALLY!!!!!!! WAS THAT SO HARD!!
Alright brian you done good now explain this stuff to
me......
The first error I get after pasting your code is:
I will go through these errors one at a time until they
are all resolved and their are a lot of them:
'Imports' statment must precede any declarations.
I am sure scorpion53061 made an error in the code and
that is why it isn't working.
Just work with me on this. Don't tick me off whatever you
do
-----Original Message-----
Try this:
'--Add a reference then
'-- Put this at the top
Imports Office = Microsoft.Office.Core
Imports Excel = Microsoft.Office.Interop.Excel
Private Sub CreateSpreadSheetFromDataSet()
Dim Excel As New Excel.Application
Dim oBook As Excel.Workbook
Dim WSheet As New Excel.Worksheet
WSheet = Excel.Workbooks.Add.Worksheets.Add
Excel.Visible = True
Dim rows As Integer
Dim columns As Integer
Dim r As Integer
Dim c As Integer
Dim DataArray(rows, columns) As Object
For c = 0 To columns - 1
DataArray(r, c) = dstest.Tables
(0).Columns.Item(c).ColumnName
For r = 0 To rows - 1
DataArray(r, c) = dstest.Tables
(0).Rows(r).Item(c)
Next
Next
WSheet.Range("A2").Resize(rows, columns).Value =
DataArray
Dim columns2 as Integer
Dim columns3 as Integer = 1
For columns2 = 0 To dstest.Tables (0).Columns.Count - 1
WSheet.Cells(1, columns3).Value =
dstest.Tables(0).Columns(columns2).ColumnName
columns3 = columns3 + 1
Next
End Sub
Private Function closeExcel() As Short
Dim count As Short = 0
Dim excelInstance As System.Diagnostics.Process
Dim excelInstances() As Process =
System.Diagnostics.Process.GetProcessesByName("Excel")
For Each excelInstance In excelInstances
Try
excelInstance.Close() '<-- you can use close
or kill .. up to you
excelInstance.Kill()
count += 1
Catch ex As Exception
End Try
Next
Return count
End Function
in message
Because no one will answer me.........scorpion emailed
everyone telling them not to help me.
He (acting like a she) isn't responding to my posts.
Emailing him is out because his spam filter is
rejecting
me.
I just need a little help here with this. Just paste
the
code here what he wrote without all the other stuff on
there. When I do that I get errors all over the place.
-----Original Message-----
"IAmIronMan" <[email protected]>
schrieb
This person scorpion53061 wrote a code sample at
http://www.kjmsolutions.com/datasetarray.htm
in which he did not explain it well.
[.....]
Why not answer in the other thread? Nobody knows what
you were referring to.
If you want to write a single person, ask him if you
can
write him an email.
--
Armin
http://www.plig.net/nnq/nquote.html
http://www.netmeister.org/news/learn2quote.html
.
in message
You should have listened and done what I asked and you
wouldn't be having this problem.
I wasn't asking too much.
-----Original Message-----
I posted something in another thread intending to give
something back to
those newer than me and this has completely blown up
in
my face. Post again
so I can make sure it is really you and I will give
you
the link.
This guy is spreading lies about me on all the ng's I
think.
I can only hope people take the time to read for
themselves and not just
take his word for it.....
message
that where related to the article he had in question
of course... not the
actual person posting in this group...
"IAmIronMan"wrote in message
This individual is stealing other peoples code and
claiming it as his own. The proof is when I asked
him to
explain his code he would not.
For proof view these threads in
dotnet.languages.vb
Giving Back(Thank You)
scorpion53061
Straighten This Out....
This is the forged code he won't explain:
http://www.kjmsolutions.com/datasetarray.htm
.
.
.