• Wd2K – Document New/Active Document

    • This topic has 15 replies, 6 voices, and was last updated 24 years ago.
    Author
    Topic
    #352315

    Help!!
    I have a set of templates that all contain code activated when the user does a File New. In the ThisDocument area I have a Document_New that runs a form and fills in all the details – beautiful, until….

    If I have a document on the screen that has been created based on a template, and then try and create another document, two things happen. First, a new document is created, but not made active. Second, the original document is then modified by the form and the changes saved.

    What I believe should happen is that on File New, the new document is made active, and any procedures that modify the document (eg filling in data for a letter and naming and saving the letter) should be applied to that new document – not another document that happens to be on the screen at the same time!

    Word 97 doesn’t appear to have this problem and I think it has something to do with the activedocument.

    I also have a problem when a user tries to print using printing macros. The user obviously wants to print what he or she can currently see on the screen (what I would expect to be the active document). However Word 2K doesn’t always agree that that is the active document, and often prints another of the open documents.

    In the past I put all the code into a master template that was stored in the startup directory. However, this master template became too big and unwieldy. It was easier to break it up into smaller chunks and code that was specific to a template was stored on that template, only shared code stored on the master template. I would like to keep it this way if possible.

    Any ideas would be most welcome.

    Viewing 1 reply thread
    Author
    Replies
    • #511987

      Karen,

      I haven

      • #512320

        My Lifesaver!!!! Such a simple thing to do too, so now I have changed all my Word 2K templates and am getting my users to test them (no matter how much I test I find the users always do something I hadn’t thought of!)

        It seems to be the order in which documents are loaded – the first one appears to be the active document, the next loaded is active for the time of its loading and then the first becomes active again! Does anyone else think that Microsoft stuffed up here?

        Thanks very much Geoff

        • #512348

          Hi Karen,

          We have lots of Word 97 templates that we’re in the process of moving over to Word 2000 – many of these have userforms that do all sorts of processing in the course of creating the new document.

          They all are working fine, though, in terms of the newest document always becoming the active document – we didn’t have to change these in moving from 97 to 2000.

          The only place where I ran into a couple of problems was in procedures that do a lot of switching windows – as Geoff described – and as Geoff described, the solution is to set object references to each of the documents and then refer to them specifically as needed later.

          Could it be that something in your “new document” process is switching windows or views in some way, to trigger the problem?

          Gary

          • #512355

            Hi Gary
            Congrats on your WMVP status by the way!
            As for switching windows or views I don’t really think so. I use the Document_New() to fire up a form that then simply uses the ActiveDocument command, eg ActiveDocument.Bookmarks(“Recipient”).Select, to do something.

            I also have a procedure for printing to a digital printer that simply uses the ActiveDocument to set up the paper source for each section in the document. Before putting in the solution suggested by Geoff, if you had more than one document open the procedure would not print the document you could see on the screen, rather it would print the first document you had opened. This was also a problem with a Name and Save Document procedure that we use to do a File Save As – if you had more than one document open it would not Name and Save the document that was visible on your screen – rather one of the documents in another window. This routine did go into the header/footer to put a code identifying the document (not usually the entire filename)

            Never had these problems with 97! However, I love having more than one item on the taskbar to identify what documents I have open.

            • #512360

              Hi Karen,

              Thanks!

              It sounds like the types of things you’re doing shouldn’t cause a problem. Hmm, someday we’re going to have to figure out why the ActiveDocument scrambling is happening on some Word 2000 installations and not others. It’s probably good practice to set references to the documents, rather than use ActiveDocument, anyway.

              As to the taskbar, having had to wait months to get onto 2000, I’d heard so much about the SDI issue I wasn’t looking forward to it. But in most respects it’s pretty functional.

              I did have to give up one favorite trick, though: in Word 97 I had a couple of procedures that did lengthy processing in an existing document – to keep the users from worrying, and to keep them from touching the keyboard (and to keep them entertained), I would keep the userform visible while the procedure ran, minimize the ActiveDocument, and send progress updates to the user via the userform. And when the procedure was finished, the userform would disappear and the document would pop back up to maximized. This all provided some fun animation for a boring operation.
              Because of the MDI, the user would only see the userform against a gray background (could only do this trick with one document open).

              In Word 2000, without the MDI, you can’t expose the gray background. I had to settle for zooming the document down to about 60% and then restoring it to full size when done – not quite as flashy.

              Gary

            • #512361

              We’re running Office from our local pcs, Windows 2000, and exchange server.

              Provides a bit of stress to life anyway!!

        • #519291

          Hi Karen:

          This is a old thread, but I wonder if there’s anything in Windows behavior that affects the active document. I know that in the Tweak UI/General tab dialog box, there is a checkbox for “Prevent applications from stealing focus”. I have it ticked on my machine. I have no idea whether that will make any difference (& by now you’ve probably modified all your templates), but I thought I’d mention it for what it’s worth.

    • #519224

      Hi,

      Stretching the memory banks a little here!

      The code would look like this:

      Dim strActiveDocName As String
      Documents.Add
      strActiveDocName = ActiveDocument.Name

      Documents(strActiveDocName).Activate
      Activedocument.DoSomething

      • #519249

        You can do it even more simply (note: I’ve added a few extra statements just to flesh out the demo):

        Sub ActivateDoc()
        Dim objDoc1 As Document
        Dim objDoc2 As Document

        Set objDoc1 = Documents.Add
        objDoc1.Range.Text = “This is document 1!”

        ‘adding a second doc, just to demo activating doc 1 again:
        Set objDoc2 = Documents.Add
        objDoc2.Range.Text = “This is document 2!”

        objDoc1.Activate

        End Sub

        • #519905

          It’s so reassuring to see that Karen has done or is trying to do the same things I’ve been trying to do. I’ve had the problem in Office 97, though, on NT. I’m using Karen’s code to open a new document from a template when the template name is clicked in Word. (I’m using a shortcut to accomplish this from a browser, but it occurred to me I could do both, so a new document would open whether from the browswer or from Word).

          I tried Geoff’s suggestion, but it still left the original document (the one with the link) on top. It seems to think the one that’s on top is the current document, so if you save the name of the current document to activate it, that’s the one you get.

          I tried Gary’s suggestion to incorporate setting the new object in the add statement, but I specify the template and there’s a compile error – expected end of statement. The statement is:

          Set objDocNew = Documents.Add Template:=”J:PROJ-CORTemplateUpdatesProject97ProjectDataelem.dot”, _
          NewTemplate:=False

          It highlights the word ‘Template’ as the problem. Do you know what I’d need to change?

          Phil, I can’t use a solution that depends on a machine setting, as these templates are used by lots of machines on a LAN.

          • #519960

            Because Documents.Add is being called on the right side of an expression, it wants parentheses:

            Set objDocNew = Documents.Add(Template:=”J:PROJ-CORTemplateUpdatesProject97ProjectDataelem.dot”, _
            newTemplate:=False)

            • #520053

              Edited by wcutler on 01/03/26 20:26.

              Tada! Thanks, Jefferson. That fixed the error. After I fixed the code to close the template before activating the new document, it worked.

    Viewing 1 reply thread
    Reply To: Wd2K – Document New/Active Document

    You can use BBCodes to format your content.
    Your account can't use all available BBCodes, they will be stripped before saving.

    Your information: