Search results

  1. L

    Notify When Question Is Answer

    Galaxiom, Got it, but which one is for e-mail notification for answered questions ONLY ?
  2. L

    Notify When Question Is Answer

    I don't see a 'Control' panel. Where is it found ?
  3. L

    Convert A Field (Date) In A Table To Julian Date

    Ridders, That worked . . . Thanks ! ! !
  4. L

    Notify When Question Is Answer

    Is it possible to get an e-mail when someone answers a submitted questions ?
  5. L

    Convert A Field (Date) In A Table To Julian Date

    Pat/Ridders, I'm running the code a button on the form. The statement is as follows: Right(Year([NextPaymentDate]), 2) & DatePart("y", [NextPaymentDate]) Unfortunately, I'm not getting a leading zero for two (2) digits dates. If it possible to use the above command for two (2) digits date...
  6. L

    Convert A Field (Date) In A Table To Julian Date

    Pat, I tried your suggestion (shown below). Nothing is being returned. What am I doing wrong ? 'NextPaymentDate' is a textbox on the form. Format(NextPaymentDate, "yy") & DatePart("y", NextPaymentDate)
  7. L

    Convert A Field (Date) In A Table To Julian Date

    Arnelgp, I'm receiving the below error for your recommended (as shown below) VBA statement. It appears that a reference is missing. Which one(s) is the statement looking for ? Undefined function 'JulianToDate' in expression DoCmd.RunSQL "Insert Into Bills (NextPaymentDate) SELECT...
  8. L

    Open Database Form In Windows 10 Startup

    Ridder, I'll try adding the shortcut to the 'Startup' folder. If this is still slow, I'll re-read your previous comments. Thanks ! ! !
  9. L

    Listbox Value To Textbox To Table

    Arnelgp, Thanks ! ! ! I'll try this . . .
  10. L

    Open Database Form In Windows 10 Startup

    Ridders, The report in the database can not dragged into the Windows 'Startup' folder. Also, this report changes (based on the date).
  11. L

    Open Database Form In Windows 10 Startup

    Ridders, I'm referring to the Windows 'Startup'.
  12. L

    Convert A Field (Date) In A Table To Julian Date

    No, just answering someone's question.
  13. L

    Open Database Form In Windows 10 Startup

    Static, This worked . . . Thanks ! ! ! . . . But it loads very slow. Anyway to speed it up ? I have a report starting upon opening of the database.
  14. L

    Convert A Field (Date) In A Table To Julian Date

    Plog, What I'm looking for is julian date format of yyddd.
  15. L

    Listbox Value To Textbox To Table

    Ridders, Sorry for the delay. I have not had time to devote for the project that I'm working on. To answer your question, I'm was referring to ===> yyddd date format. Thanks ! ! !
  16. L

    Locate All Questions For Forums

    How can I locate all questions that I submitted for all forums ? Currently, if I miss logging in, then I have go thorough each screen of questions to find mine (no matter which forum).
  17. L

    Listbox Value To Textbox To Table

    I have a form ('Form1') that has a listbox ('Listbox1'). I want to double click on the listbox value and select a date from a textbox ('Date/Time' type) and add this record to an existing table. I figured out to get the value from a listbox (see below), but can't figure out how to add the...
  18. L

    Convert A Field (Date) In A Table To Julian Date

    Plog, I used the below format for my query. Do you see a problem with this ? SELECT MyDate.Bill_Desc, MyDate.DeliveryOn, MyDate.Category, DateDiff("d",[DeliveryOn],CDate("1/1/2018"))*-1+1 AS JulianDate FROM MyDate;
  19. L

    Convert A Field (Date) In A Table To Julian Date

    How can I convert a field (with a date) to a Julian date in a query (SQL) ?
  20. L

    Open Database Form In Windows 10 Startup

    Thanks ! ! ! I'll try this.
Back
Top Bottom