Recent content by 156sting

  1. 1

    DoCmd.SendObject - Not letting me press send

    i will be moving to the outlook automation as i am using it in a different database just dont have time to change all my code over (theres a few reports i need to use it on)... just wondering if anyone had a similar issue to mine and if they have resolved it really to buy me more time
  2. 1

    DoCmd.SendObject - Not letting me press send

    its really weird, i've realised it must have something to do with the emails they being addressed to. this only started happening after upgrading to a new pc. i never had this issue on the previous pc i was using it with.... it is really weird......
  3. 1

    DoCmd.SendObject - Not letting me press send

    Hi guys, been a while. i have a button which sends a report by email using the DoCmd.SendObject acSendReport function. it has worked for a few years and never had an issue. basically when i press the button it loads my pdf into a new mail message in outlook, once i'm happy with it i press send...
  4. 1

    Google Cloud Services

    hey guys, after some information, currently i am running a db in 2 parts, both in access, a backend and a front end.. obviously backend holds all the data, and the tables are linked into the front end. i been looking at having the backed converted to an SQL server and use a service like Google...
  5. 1

    attach file on disk

    yeh thanks guys! forgot to reply back here!!
  6. 1

    Attach a file (.pdf) to email via access.

    YES!! this is what i was looking for! ty soo much!!
  7. 1

    attach file on disk

    hey guys, its been a while since i have posted on here, i have a form with lots of buttons and all working fine. the major function of this form is the buttons on the form all basically use DoCmd.SendObject to create reports from the database and email to clients, and it all works great! i...
  8. 1

    How to create a Macro to click a button

    ahslee dawg!! you my friend are a legend! all you guys on this forum are soo helpful, i am learning soo much! that is exactly what i want to do! its not a publicly accessible database, and the form that it runs thru only i use it! many thanks again, i look forward to my next problem :)
  9. 1

    How to create a Macro to click a button

    hey guys, soo i want to create a macro which clicks a button in my form. i tried doing Create sub macro and giving it the name ^6 (which is CTRL+6) and add the action RunCode and put the function name as btnCharge60Day_Click() (which is the were the code i want to run) but it doesnt work ...
  10. 1

    Saving a report as PDF

    just like pbaldy said, you need to take the names you want from a form. i have recently done this myself (and just like you im still learning) Dim TheFileDir Dim Warehouse Dim PONum Dim TheFileName As String TheFileDir = "Z:\Documents\Invoices\" Warehouse = Me.txtTheWarehouse & " " PONum...
  11. 1

    Button to add data to table

    Jack, thank you soo much for all your help.... i would not have been able to fix the issue. there were a few errors, but the data type conversion error was not in TimeCharge or PhotocopyCharge, it was in Code where i was trying to put a string into a Number so i made a slight modification and...
  12. 1

    Button to add data to table

    TimeCharge is a Number - the code i use to set variable as Dim TimeCharge As Integer and PhotocopyCharge is Currency. i've removed the quote marks from TimeCharge and PhotocopyCharge as well as just tried it alternate ways... how should i be handling currency and Integer data types ? when i...
  13. 1

    Button to add data to table

    so it seems the putting brackets around horrible name worked, however.. there is still some conversion issue... i get this error now http://imgur.com/a/GghTP
  14. 1

    Button to add data to table

    i changed to this from your advice, but still giving me syntax errors TheChargeDate = Format(Now(), "MM/dd/yyyy") Dim strSQL As String strSQL = "INSERT INTO [Charge Data](Date, Code, Number, Prospect, Detail, Time, Photocopy) VALUES (#" & TheChargeDate & "#, '" & ClientToCharge & "', '" &...
  15. 1

    Button to add data to table

    further to my question above, i've implemented the the code thanks to AuntiJack, Private Sub btnCharge60Day_Click() Dim TenementNumber As String Dim TenementProspect As String Dim ClientToCharge Dim TheChargeDate As Date Dim ChargeDescription As String Dim TimeCharge As Long Dim...
Top Bottom