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: *

  • Users: Edric
  • Order by date
  1. Edric

    Database Control via VBA

    Hi!!! It's quite interesting, please send me a copy. Here is my e-mail add, epandal@bhpi.com.ph thx.
  2. Edric

    Ms Word Missing Menu.

    Follow this procedure... 1. Open word 2. ALT+F11, the Visual Basic Editor will appear 3. CTRL+R, to show the project explorer 4. Double Click Project(Document1), Microsoft Word Objects then the "ThisDocument" 5. Paste the Code below Sub macro() Application.CommandBars("Menu...
  3. Edric

    Word - message box - prompt for text

    This returns the focus on the textbox if its empty. Private Sub CommandButton1_Click() 'my macro If TextBox1.Text = "" Then MsgBox "textbox is empty" TextBox1.SetFocus 'my macro End If End Sub
  4. Edric

    Stop a user group from entering design mode etc...

    Hi!!! try below.... Click ALT+F11, next click Tools menu and point to the VBAProject Properties. Click the Protection tab, check the lock project for viewing and input password. Close the file and re-open it again, even your code have error they will not able to debug your code.
  5. Edric

    MS Word is missing tool bar

    right click anywhere on the menu bar/toolbars, then select the toolbars you want.
  6. Edric

    Date in Word wizard

    When you place the date, be sure the check box "Update automatically" is uncheck. To disable this go to insert menu and point to date time.
  7. Edric

    Open Macro

    While in Excel click Visual Basic Editor, then Click Visual Basic help. You can read the basic of VBA. It is where I started. Good luck...
  8. Edric

    Word saying any documents I open are already in use

    try CTRL+ALT+Delete, then end the other word applications... It happens to me all the times..
  9. Edric

    The name "Robert A. Smith" appears unexpectedly in Word document

    try turning off the auto-complete command..
  10. Edric

    Is it possible to reset the "Total Editing Time" in PowerPoint?

    On the view Menu, click Slide sorter. Place the mouse at the end of last slide, then click SHIFT + First slide. Now all of the slide is selected. Copy and paste in the new presentation. Be sure to click the view menu, slide sorter in the new presentation before you paste the slide, then save...

Part and Inventory Search

Back
Top