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 SkipVought 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. Kim296

    Sending Gmail using vba Send error

    Thank you for your time Andy, I tried the suggestion above. It still gives me the .send error. Hum, I will keep looking. Thank you.
  2. Kim296

    Sending Gmail using vba Send error

    Thank you for your response. Yes, I do have the Microsoft CDO library in my reference tools. The line of error is occurring from the "newmail.Send" line. This is what makes me think that I'm missing a step somewhere not relating to this code.
  3. Kim296

    Sending Gmail using vba Send error

    Good Morning, I have been trying to figure out how to send gmail using vba in Microsoft Access. I feel like the below code is correct as it's the same on every tutorial, instructions and research blog that I've found over the past week. I feel like I'm missing something else that I should be...
  4. Kim296

    FILTER SUBFORM USING MAIN FORM FIELDS- VBA

    Thank you all for your responses. Yes, I do like to learn and try different things for myself. I will try what you both suggested. Thank you for your time and examples; I really appreciate your responses. It does help me think of different ways to approach my issue.
  5. Kim296

    FILTER SUBFORM USING MAIN FORM FIELDS- VBA

    Hi everyone, I have tried researching this and watching videos for a week now, but my brain hasn't been able figure this out to save me. Any help is appreciated. I have a simple program that will be designed for keeping up with documentation on employees (tardiness, verbal warnings, recognition...
  6. Kim296

    SUBTRACT PREVIOUS DATE FIELD FROM CURRENT DATE FIELD

    Two main tables used: tblProjectMain - automatic sys id number (PROJID), this data is the same for each crime series (one project) tblProjectEvent - there are multiple events in each Project Series (linked to main project by sys id PROJID) Each Project may have many events in the series (record...
  7. Kim296

    SUBTRACT PREVIOUS DATE FIELD FROM CURRENT DATE FIELD

    Good Afternoon Everyone, I'm using a query with a lot of calculated fields. The stumper for me is how to calculate a date difference between the current record date and the previous record date within the same record set. query name: qryProjectionEventsAll record set: PROJID (Linked to Main...
  8. Kim296

    Send to Back

    Good Afternoon Everyone, I have a form which includes an image to appear behind lines that I drew for a chart (x and y coordinates). I can manually set the image behind the drawn x and y lines, but I can't figure out a way to automatically send the image to the back after an image is added. The...
  9. Kim296

    FORM CHARTS

    Thank you very much for your response.
  10. Kim296

    FORM CHARTS

    RE: ACCESS FORM Is it possible to base a chart strictly on unbound form fields? I've created a form template which allows simple calculations, using (2 columns with 12 rows) equating to 24 unbound fields, that I wish to chart. The unbound field calculations work perfectly; however, I'm unable...
  11. Kim296

    Calculating Date Diff for timestamps in same field

    Thank you Ian, Your solution worked perfectly. I appreciate your help.
  12. Kim296

    Calculating Date Diff for timestamps in same field

    Hi Everyone, How do I calculate the time difference between two date/time timestamps that are in the same field, but use different codes. The fields are linked by the same event number. For example: EMS arrived at the hospital (incilog.transcode= "H") at 02/28/2017 15:00 (incilog.timestamp...
  13. Kim296

    Query Expression Help

    I solved this. I figured out that my "Approve" and "Denied" were referencing the ID number, so I had to substitute 1 and 2. RStatus: IIf([STATUS]=1 And (IsNull([PROVIDEDATE])),"Pending Delivery",IIf([STATUS]=2,"Denied",IIf([PROVIDEDATE]>1,"Delivered",""))) Thank you!
  14. Kim296

    Query Expression Help

    I'm trying to create a formulated field that will display the record delivery status, so that I can filter the status for reporting. This formula appears to be working as I'm creating it in the expression builder; however, when I go to the datasheet view it shows "#error". Can anyone see what I...
  15. Kim296

    CONCATENATE GROUP RECORDS

    Wow. I figure out my own problem. To concatenate group records, this is what I did and it works. //@reset, placed in the main group header stringvar CONCAT :=""; WhilePrintingRecords; CONCAT //@Concate. placed in the secondary group header WHILEPRINTINGRECORDS; STRINGVAR CONCAT; CONCAT:=...
  16. Kim296

    Week number and Leap Year

    I don't understand your question. There is one extra day in Feb; there isn't a whole extra week. Your report should still work. Please explain a little more detail.
  17. Kim296

    GLBCHL - Add new Table like APIBH

    You should be able to add a new table in design view by using the field explorer, right click on database fields, pull over the table that you wish to add and link to your existing tables. Then you should be able to add your invoice description. Hope this helps you.
  18. Kim296

    CONCATENATE GROUP RECORDS

    I found two formula's that allow you to concatenate detail records and I tried using it on group records and it works... Except it doesn't reset for new records; it just continues for ALL records. When using this to concatenate group records, does anyone know how I can reset it to start over on...
  19. Kim296

    loop

    Thank you Brian. I will try this.
  20. Kim296

    loop

    Can anyone tell me the right way to make the following loop through multiple search words. (Ex. Search1, Search2, Search3, etc.) Right now, it will only search the text using 1 search word. Shared StringVar SearchText := {@SEARCH1} ; StringVar Htm1 := "<font color=#FF0066>"; StringVar Htm2 :=...

Part and Inventory Search

Back
Top