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 biv343 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. oetkbyentc

    problem adding a frame control at runtime.

    I fixed the problem. Not sure how or why it worked. All I did was delete the exixting frame from my userform. I then saved, reopened the project and put a new frame with all of the same properties onto the userform and the code started working.
  2. oetkbyentc

    list of vba controls that support automation events.

    I have attached a sample that shows a small sample of a VBA control array. Copy the code into the locations noted. A userform named UserForm1: Private colCalendar_Show As New Collection Private ctlCalendar As Calendar_Classmodule Public iButton Private Sub UserForm_Initialize() Dim iTop...
  3. oetkbyentc

    list of vba controls that support automation events.

    Hello, My question is, has anyone found or compiled a list of controls for vba that support arrays with events? Im having trouble generating a control array for Text box's and combo box's added at run time. Ive created arrays for command, toggle and spin buttons that support all events...
  4. oetkbyentc

    problem adding a frame control at runtime.

    Application: Excel Im having trouble placing a frame control within an existing frame at run time. If I modify the code to add the frame to the userform the code runs fine. If I run the same code but try to place the frame on an existing frame, excell simply crashes. Any thoughts would be...
  5. oetkbyentc

    New Page "Event" in a word document

    The new document is being built from input from a user. there are several sections and the length if each can very greatly. More over. If a portion of the section starts on one page and rolls into another the prtion on the preceding page needs to be move so that it all stays together. The text...
  6. oetkbyentc

    New Page "Event" in a word document

    Ahhhh... Ty. Such is the power in keeping current with Software....
  7. oetkbyentc

    New Page "Event" in a word document

    I have tried several iterations of the suggested code and get "method or data member not found" on the ".Pages" . Does this code execute for you? I'm using word2000 and MVB 6.3. Are you using the same versions?
  8. oetkbyentc

    New Page "Event" in a word document

    Thanks for the replies. Unfortunatly "Pages" does not seem to be a valid method in this case. I have searched quite a bit for a reference to "Page" and only seem to find it in th two rroutines I've already tried.
  9. oetkbyentc

    New Page "Event" in a word document

    Both wdDialogFileSummaryInfo.Pages and wdDialogDocumentStatistics.pages fail to update as the document is being updated with new pages. If I run in debug mode and apply a break after each line is added they update ok and reflect the number of pages. This would be great if it only upated fast...
  10. oetkbyentc

    New Page "Event" in a word document

    Im looking for a way to tell if a page has been added to a document being created by a macro, based on input from a user. I have tried the wbstatus.pages call but it stalls during macro execution and only updates randomly. I need this functionality to add specific text to the top of the new...

Part and Inventory Search

Back
Top