Advertisement

06.18.2008 at 05:59PM PDT, ID: 23497423
[x]
Attachment Details

need to start table dump on row 8 column A

Asked by jtammyg in Visual Studio, Microsoft Excel Spreadsheet Software

Tags:

Hi!

I want to add a company jpg on column a row 1 and title. Therefore I need to start my dataset dump on row 8 and comlumn A.

The code I have now looks like this:



How do i modify accordingly?

THanks!

TammyStart Free Trial
1:
2:
3:
4:
5:
6:
7:
8:
9:
10:
11:
12:
13:
14:
15:
16:
17:
18:
19:
20:
21:
22:
23:
24:
25:
26:
27:
28:
29:
30:
31:
32:
33:
34:
35:
36:
If CheckBox1.CheckState = CheckState.Checked Then
 
 
                    connectionString2 = "data source='" & ComboServers.Text & "'; Initial catalog=master;Integrated Security = True;"
                    cnn2 = New SqlConnection(connectionString2)
                    cnn2.Open()
                    sql2 = "Select * from master.dbo.temp_Filter_by_error where [Error Description] in ('Could not index file') order by [fileset ID],[Doc ID]"
                    Dim dscmd2 As New SqlDataAdapter(sql2, cnn2)
                    Dim ds2 As New DataSet
                    dscmd2.Fill(ds2)
 
 
                    .Worksheets(3).Select()
 
 
                    CType(Excel.Workbooks(1).Worksheets("Sheet3"), Microsoft.Office.Interop.Excel.Worksheet).Name = "Index Error Report"
 
                    Dim m As Integer = 1
                    For col = 0 To ds2.Tables(0).Columns.Count - 1
                        .cells(1, m).value = ds2.Tables(0).Columns(col).ColumnName
                        .cells(1, m).EntireRow.Font.Bold = True
                        m += 1
                    Next
                    m = 2
                    Dim n As Integer = 1
                    For col = 0 To ds2.Tables(0).Columns.Count - 1
                        m = 2
                        For row = 0 To ds2.Tables(0).Rows.Count - 1
                            .Cells(m, n).Value = ds2.Tables(0).Rows(row).ItemArray(col)
                            m += 1
                        Next
                        n += 1
                    Next
 
 
                End If
[+][-]06.18.2008 at 06:17PM PDT, ID: 21818592

At Experts Exchange, members can ask their questions to thousands of technology professionals, also known as Experts. Experts compete and collaborate to answer those questions by leaving comments like this one.

Start your 7-day free trial to view this Expert Comment or ask the Experts your question.

 
[+][-]06.18.2008 at 07:06PM PDT, ID: 21818752

Often, when Experts are collaborating with members who have asked questions, they will request additional information about the problem. Askers respond with an author comment like this one.

Start your 7-day free trial to view this Author Comment or ask the Experts your question.

 
[+][-]06.18.2008 at 07:25PM PDT, ID: 21818804

View this solution now by starting your 7-day free trial. Setting up your free trial is quick, easy, and secure. We will return you to this solution, unlocked, when you're done.

 

About this solution

Zones: Visual Studio, Microsoft Excel Spreadsheet Software
Tags: visual basic 2008
Sign Up Now!
Solution Provided By: nutsch
Participating Experts: 1
Solution Grade: A
 
 
[+][-]06.18.2008 at 07:48PM PDT, ID: 21818880

Often, when Experts are collaborating with members who have asked questions, they will request additional information about the problem. Askers respond with an author comment like this one.

Start your 7-day free trial to view this Author Comment or ask the Experts your question.

 
[+][-]06.18.2008 at 10:31PM PDT, ID: 21819469

At Experts Exchange, members can ask their questions to thousands of technology professionals, also known as Experts. Experts compete and collaborate to answer those questions by leaving comments like this one.

Start your 7-day free trial to view this Expert Comment or ask the Experts your question.

 
 
Loading Advertisement...
20080716-EE-VQP-32 / EE_QW_2_20070628