Recent content by mobile75

  1. M

    script, module and function

    Thanks to all, my dear friends, I've solved changeing from private to public and applying a new different name
  2. M

    script, module and function

    I've create this simple script (file name test.vbs), I use it for scheduling a little job: dim accessApp set accessApp = createObject("Access.Application") accessApp.OpenCurrentDataBase("D:\Files\Galileo\SF Mail.mdb") accessApp.Run "MailOrdiniAgente" accessApp.Quit set accessApp = nothing...
  3. M

    print report problem

    Hi! I have a "simple" problem... My preview report is perfect, perfect color, perfect data, etc... But when I print it some part is disappeared. I've test and reload my printer driver and all is ok (other apps print all correctly)! Advice for me? Thanks :banghead:
  4. M

    Send email from access vba using outlook

    Try this code Private Sub BtnEmail_Click() Dim vMail, vMailA, vTipo, vNumero As String vMail = Me.email vMailA = Me.MAILAGENTE vTipo = Me.Tipo_Ordine vNumero = Me.Numero_Ordine vBCC = Me.Address Set OutApp = CreateObject("Outlook.Application") OutApp.Session.Logon Set OutMail =...
  5. M

    schedule and web

    Hi! I have 2 request of advice First, schedule: how can run a macro (for example) every 15 mins or every 3 days? Second, web: after previous "scheduling" I need to view result on a web page, how can I do it? This is my request: my friend ask me to modify his background desktop with an auto...
  6. M

    problem with sendobject

    I,ve solved all, thanks, great
  7. M

    problem with sendobject

    Just do it. Don't work. And I useing outlook 2007 with pst file, I haven't exchange server :banghead:
  8. M

    problem with sendobject

    I'm developing a few vba code for sending email automatically. I'm useing ACCESS2007 with OUTLOOK2007 First problem (but solved): - outlook advice me that someone are trying to send email... etc... etc... I've solved launching Outlook like as administrator (I hope this is a correct...
Top Bottom