Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  1. eagleclaw

    SQL server 7 Service pack

    How can I tell what sservice pack is installed on sql server 7
  2. eagleclaw

    File Save As

    I have captured the fileSave as Menu so I can run a naming macro. The problem I have is that If I have two Documents Open and I save, The First File is saved with the new file name. for instance if I have Doc1 and doc2 and do a save as on doc2 with the name set as doc3. Doc1 is saved under the...
  3. eagleclaw

    Groupwise and SQL

    I can't find anything that says the groupwise API supports sql Is that true?
  4. eagleclaw

    Word template question

    I have created a global template that modifies the file menu and adds a couple of user forms. the glbal template will reside in a users template folder on the network and is tied to the users Normal.dot. If I change the code in my global template is there a way that I can distribute the changes...
  5. eagleclaw

    Standard Menu items

    Is it possible to add an item to the standard menu? What I would like to do is File Save Save As Then add "Save Caption As" Save As Web Page
  6. eagleclaw

    Table Headings in word

    I am trying to do a macro that will bring up a dialog box with a list of forms. when the user selects a document type (ie Letter, Fax or Memo) a unique identifier is created consisting of a prefix and a sequence number so the data wouold look like Column 1 Column2 Column3 Letter ltr...
  7. eagleclaw

    Using ImageList Control and adding pictures in Office XP

    Need to find out how to add pictures to the image list control and then assign them to nodes (branches/leaves?) in a Treeview Control. This is for a user form in word. All of the documentation that I can find says to add an image to an image list through the image tab. When using the vb editor...
  8. eagleclaw

    Making application not visible

    Never mind, move the open command outside the loop and the problem doesn't exist. Duh
  9. eagleclaw

    Making application not visible

    I am running a word report from access, I am using a template and a document created from that template when I set the application visible property to false I do not see the document but I do see the template, How do I turn to application to not visible?
  10. eagleclaw

    Delete text

    Putting the dot in front of selection solved the problem, thank you very much
  11. eagleclaw

    Delete text

    Another variable that I haven't mentioned is that I am doing this from access.
  12. eagleclaw

    Delete text

    Now I keep getting the dreaded "Object Required" error at this line .ActiveDocument.Bookmarks.Add Range:=Selection.Range, Name:="FundContact"
  13. eagleclaw

    Delete text

    Here is my insertion code With wordapp .Visible = True .Documents.Open (strDocPath) .ActiveDocument.Bookmarks("FundContact").Select .Selection.Text = rst![Client Contact] .ActiveDocument.Bookmarks("Official_Name").Select...
  14. eagleclaw

    Delete text

    I am trying to delete the text that has been inserted into a bookmark programatically. I tried With wordapp .ActiveDocument.Bookmarks("FundContact").Select .Selection.Text = " " .ActiveDocument.Bookmarks("Official_Name").Select...
  15. eagleclaw

    Add Table to word

    I am trying to add a table to a word document from access and keep getting the dreaded "Object Required" at wordapp.ActiveDocument.Tables.Add Range:=Selection.Range, NumRows:=1, NumColumns:=5 OK so I may be the only one that dreads it. Dim dbs As Database Dim wordapp As Object Dim...
  16. eagleclaw

    "Converting" VBA to VB

    Because of the differences between vb and vb6 there is no simple way to get vba code to vb (any version). There is a commercial tool available at http://www.gfminc.com/accessto.htm I have not used the tool myself but have seen some good reports on it, you will have to do a little code cleanup...
  17. eagleclaw

    Changing printer in VBA Access 2000

    Here is a litle piece of code that will give you the Printer, Driver and Port for each printer on your system. Dim prtLoop As Printer For Each prtLoop In Application.Printers With prtLoop MsgBox "Device name: " & .DeviceName & vbCr _ & "Driver name...
  18. eagleclaw

    Word/Access automation question

    What I am trying to accomplish is to open a word document from access and publish the results of a query into a table in word. I have 2 problems When I try to instantiate word with Private Sub cmdOutputCorel_Click() Dim wordapp As Application Dim rst As ADODB.Recordset Set wordapp =...
  19. eagleclaw

    develop search engine for database?

    I need to incorporate a search engine into my database, Users should be able to select any field from any table and search that field (or Fields). Can someone maybe let me know of a reference or site that will help me get started.

Part and Inventory Search

Back
Top