Search:

Type: Posts; User: Jim Bassett; Keyword(s):

Page 1 of 16 1 2 3 4

Search: Search took 0.02 seconds.

  1. Excel doesn't have delete or add row event

    Since Excel does not have a delete or add row event is there some coding techique that will inform that a row has been deleted or added?
  2. I have an outlook folder under my mailbox and...

    I have an outlook folder under my mailbox and this folder has a link to a home page on the home page tab. I want to send a copy of the folder to another person or persons so that they can add it to...
  3. Replies
    1
    Views
    1,460

    I have installation of Word 2007 Pro with all SP...

    I have installation of Word 2007 Pro with all SP on it. Whenever a Word document is open including a new blank one the Error proofing comes on and keeps running (the animated icon appeasr in the...
  4. How would one find text that has a hyperlink...

    How would one find text that has a hyperlink assoicated with it (blue underlined text) like in a Word document?
  5. Replies
    3
    Views
    413

    Thank you both for the help!

    Thank you both for the help!
  6. Replies
    3
    Views
    413

    Using VBA trying to find text that is also a URL...

    Using VBA trying to find text that is also a URL wiithin a body of text. I assume the URl is astyle or something like a style that could be searched for but haven't dscovered the method or property,...
  7. Replies
    2
    Views
    1,689

    If you are doing this in an add-in, then: ...

    If you are doing this in an add-in, then:

    Me.Application.OnKey("^{s}", "") ' Ctrl+S Save

    (note: your code was actually re-enabling the shortcut!)


    Thank you Rory. Yea I did figure-out on my...
  8. Replies
    2
    Views
    1,689

    I have used the following code to disable...

    I have used the following code to disable short-cut keys via VB6 Code but the same code does not work in .NET (VSTO) .NET 3.5 SP1

    Excel.Application.OnKey "^{s}" '...
  9. Disable commands in Office 2007 via VBA (2000 - 2007)

    Is XML the only way to disable a command, group, etc. in Excel 2007 via VBA? I have an Excel workbook that needs to work in Office 2000 - 2007 and when in 2007 disable some ribbon commands but of...
  10. Re: Using Word Open file method (2003 - 2007)

    Thank you Rudi.
  11. Using Word Open file method (2003 - 2007)

    Using VB6 I am currently using thre common dialog object (comdlg32.ocx) to create a dialog to naviagate to a word doc, select it and then use the "documents.open" method to open the file. Is there a...
  12. Ediitng an existing custom toolbar (2003 - 2007)

    Attached is a zip file with a word addin that creates a custom toolbar named LSI. The toolbar is not pretty and it performs standard word functions like indenting, bullets, etc. why someone did this...
  13. Re: Office 2007 Ribbon code question (2007)

    Thank you pieterse Don's material helped us.
  14. Office 2007 Ribbon code question (2007)

    Is there a way to disable a group on a ribbon via code?
  15. Replies
    4
    Views
    490

    Re: Macro Project??? (Excel 2003)

    Thank you Pieterse and Hans for confirming what I thought it was. Some in y department were thinking that sections of VBA code in a file can be signed while others sections are not.
  16. Replies
    4
    Views
    490

    Macro Project??? (Excel 2003)

    (Edited by HansV to make URL clickable - see <!help=19>Help 19<!/help>)

    What exactly is a Macro Project (http://office.microsoft.com/en-us/help/HP052495551033.aspx)? Is this like a XLA in Excel...
  17. Replies
    8
    Views
    649

    Re: Another Menu ID problem (2000 - 2007)

    Thank you Pieterse that solved the problem!! For Word I have to do the same except use "menu bar" only as the index for CommandBars. I looked at various books on Excel programming and none of them...
  18. Replies
    8
    Views
    649

    Another Menu ID problem (2000 - 2007)

    I keep running into problems accessing menu items using the menu ID number rather than the menu name. Here is another problem using the ID when using it with the OnAction

    The following works in...
  19. Re: FindControl not working (Excel 2000 - 2007)

    Thank you Hans. The enable was a typo. Based on your reply I see now I can also use ThisWorkbook.Application.CommandBars.FindControl(ID:=30095).Enabled = True . Why the need for the application...
  20. FindControl not working (Excel 2000 - 2007)

    The following line in the ThisWorkbook class fails returning an error message that an object is not set. Adding ThisWorkbook to the watch window says it is out of context. The 30095 refers to the...
  21. Re: Use of menu item ID in foreign language versions (2000 - 2003)

    Ok I am slow but I figured it out

    ThisDocument.CommandBars.FindControl(Id:=30002).Enabled = False Actually Hans answered a similar question I had posted on this subject but I am slow about...
  22. Re: Use of menu item ID in foreign language versions (2000 - 2003)

    I think I know how to do this and will re-post or in a few minutes.
  23. Use of menu item ID in foreign language versions (2000 - 2003)

    On a foreign language version of Word like french the following code line fails since File, Send To, etc does not exist on a French version.
    ThisDocument.CommandBars("File").Controls("Send...
  24. Replies
    4
    Views
    256

    Right Click menu name (2000 - 2003)

    We have a right click menu event and based on where the cursor is located at the moment of the right click a different default meu appears. We want to add our custom menu items to the end of the...
  25. Event to signal row or columns being added or dde (2000 - 2007)

    Is there a way to catch when a row or column is being added or deleted on a sheet? The Worksheet_Change event does get fired but I am not sure what property to look at to know that a row or column is...
Results 1 to 25 of 388
Page 1 of 16 1 2 3 4