Recent content by DAVID POWELL

  1. D

    Any updates or fixes that would make this code stop working just moving emails to another folder

    Excel vba Outlook 2010 vba I have the follwoing code coming from Excel with some parameters being used. Just simply trying to move some emails from one folder in a profile to another folder in another profile. It stopped working : Dim objOutlook As Outlook.Application Dim objNamespace As...
  2. D

    Disable or hide "reply" and "reply to all" and "forward" in email from access vba

    I have created an email in Access vba. Are there methods to Disable or hide "reply" and "reply to all" and "forward" in email from access vba..? Thanks David Powell
  3. D

    Custom form with html hyperlink

    Diane, Thanks.. the "item_open" event (since its scripting) will not fire off anyway... Just clicked into my head. Do not know what i'm thinking.
  4. D

    Custom form with html hyperlink

    Outllok 2010 Since the security patch kills my vbscript and i cant get my company to remove it. Is there a way to put a html hyperlink to a certain webpage directly on the Custom form ? Thanks david powell
  5. D

    Security patch seems to kill vbscript on Enterprise Level

    Diane, Thanks, but That is my concern, I cant ask a multi-billion company to set "registry keys" on 7,000 machines. and respectfully they will not install "powershell scripts". Is Microsoft specifically, going to fix the issue. Thanks David Powell
  6. D

    Security patch seems to kill vbscript on Enterprise Level

    Diane, The security patch(s)(KB3203467, KB4011196), OFFICE 2010, on vbscript behind outlook custom forms, seems like a killer for any application in place. with out the"hack" fixes"Unistalling", "Manual Registry Fixes"... Is microsoft truly aware of what this is doing ? Maybe i'm being a...
  7. D

    Add Tetxbox at form open

    I have a custom form and trying to create a textbox on the message page at open.. Sub Item_Open() ' Sets the name of page on the form (P.2) Set MyFormPage = Item.GetInspector.ModifiedFormPages("Message") Set MyControl = MyFormPage.Controls.Add("Forms.TextBox.4") MyControl.Left = 20...
  8. D

    populating listbox on custom form from Access

    ok, I had to place the code on the outllok custom form itself and pull the data in from a sql connection to sql server. and then did this: Set objControlu = objPage.Controls("ListBox2") objControlu.ColumnCount = 4 objControlu.ColumnWidths = "30 pt;30 pt;30 pt;30 pt;30 pt" j = 0 With objControlu...
  9. D

    populating listbox on custom form from Access

    This part is from a command button on the outlook custom form: This is only loading one field and i have the column count to 2 and column width 10 pt;10 pt also, trying this and setting my listbox accordingly: It will only load one column. j = 0 With objControlu do .AddItem .List(j, 0) =...
  10. D

    populating listbox on custom form from Access

    also, trying this and setting my listbox accordingly: It will only load one column. With objControlu do .AddItem .List(j, 0) = rs1.Fields(0) .List(j, 1) = rs1.Fields(1) j = j + 1 rs1.MoveNext loop until rs1.eof End With
  11. D

    populating listbox on custom form from Access

    Do either of your attempts work if the listbox is in Access? NO Still not working, but. The Column Count for the Listbox..Should be 9 because i have nine fields in the query. ? as shown above. and my column widths are ok ? I know the array has data because i was running a small bit of code...
  12. D

    populating listbox on custom form from Access

    Here are my properties for the Listbox on the Custom Outlook form.. I actually only have 9 fields. so the original post is incorrect with the column widths
  13. D

    populating listbox on custom form from Access

    Outlook 2010 Access 2010 vba I have a custom form that contains a Listbox and i need to fill it from access vba code: rsArray = rst.GetRows Set lstDetailData = objItem.GetInspector.ModifiedFormPages("DsmEmail").Controls("lstDetailData") lstDetailData.List = rsArray This is not working...
  14. D

    Keep Original html body when forwarding an email

    this worked: eBody = "I Have Reviewed and Approved the following pricing escalation." & "<br>" _ & "Please Review the Request and advise if you support the links below." & "<br>" _ & myForward.HTMLBody Thanks for direction dp
Back
Top