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

    sending email

    I want to be able to send out an email, but instead of having my email appear as being the sender, I want to have another email appear.
  2. megatron7

    table names

    Does anyone know how to get a list of all the table names in the database.
  3. megatron7

    DateTime conversion

    Now I'm getting a mismatch error. Well, the reason for me converting the field to ShortDate was because my query didn't return what I was asking. I am grabbing dates from multiple tables each table's datetime format is different. When I query for today's date, it only returns the dates with...
  4. megatron7

    DateTime conversion

    i get the same data type error message.
  5. megatron7

    DateTime conversion

    Well, I guess I'm doing this incorrectly then. strFld was suppose to be the field name in my table. I wanted to convert everything in this field to short date. How would I go about doing that? Thanks,
  6. megatron7

    DateTime conversion

    I am getting a data type conversion error. WHY? strFld is already of data type DateTime. strFld = "MEMBERCALLEDDTE" Set rst = db2.OpenRecordset("tblUNION_UserCallResults") Do While Not rst.EOF rst.Edit rst(strFld) = FormatDateTime(rst(strFld), vbShortDate)...
  7. megatron7

    users

    is there a way to find out who has last opened or modified an Access file?
  8. megatron7

    Powerpoint Slide Transitions

    Is there a way to transition to the next slide by double clicking instead of one click?
  9. megatron7

    date data in tables were modified

    The databases I am working with do not have a datestamp on each row.
  10. megatron7

    date data in tables were modified

    I am tring to find out when data in a table was last modified. I don't want the details from the properties, because I can go from selecting forms to tables and it records the file as being last modified. I just need to know when data was actually modified within the database itself. Thanks
  11. megatron7

    Calculating correct day

    If (txtResponseDate <> " ") Then IssuedDate = txtDateIssued 'gets date from txtfield ResponseDate = txtResponseDate 'gets date from txtfield ResponseTime = ResponseDate - IssuedDate Time1 = Format(ResponseDate, "hh:mm") 'get hour/min portion Time2 = Format(IssuedDate...

Part and Inventory Search

Back
Top