Recent content by SLKDS

  1. S

    what Reference to be added to conncect to MS Access

    Which reference to be added to use Recordset object in Excel VBA. I added "Microsoft DAO 3.6 Object Library" reference but still its not working. I tried I tried DAO.Reader,but still it is not working. Plz help me on this. Thank in advance Sub t() 'Insert data in DB Dim dbs As Object Dim...
  2. S

    Items_ItemAdd function do not work for Outlook 2013

    okay. Thank you
  3. S

    Items_ItemAdd function do not work for Outlook 2013

    hi thank you. The Item object was not getting initialize and so the below code was not running.
  4. S

    Items_ItemAdd function do not work for Outlook 2013

    Someone plz provide solution to my issue
  5. S

    Items_ItemAdd function do not work for Outlook 2013

    Hi, I am trying to capture a newly arrived mail in outlook with respective subject line. The below code works for me on 2010 outlook but when new mail arrive in outlook 2013 ,Mrthod Items_ItemAdd do not get called. Option Explicit Private WithEvents Items As Outlook.Items Private Sub...
  6. S

    Items_ItemAdd function does not work for Outlook 2013

    Hi, I am trying to capture a newly arrived mail in outlook with respective subject line. The below code works for me on 2010 outlook but not working on 2013 outlook. Option Explicit Private WithEvents Items As Outlook.Items Private Sub Application_Startup() Dim olApp As Outlook.Application...
  7. S

    Reference to be add

    I'll try that and get back to you. thank you
  8. S

    Reference to be add

    No,Its text field in my case
  9. S

    Reference to be add

    Dim dbs As Object Set dbs = CreateObject("Access.Application") dbs.OpenCurrentDatabase "..Path of DB.accdb" Dim rst As Recordset strSQL = "SELECT * FROM Product WHERE OrderNo" _ & " ='" & Order_No & "';" Set rst = dbs.OpenRecordset(strSQL) ----Error line say Object doesn't support this method
  10. S

    Reference to be add

    I declare recordset as below and tried to set its value: Dim rst As Recordset strSQL = "SELECT * FROM Product WHERE OrderNo" _ & " ='" & Order_No & "';" Set rst = dbs.OpenRecordset(strSQL) ----Error line say Object doesn't support this method
  11. S

    Reference to be add

    Which reference to be added to use Recordset object in Excel VBA. I added "Microsoft DAO 3.6 Object Library" reference but still its not working. Plz help me on this. Thank in advance
  12. S

    Open Existing InfoPath File

    Please someone help me on this...
  13. S

    Open Existing InfoPath File

    Hi, I am very new to InfoPath. I want to open existing InfoPath file (where form is already designed) and want to add data in respective controls from XML file. thank you in advance.
Top Bottom