Click here to Skip to main content
15,887,485 members
Home / Discussions / C#
   

C#

 
AnswerRe: insert datetime to database Pin
OriginalGriff28-Dec-09 2:14
mveOriginalGriff28-Dec-09 2:14 
GeneralRe: insert datetime to database Pin
Erdinc2728-Dec-09 2:53
Erdinc2728-Dec-09 2:53 
GeneralRe: insert datetime to database Pin
Blue_Boy28-Dec-09 3:12
Blue_Boy28-Dec-09 3:12 
GeneralRe: insert datetime to database Pin
Luc Pattyn28-Dec-09 3:26
sitebuilderLuc Pattyn28-Dec-09 3:26 
GeneralRe: insert datetime to database Pin
OriginalGriff28-Dec-09 4:13
mveOriginalGriff28-Dec-09 4:13 
Questionfetch distinct record from the custom data type in ado.net entity framework Pin
Pankaj Saha27-Dec-09 22:29
Pankaj Saha27-Dec-09 22:29 
Questionhow do i differentiate between the two tables Pin
@nisha 2n27-Dec-09 22:24
@nisha 2n27-Dec-09 22:24 
AnswerRe: how do i differentiate between the two tables Pin
ProtoBytes28-Dec-09 10:52
ProtoBytes28-Dec-09 10:52 
<blockquote class="FQ"><div class="FQA">@nisha 2n wrote:</div>

for (int r = 1; r < a; r++)
{
oTable.Cell(r + 1, 1).Range.Text = r.ToString();
oTable.Cell(r + 1, 2).Range.Text = listView1.Items[r - 1].SubItems[2].Text;
oTable.Cell(r + 1, 3).Range.Text = listView1.Items[r - 1].SubItems[7].Text;

oTable.Rows[r].Height = oWord.InchesToPoints(0);
}
</blockquote>


I do not see where you are creating two different tables. Perhaps that code is being called else where?

Try:

if(ThisDocument.Tables.Count == 0)
  oTable = ThisDoucument.Tables[0];
else
  oTable = ThisDoucument.Tables.Add(wrdRng, a, 3, ref oMissing, ref oMissing);

oTable.Range.ParagraphFormat.SpaceAfter = 6;

oTable.Cell(1, 1).Range.Text = "SNO";
oTable.Cell(1, 2).Range.Text = "FileName";
oTable.Cell(1, 3).Range.Text = "Total Count";


for (int r = 1; r < a; r++)
{

oTable.Cell(r + 1, 1).Range.Text = r.ToString();

oTable.Cell(r + 1, 2).Range.Text = listView1.Items[r - 1].SubItems[2].Text;

oTable.Cell(r + 1, 3).Range.Text = listView1.Items[r - 1].SubItems[7].Text;



oTable.Rows[r].Height = oWord.InchesToPoints(0);
}

oTable.Columns[1].Width = oWord.InchesToPoints(0); //Change width of columns 1 & 2
oTable.Columns[2].Width = oWord.InchesToPoints(0);
oTable.Columns[3].Width = oWord.InchesToPoints(0);


oTable.Rows[1].Range.Font.Bold = 1;


Just make sure you are indexing the correct table in the document.

~TheArch
GeneralRe: how do i differentiate between the two tables Pin
@nisha 2n28-Dec-09 21:24
@nisha 2n28-Dec-09 21:24 
QuestionHow to extract image content from a tif/jpeg/bmp images Pin
RameshwerE27-Dec-09 22:15
RameshwerE27-Dec-09 22:15 
AnswerRe: How to extract image content from a tif/jpeg/bmp images Pin
0x3c027-Dec-09 22:22
0x3c027-Dec-09 22:22 
QuestionWhy Dns.Resolve Method in C# is obsolete ? Workaround? Pin
ksaw12327-Dec-09 21:23
ksaw12327-Dec-09 21:23 
AnswerRe: Why Dns.Resolve Method in C# is obsolete ? Workaround? Pin
Mirko198027-Dec-09 21:52
Mirko198027-Dec-09 21:52 
GeneralRe: Why Dns.Resolve Method in C# is obsolete ? Workaround? Pin
ksaw12328-Dec-09 0:33
ksaw12328-Dec-09 0:33 
GeneralRe: Why Dns.Resolve Method in C# is obsolete ? Workaround? Pin
OriginalGriff28-Dec-09 2:23
mveOriginalGriff28-Dec-09 2:23 
QuestionHow to implement multicoulumn combobox in datagridviewcombobox? Pin
arj_agt27-Dec-09 19:02
arj_agt27-Dec-09 19:02 
AnswerRe: How to implement multicoulumn combobox in datagridviewcombobox? Pin
Ben Fair28-Dec-09 2:39
Ben Fair28-Dec-09 2:39 
Questionhow to make web based multipoint sdk application Pin
krunal2527-Dec-09 18:59
krunal2527-Dec-09 18:59 
AnswerRe: how to make web based multipoint sdk application Pin
nagendrathecoder27-Dec-09 19:58
nagendrathecoder27-Dec-09 19:58 
QuestionHow to check Internet Connection on different gateway Pin
Mayur27-Dec-09 18:42
professionalMayur27-Dec-09 18:42 
AnswerRe: How to check Internet Connection on different gateway Pin
Dimitri Witkowski28-Dec-09 4:51
Dimitri Witkowski28-Dec-09 4:51 
QuestionFractal Index Pin
self similar idiot27-Dec-09 11:32
self similar idiot27-Dec-09 11:32 
QuestionDo you know any ListViewItem samples ? Pin
Mohammad Dayyan27-Dec-09 9:21
Mohammad Dayyan27-Dec-09 9:21 
AnswerRe: Do you know any ListViewItem samples ? Pin
ProtoBytes28-Dec-09 12:20
ProtoBytes28-Dec-09 12:20 
Questionconnecting user controls to each other ( link them to gether) Pin
NoName_ark27-Dec-09 2:42
NoName_ark27-Dec-09 2:42 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.