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 Mike Lewis 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. vikin9

    Find a Record on my SUBForm using a Combo Box

    I want to find a record on a bound SUBform using a combo box located on an unbound main form. I want to use a datasheet subform to display the records, so I need to put the combo box in the header of the main form. I've tried modifying the combo box code from the wizard to refer to the subform...
  2. vikin9

    Close Front End Remotely

    Exactly. Usually, this situation occurs when I want to make a change in the BE and a table is in use (locked) by a user. Previously, we implemented an eMail request, but if someone's away from their desk, you've got to pay them a visit. I just got this feature working with a timer on a hidden...
  3. vikin9

    Close Front End Remotely

    I would like to somehow remotely close a user's local front end. We have a typical FE/BE set-up, with the FE's loaded from a .bat file. Occasionally, I want to remotely close all the FE's without running all over the building. I'd like to build something into the FE to automatically close the...
  4. vikin9

    Customize Right-Click Shortcut Menu

    I tried this post in the Forms Forum, but no response. Is it possible to change the commands in the right-click shortcut menu? I'd like to add the "Find" command to the right mouse button shortcut menu (along with the Filter and Sort commands that normally show there). I don't see a...
  5. vikin9

    Add "Find" Command to Right-Click Shortcut Menu

    I'd like to add the "Find" command to the right mouse button shortcut menu (along with the Filter and Sort commands that show there). I don't see a way to do this in the Customize menu. Is it possible to modify the properties of the right-click menu? Thanks, Vikin9
  6. vikin9

    Change Text Box Value When Changing Records

    Thanks, I've got it. Put the Function in a Module and then refer to it. WorkDays: DeltaDays([StartDate],[EndDate])
  7. vikin9

    Change Text Box Value When Changing Records

    Thanks for the fast responses! Rolliee: OnCurrent worked great, thanks! SBendBuckeye: That makes sense. How do you refer to a function in a calculated query? I've done some pretty involved calculated query fields, but I don't see how to pull the Function into it.
  8. vikin9

    Change Text Box Value When Changing Records

    I have an unbound text box in a Form footer that calculates work days based on two dates in a form. The work day value is calculated with code (per faq 181-261, which works great I might add). I have it working properly using a command button. However, I want the value to calculate...
  9. vikin9

    Send Outlook Message from Access

    Terrific! I referenced the object library as you said, hit my test button and it worked first try! Thanks, Kyle! (Now I want to know how do the Star Wars thing below your signature.)
  10. vikin9

    Send Outlook Message from Access

    Thanks, Kyle! This is a little advanced for me, but conceptually I see what you're doing. Should Access (97) recognize the Outlook objects, or do I need to define them somehow? Pardon my ignorance, but let's say I wanted to use your code example to send myself a test message from a button on a...
  11. vikin9

    Send Outlook Message from Access

    I tried this question in one of the Access forums without success. Perhaps this is more appropriate here. I want to launch an Outlook eMail message automatically from Access, but the process stops at the Choose Profile box if Outlook is closed. You must press "Enter" to proceed. I...
  12. vikin9

    Select Case/If-Then-Else Help

    The approach I use is two unbound combo boxes in the form header. In Combo1 AfterUpdate, requery Combo2 and the form itself. The row source of Combo2 uses a parameter that refers to the value in Combo1 (e.g. [Forms]![FormName]![Combo1]). In Combo2 AfterUpdate, requery Combo1 and the form itself...
  13. vikin9

    SendObject to Send Outlook Message

    I want to send an automatic eMail notice based on a value entered in a form. I'm using the SendObject method to send the message and everything works fine as long as Outlook is open. If Outlook is closed, the event opens Outlook (good), but stops at the Outlook Choose Profile box which requires...
  14. vikin9

    NZ function in a crosstab

    Did you use the wizard to create the Crosstab? The wizard automatically places months ("Jan", "Feb", "Mar"...) in the Query Properties-Column Headings box. This presets what columns are shown and determines their order in the query output. And, it sums values of...
  15. vikin9

    Sort Grouped Data by Week

    I need to sort some grouped data by week for an MS Graph in a Report. The data spans over a year and must sort chronologically to graph correctly. This works great if I group by month using the format "yyyy-mm," which always gives a two digit month (i.e. 2001-03, 2001-04, etc.). If I...

Part and Inventory Search

Back
Top