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 strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Recent content by diezzz

  1. diezzz

    Importing from site?

    I don't know if it can be done, on BSD wget <adress> -o file.html grep "file to find" file.html (PS i suck on bsd as much as on VBA). I would like to automaticaly extract in Access each day when i press a button a table from a site. As for example, if possible, everytime i press this button i...
  2. diezzz

    How to make a windows that pops every hour?

    Hello, I'm trying to create a form that will pop-up every 60 minutes. I have no ideea how this could be done, i can't manage to build an event or something to make it pop every hour. Can it be done or are there any alternatives? Thanks for your answer, Diez
  3. diezzz

    OUTLOOK - VBA

    That worked great, thanks alot. However i have another question. In a mail the attachement is shown as a little telephon icon. The body of the mail is : Simply click on the "link" to have acces to the application, or use your desktop icon (the phone icon here). Bla bla bla... However, when i...
  4. diezzz

    Reports acces vs excel - some info

    Hello, To build reports i use querys as source, however i do not build themin acces, i simply copy the query result and paste it in excel. Moslty i'm using crosstab querys, and as columns i have a field that can always change values. So after i copy the results in an excel, to have the final...
  5. diezzz

    OUTLOOK - VBA

    Hello, I've built an automatic mail to send from time to time to some usors. The mail is dispayed when i run a macro and then i send it. I'm having few questions however. The code looks like that set InfoMail as ... infomail.subject = ... infomail.body = .... infomail.display However, i...
  6. diezzz

    Query solution

    it works now fine, thank you very much:)
  7. diezzz

    Query solution

    it would work only that the field date returns not only the date, but also the hour.
  8. diezzz

    Query solution

    PARAMETERS [Type the day here] DateTime; TRANSFORM Count(mails.ingempid) AS CountOfMail SELECT mailuri.Name, Count(mail.ingempid) AS [Mail totals] FROM mails WHERE Date(mails.date)=[Type the day here] GROUP BY mails.Nume PIVOT Hour([date]);
  9. diezzz

    Query solution

    i have a date field when i open the query i'll want it to ask me to introduce the exact date, for example today is 11/16/2006. so i use Date(mails.date) = [type your date here] and the parameter is set up like PARAMETERS [type your date here] datetime, however it gaves me an error message ...
  10. diezzz

    Query solution

    if i do PARAMETERS [type the date here] datetime; ...... where date([date]) = [type your day here] it won't work. I know i'm a pain...
  11. diezzz

    Query solution

    That i didn't know. this is great. Thank you very much
  12. diezzz

    Query solution

    TRANSFORM Count(mails.Mail) AS CountOfMail SELECT mails.employeeid, Count(Mails.Mail) AS [Total Of Mail] FROM Mails WHERE day([date])= [type your day here] date/time GROUP BY mails.employeeID PIVOT Hour([date]); won't work. When i open the crosstab query i would like to ask me for the day...
  13. diezzz

    Query solution

    yeap it works now but i still have a problem. Could i build a parameter report on the crosstab query? If i use the clause where day([date]) = [type the day here] it tells me that microsoft jet sql can't recognize my parameter.
  14. diezzz

    Query solution

    i don't know why, but it seem to work now!? In my where clause there was before Where day(date) = day(date()) that was the problem?
  15. diezzz

    Query solution

    Yes i do use a date field Now this is my table : Mails(EmployeeID,Mail,Date) And the SQL of the crosstab is TRANSFORM Count(mails.Mail) AS CountOfMail SELECT mails.employeeid, Count(Mails.Mail) AS [Total Of Mail] FROM Mails WHERE day([date])=day(date()) GROUP BY mails.employeeID PIVOT...

Part and Inventory Search

Back
Top