PC Review
Forums
Newsgroups
Microsoft Outlook
Microsoft Outlook Form Programming
published forms as messages
Forums
Newsgroups
Microsoft Outlook
Microsoft Outlook Form Programming
published forms as messages
![]() |
published forms as messages |
|
|
Thread Tools | Rate Thread |
|
|
#1 |
|
Guest
Posts: n/a
|
Hello Sue,
I have some problem with my published IPM.Note-based forms. The items created by these forms are not really messages. They cannot be view in the preview pane (this item has interactive content...) and the icon shown is the same as IPM.Post. What can I do ? Thank you AnDong PS : I use google to post my messages and it takes hours before they appear. I know there is a website but i can't find the adress...please. |
|
|
|
#2 |
|
Guest
Posts: n/a
|
This sounds like normal behavior. A form that has contained code will not
show anything in the preview pane. The icon will be the pushpin unless you change it on the (Properties) page of the form in design mode. -- Sue Mosher, Outlook MVP Author of Microsoft Outlook Programming - Jumpstart for Administrators, Power Users, and Developers http://www.outlookcode.com/jumpstart.aspx "An Dong" <bananamaster@ifrance.com> wrote in message news:5ef6dd9e.0408250333.2f03b4f7@posting.google.com... > Hello Sue, > I have some problem with my published IPM.Note-based forms. The items > created by these forms are not really messages. They cannot be view in > the preview pane (this item has interactive content...) and the icon > shown is the same as IPM.Post. What can I do ? > Thank you > AnDong > PS : I use google to post my messages and it takes hours before they > appear. I know there is a website but i can't find the > adress...please. |
|
|
|
#3 |
|
Guest
Posts: n/a
|
Yes, but I wrote no code in it.
"Sue Mosher [MVP-Outlook]" <suemvp@outlookcode.com> wrote in message news:<##1zg4riEHA.344@TK2MSFTNGP10.phx.gbl>... > This sounds like normal behavior. A form that has contained code will not > show anything in the preview pane. The icon will be the pushpin unless you > change it on the (Properties) page of the form in design mode. > > -- > Sue Mosher, Outlook MVP > Author of > Microsoft Outlook Programming - Jumpstart for > Administrators, Power Users, and Developers > http://www.outlookcode.com/jumpstart.aspx > > > "An Dong" <bananamaster@ifrance.com> wrote in message > news:5ef6dd9e.0408250333.2f03b4f7@posting.google.com... > > Hello Sue, > > I have some problem with my published IPM.Note-based forms. The items > > created by these forms are not really messages. They cannot be view in > > the preview pane (this item has interactive content...) and the icon > > shown is the same as IPM.Post. What can I do ? > > Thank you > > AnDong > > PS : I use google to post my messages and it takes hours before they > > appear. I know there is a website but i can't find the > > adress...please. |
|
|
|
#4 |
|
Guest
Posts: n/a
|
Your issue is totally different. I don't think Outlook renders frames very
well, especially Outlook 2003, which doesn't load external content. -- Sue Mosher, Outlook MVP Author of Microsoft Outlook Programming - Jumpstart for Administrators, Power Users, and Developers http://www.outlookcode.com/jumpstart.aspx "Appian Brendan" <AppianBrendan@discussions.microsoft.com> wrote in message news:A2524B1C-1D71-4D55-AFB3-777096E9FBDB@microsoft.com... > I'm not sure what you mean by contained code. I only ask because I am > having > a similar problem. I'm trying to display frames in the HTMLBody property > of > a PostItem. The frames show up, but the content of each frame is empty. > I > pointed them to google and yahoo just to see if they'd show up, but there > is > nothing there. |
|
|
|
#5 |
|
Guest
Posts: n/a
|
Hello,
Final match it seems. Point 1 : I realy need to use a custom form (myform1) as my default form Point 2 : the messages I send have to be viewable in the preview pane Point 3 : custom forms sometimes can't be view in the preview pane (espacially in mine) Consequence : I need to send items based on the standard IPM.Note form Mean : put code into myform1 (function item_send()) to copy the content of my item into a standard item and send it. Problem : security prompts Solution : here i need your help Case 1 : - I create an intermediate form (myform2) which I define as the default form instead of myform1. - I put code into myform2 (function item_open()) to open a redemption safemailitem when my form is lunched. - I set an instence of myform1 (myitem1) as safeitem.item - when I send the message, the code in myitem1 is run and opens an other item (IPM.Note), then copies the contant of myitem1 into this item, sends this item and close myitem1. --> How can I refer to myitem1 as a safemailitem, so as to avoid security prompts ? Can I refer to it from itself (wow, i don't know whether my english is still correct...), I mean refer to an item as a safeitem whithin its own code ? Or can i write a function item_send in myform1 so that when I send myitem1, the code runs a function in myitem2 (which is the instance of myform2 i first need to open) ? This would be great because i know how to refer to myitem1 as a safeitem from myitem2... Case 2 : - I create no intermediate form, but i write a function item_send() to call a macro from myintem1. This macro creates and fills an IPM.Note based item and i avoid security prompts by using an authentified signature (wow, my english is getting better and better...). This item I send. Please help me end this once and for all ! Thank you AnDong (PS : if sometimes you don't understand my english, tell me. better saying things twice than going on whith that problem !) *** Sent via Developersdex http://www.developersdex.com *** Don't just participate in USENET...get rewarded for it! |
|
|
|
#6 |
|
Guest
Posts: n/a
|
Set objSafeMyItem1 = CreateObject("Redemption.SafeMailItem")
Item.Save objSafeMyItem1.Item = Item -- Sue Mosher, Outlook MVP Author of Microsoft Outlook Programming - Jumpstart for Administrators, Power Users, and Developers http://www.outlookcode.com/jumpstart.aspx "An Dong" <bananamaster@ifrance.com> wrote in message news:epgWAlFjEHA.3968@TK2MSFTNGP10.phx.gbl... > --> How can I refer to myitem1 as a safemailitem, so as to avoid > security prompts ? Can I refer to it from itself (wow, i don't know > whether my english is still correct...), I mean refer to an item as a > safeitem whithin its own code ? |
|
|
|
#7 |
|
Guest
Posts: n/a
|
Hello,
actually, the code doesn't work. I put a msgbox before and after objSafeMyItem1.Item = Item, the box before appears, the box after never appears ![]() what can i do ? Thanks AnDOng "Sue Mosher [MVP-Outlook]" <suemvp@outlookcode.com> wrote in message news:<u6VVQTHjEHA.1376@TK2MSFTNGP11.phx.gbl>... > Set objSafeMyItem1 = CreateObject("Redemption.SafeMailItem") > Item.Save > objSafeMyItem1.Item = Item > > -- > Sue Mosher, Outlook MVP > Author of > Microsoft Outlook Programming - Jumpstart for > Administrators, Power Users, and Developers > http://www.outlookcode.com/jumpstart.aspx > > > "An Dong" <bananamaster@ifrance.com> wrote in message > news:epgWAlFjEHA.3968@TK2MSFTNGP10.phx.gbl... > > > --> How can I refer to myitem1 as a safemailitem, so as to avoid > > security prompts ? Can I refer to it from itself (wow, i don't know > > whether my english is still correct...), I mean refer to an item as a > > safeitem whithin its own code ? |
|
|
|
#8 |
|
Guest
Posts: n/a
|
Maybe you could show your code and try running it without any On Error
statement? -- Sue Mosher, Outlook MVP Author of Microsoft Outlook Programming - Jumpstart for Administrators, Power Users, and Developers http://www.outlookcode.com/jumpstart.aspx "An Dong" <bananamaster@ifrance.com> wrote in message news:5ef6dd9e.0408300212.1232bcea@posting.google.com... > Hello, > actually, the code doesn't work. I put a msgbox before and after > objSafeMyItem1.Item = Item, the box before appears, the box after > never appears ![]() > what can i do ? > Thanks > AnDOng > > "Sue Mosher [MVP-Outlook]" <suemvp@outlookcode.com> wrote in message > news:<u6VVQTHjEHA.1376@TK2MSFTNGP11.phx.gbl>... >> Set objSafeMyItem1 = CreateObject("Redemption.SafeMailItem") >> Item.Save >> objSafeMyItem1.Item = Item >> >> "An Dong" <bananamaster@ifrance.com> wrote in message >> news:epgWAlFjEHA.3968@TK2MSFTNGP10.phx.gbl... >> >> > --> How can I refer to myitem1 as a safemailitem, so as to avoid >> > security prompts ? Can I refer to it from itself (wow, i don't know >> > whether my english is still correct...), I mean refer to an item as a >> > safeitem whithin its own code ? |
|
![]() |
|
| Thread Tools | |
| Rate This Thread | |
|
|

Main Page 


