Search results

  1. Eljefegeneo

    Hyperlink or URL In Table and Forms

    I am just a amateur at all the programming nuances, but I found early on that trying to edit email and web pages was exasperating, especially for the users who didn't understand why when they tried to edit either of these fields that they were ending up sending unwanted messages or going to...
  2. Eljefegeneo

    Solved Setting a Due Date

    This also worked great. Thank you so much.
  3. Eljefegeneo

    Solved Setting a Due Date

    Worked fine except That I had to use: DueDate: DateSerial(Year(Fdate),Month(Fdate)+3,15) because when I pasted the above it kept putting in [] and the query didn't seem to like that. Thank you. Can now go back to doing nothing again, stuck at home and the golf course is still closed.
  4. Eljefegeneo

    Solved Setting a Due Date

    I am trying to set a "Due Date" of the 15th of the month 3 months in advance. For example, if I send out an invoice for May, and select that month as the invoice Month, I use the function: Public Function FDIM(Optional dtmDate As Date = 0) As Date ' Return the first day in the specified...
  5. Eljefegeneo

    Solved Go To The Next Record

    Demo works fine, except if the next record is missing. That should nto be a problem. Not trying to make this too complicated but I plan just to show if an error message occurs, that the user has to go to another method of opening a record through a report. Unless there is an easy fix to...
  6. Eljefegeneo

    Solved Go To The Next Record

    This merely brings me back to the first record in the table. Going to try another suggestion. Just thought you wiould like to know my result on this.
  7. Eljefegeneo

    Solved Go To The Next Record

    Been busy and I do appreciate all the comments and suggestions. Will be working on this tomorrow. Thanks to all.
  8. Eljefegeneo

    Solved Go To The Next Record

    I did do that, didn't I? First two lines of the code.
  9. Eljefegeneo

    Solved Go To The Next Record

    If I use the standard VBA to open a specific form, that is: DoCmd.OpenForm "frmNewNames", , , "ID = " & Forms!frmLastN.txtLastN I open the exact record I want. But when I get to frmNewNames and then want to go to the next record it says I cannot. I've looked up a solution but can't seem to...
  10. Eljefegeneo

    Solved Need Correct Where Condition

    Same error message. Syntax error missing operator. I did a work around by putting two hidden text boxes on the form from which the report is run. Minus2Weeks with it =DateAdd('ww',-2,Date()) Plus2Weeks with it =DateAdd('ww',2,Date()) and used the code DoCmd.OpenReport...
  11. Eljefegeneo

    Solved Need Correct Where Condition

    Did that and the error is Runtime error 307 Between Operator Without And
  12. Eljefegeneo

    Solved Need Correct Where Condition

    I have the following code that opens the report correctly: Daily Followup: DoCmd.OpenReport "rptSalesContactsOpen", acViewReport, , WhereCondition:="[FollowUpDate] = Date()" Weekly Followup: DoCmd.OpenReport "rptSalesContactsOpen", acViewReport, , WhereCondition:="DatePart('ww',[FollowUpDate])...
  13. Eljefegeneo

    Use Word Document in body of email

    I tried the paste to the hidden text box and got this when Outlook opened. <div><font face="Times New Roman" size=3 color=black>To:you Details </font></div> <div><font face="Times New Roman" size=3 color=black>please add:</font></div> <div><font face="Times New Roman" size=3 color=black>1. a...
  14. Eljefegeneo

    Use Word Document in body of email

    Using Access 2010 Late Binding I am attempting to send an email with a word document in the body of the email. I have a form which I can fill out (or is filled out with the data of another form). The code below works fine in previous applications where I had .Body = Cstr(Me.MessageBoy)...
  15. Eljefegeneo

    US States in a Table

    You forgot Marshall Islands, MH.
  16. Eljefegeneo

    Access 2010 slow on Windows 10

    Sorry no I do not. I am sure that it is just my computer that is slow, but it could also be that I have way too many codings in my Access program. I am just living with it. It doesn't seem to affect the running of Access, just bringing up the module portion to edit or add new coding.
  17. Eljefegeneo

    Firefox

    Firefox just warned me that there was a security problem with this site. Of course I ignored it but thought you would like to know.
  18. Eljefegeneo

    Email via Outlook

    My quick guess before I go to bed is that you need to use late binding. Check out my long ordeal with this: https://www.access-programmers.co.uk/forums/showthread.php?t=307416&page=5 post # 73.
  19. Eljefegeneo

    Report Sort Oder On Open

    As I figured, something so simple I was missing it. But just curious, is there away of passing the variable from the one form to the report OnOpen event.
  20. Eljefegeneo

    Report Sort Oder On Open

    I would like to set the sorting on a report with vba. I know that I can do this via the OnOpen event with code something like: Dim sOrder As String sOrder = "[DateOfContact] Asc" Me.OrderBy = sOrder Me.OrderByOn = True But want I want do to is set the sOrder from a button on another...
Back
Top Bottom