C
cmoietvous
Hi everybody,
I try to create a button on Outlook 2002 to launch a custom forms. I have a
macro to realise this and everything that 's all right except to launch what
I do. In fact the value's onaction property isn't correct and is :
..onaction=="Application.ActiveExplorer.CurrentFolder.Items.Add(" & Chr(34) &
"IPM.Note" & Chr(34) & ").Display"
But the following macro is OK:
sub test()
Application.ActiveExplorer.CurrentFolder.Items.Add("IPM.Note").Display
End test
Of course the following onaction property is OK
..onaction="test"
But I don't want to do that!
Thanks you for your help.
I try to create a button on Outlook 2002 to launch a custom forms. I have a
macro to realise this and everything that 's all right except to launch what
I do. In fact the value's onaction property isn't correct and is :
..onaction=="Application.ActiveExplorer.CurrentFolder.Items.Add(" & Chr(34) &
"IPM.Note" & Chr(34) & ").Display"
But the following macro is OK:
sub test()
Application.ActiveExplorer.CurrentFolder.Items.Add("IPM.Note").Display
End test
Of course the following onaction property is OK
..onaction="test"
But I don't want to do that!
Thanks you for your help.