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 wOOdy-Soft 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: onemiland
  • Content: Threads
  • Order by date
  1. onemiland

    Copying to clipboard (double-click)

    I once had the code to double click on a cell (Excel) and it goes into the clipboard. How would I be able to double-click on a field to select it all and place it in the clipboard? Thanks
  2. onemiland

    Last Updated coding?

    I kept reading about Triggers and what I'm trying to do is I want a date change everytime I update a record so I know when the record has been updated. Help? Thanks
  3. onemiland

    Synchro comboBoxes and maintaining the data

    I have the infamous Synchro combo boxes that when I select the Section of the person works in, their available titles show on the next combo boxes. So in my main form (frmMain) How do I keep the data in the current record? Everytime I go to a new record , either add or search...the synchro Combo...
  4. onemiland

    Synchronizing Combo Boxes Part 1Million

    I'm trying to follow other people's examples and also Microsoft's. Help? Two Comboboxes: Combo1 is Section and Combo2 is Title. There are 5 different Titles in a Section. ' ****tTitle (TABLE)***** ' iTitleID = Primary Key ' Title = name of combobox for Titles ' SM_Title = Name of title...
  5. onemiland

    Duplicate Fields Printing from a report

    From a Subform within a Form, I am selecting persons, then I click on the report button to generate the Report of the list of people with other info. The report works but thier names and everything I have in the query is showing up twice. I only have the fields on the Report one time. Thank...
  6. onemiland

    IsNull or not IsNull

    I'm stumped! Code follows: strBody = strBody & "(W) " & Left$(Work_Phone, 3) & "-" & Mid$(Work_Phone, 4, 3) & "-" & Right$(Work_Phone, 4) & Chr(13) strBody = strBody & "(C) " & Left$(Cell_Phone, 3) & "-" & Mid$(Cell_Phone, 4, 3) & "-" & Right$(Cell_Phone, 4) & Chr(13) & Chr(13) strBody =...
  7. onemiland

    email report not producing with emtpy output

    I am producing an e-mail message to produce the contents of the current record from a form. When the Home, Work or Cell phone isn't present, the e-mail form doesn't work. Any suggestions? Code follows: Private Sub M1_Click() Dim strEmail, strBody As String Dim objOutlook As...
  8. onemiland

    E-mail current record from Form

    I'm beginning to see there are tons of ways to e-mail from access... I have a db of 200+ clients with thier info, I would like to click on a button from the client form in that record to send an e-mail with thier data in the message, ie Name, address, other info. The message would be in text...

Part and Inventory Search

Back
Top