Search results

  1. pr2-eugin

    Timed log off

    Have you looked into ACC: How to Detect User Idle Time or Inactivity? That could be modified a little bit to achieve what you need.
  2. pr2-eugin

    Access 2010/Visual basic

    Hello Stev, Welcome to AWF :) I just came across this : https://stackoverflow.com/questions/29119359/microsoft-access-2010-visual-basic I would just like to point out to you that, although it is OK to cross post, it would be a good practice to let others know you have similar question asked...
  3. pr2-eugin

    New database Query or Form

    Just Googled this, and got a hit on this link http://www.eraserve.com/tutorials/MS_ACCESS_VBA_Get_Indexed_Fields.asp
  4. pr2-eugin

    Clear only one filter

    Your question might need a little bit more details.
  5. pr2-eugin

    Cannot typ in fields.

    Could have made the Form Read Only.
  6. pr2-eugin

    Combobox with dates

    Hello VaYooper, Welcome to AWF :) Well to be honest, there is not much info on why you get the info. The problem being you have not showed what you have the combo box, the rowsource of the setup. Regarding your second query. So you want a Combo Box to have three options, within year...
  7. pr2-eugin

    rounding negitive numbers up to 0

    SQL Please. :)
  8. pr2-eugin

    rounding negitive numbers up to 0

    Could you post your actual SQL Query please?
  9. pr2-eugin

    rounding negitive numbers up to 0

    You could use an IIF, something like, NewField : IIF([OldFieldName] < 0, 0, [OldFieldName])
  10. pr2-eugin

    Multi list to select reports send by email

    Please for the love of Pete, Please use Code Tags when posting VBA Code
  11. pr2-eugin

    shell to/from other MS documents

    Okay, how about taking one step back and calmly explaining what is that you want to achieve in simple English, without any technical jargon?
  12. pr2-eugin

    Query to return number before letters

    Try the Val Function. ? Val("7pol2try36") 7 ? Val("12cet9fre55") 12 ? Val("10yea3gtr77") 10
  13. pr2-eugin

    Criteria Question

    Something like this is what you need, WHERE (([Survey Schedule].[Field done] = True) Or (([Survey Schedule].[Color Code] = "o") AND ([Survey Schedule].[Field done] = False)))
  14. pr2-eugin

    use if condition expression when true as result

    What is the problem with using the one you just got?
  15. pr2-eugin

    Only display specified records

    You can, is the straight forward answer. Although how you want to achieve it is a different question. Normally, you would have to use a Form, with several Text Boxes for each name, however, this could be overcome by using VBA - but you need to do some looping and coding.
  16. pr2-eugin

    Automating Emails

    Here is how you send email from Access VBA using CDO (Collaboration Data Objects) : http://www.blueclaw-db.com/access_email_gmail.htm I would not go for Third party myself. Here is some info. http://www.outlook-apps.com/disable-outlook-security-warning/
  17. pr2-eugin

    Cancel appointment

    Define "Cancel an Appointment". What happens to the record in the table when an appointment is marked to be cancelled?
  18. pr2-eugin

    Automating Emails

    Well this is a well known problem, this feature was added in Outlook 2007 and up, if I am correct. You can use Third Part software or use CDO.
  19. pr2-eugin

    Average price of last 5 line by items by recent date

    Somethign like, SELECT PARTID, Avg(Price) As avgPrice, Min([Date]) As MinDate FROM productTable GROUP BY PARTID
  20. pr2-eugin

    Average price of last 5 line by items by recent date

    How is Average of 5 and 6 = 6?
Back
Top Bottom