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. MalekTaus

    How do I create a form object

    It was UserForm that I needed. Thanks for the help and here is my oh so simple solution Private Sub btnCancel_Click() Call cancelButton(Me) End Sub Sub cancelButton(frm As UserForm) Unload frm End Sub
  2. MalekTaus

    How do I create a form object

    I am trying to create a sub procedure for cancel buttons across several forms. The problem is that I need to be able to pass the form object to the procedure in order to unload the form. Can anyone help?
  3. MalekTaus

    enter data into text box on a different form

    BTW, Yes, the user enters the different data being compiled from a paper report.
  4. MalekTaus

    enter data into text box on a different form

    Thanks guys I will use some of your examples as soon as I get the chance however I have been sidetracked on a different project for the moment.
  5. MalekTaus

    enter data into text box on a different form

    I was wondering if anyone know of a way to enter information from one form onto another form. The situation is thus: I have a main form with textboxes on it however one text box is a compilation of several numbers, so I created another form in order enter in those numbers. I then pass this...
  6. MalekTaus

    extracting the day from a date

    The problem was that I had used day as a variable and so it confused the compiler. It is being written for Excel but I am writing in the VBE.
  7. MalekTaus

    extracting the day from a date

    This DAY function doesn't seem to be recognized by my version of Office, 2003. It won't compile at all.
  8. MalekTaus

    extracting the day from a date

    nevermind I used datepart instead
  9. MalekTaus

    extracting the day from a date

    I'm not sure how that works could you give me an example of how the DAY function is used? The VBA help file seems to be worthless on this subject.
  10. MalekTaus

    extracting the day from a date

    Does anybody know how to extract just the day from a date because the month and year don't matter to me.

Part and Inventory Search

Back
Top