CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com

Search:

Type: Posts; User: Arjay

Search: Search took 0.14 seconds.

  1. Re: C# check merge field check box in a word document

    With regard to



    While debugging the program, have you looked at how to identify the check box content controls in code?

    Have you walked through the code to make sure the program is flowing...
  2. Re: C# check merge field check box in a word document

    If you are talking about running the application in the IDE (with F5), setting breakpoints, inspecting variable values and so on, then yes. Otherwise, just running the application isn't debugging. ...
  3. Re: C# check merge field check box in a word document

    Have you debugged your code in a debugger to make sure it works as you expect?
  4. Re: C# check merge field check box in a word document

    I would start by dumping the fields to make sure they contain the word MERGEFIELD.


    foreach (Word.Field myMergeField in oWordDoc.Fields)
    {
    Console.WriteLine(myMergeField);
    }

    Also, I...
Results 1 to 4 of 4





Click Here to Expand Forum to Full Width

Featured