NULL

Status
Not open for further replies.
J

Joel Allen

Outlook 2003

SP3

Hello,

How do I make a property NULL. This isn't working:

item.userproperties("test") = NULL

Can someone help me with the syntax?

Thanks,

Joel
 
Do you mean you need to remove a user property? Why not call

UserProperty.Delete?

Dmitry Streblechenko (MVP)

-

"Joel Allen" <joelallen123@hotmail.com> wrote in message

news:eT6MLel$JHA.4376@TK2MSFTNGP04.phx.gbl...
> Outlook 2003
> SP3

> Hello,

> How do I make a property NULL. This isn't working:

> item.userproperties("test") = NULL

> Can someone help me with the syntax?

> Thanks,
> Joel
>
 
Can I enter a value in the field later, or does it permanently delete the

field? Will it one off the form?

Thanks,

Joel

"Dmitry Streblechenko" <dmitry@dimastr.com> wrote in message

news:uacA%230l$JHA.1252@TK2MSFTNGP04.phx.gbl...
> Do you mean you need to remove a user property? Why not call
> UserProperty.Delete?

> > Dmitry Streblechenko (MVP)
>

>

>

> -
> "Joel Allen" <joelallen123@hotmail.com> wrote in message
> news:eT6MLel$JHA.4376@TK2MSFTNGP04.phx.gbl...
> > Outlook 2003
> > SP3
>

>> Hello,
>

>> How do I make a property NULL. This isn't working:
>

>> item.userproperties("test") = NULL
>

>> Can someone help me with the syntax?
>

>> Thanks,
> > Joel
> >


>
 
Yes, you can enter the value later.

Adding a user peoepry using UserProperties.Add does not one-off an item.

Dmitry Streblechenko (MVP)

-

"Joel Allen" <joelallen123@hotmail.com> wrote in message

news:ejAFFSm$JHA.1492@TK2MSFTNGP03.phx.gbl...
> Can I enter a value in the field later, or does it permanently delete the
> field? Will it one off the form?

> Thanks,
> Joel

> "Dmitry Streblechenko" <dmitry@dimastr.com> wrote in message
> news:uacA%230l$JHA.1252@TK2MSFTNGP04.phx.gbl...
> > Do you mean you need to remove a user property? Why not call
> > UserProperty.Delete?
>

>> > > Dmitry Streblechenko (MVP)
> >

> >

> >

> > -
> > "Joel Allen" <joelallen123@hotmail.com> wrote in message
> > news:eT6MLel$JHA.4376@TK2MSFTNGP04.phx.gbl...
> >> Outlook 2003
> >> SP3
> >
>>> Hello,
> >
>>> How do I make a property NULL. This isn't working:
> >
>>> item.userproperties("test") = NULL
> >
>>> Can someone help me with the syntax?
> >
>>> Thanks,
> >> Joel
> >>

>

>>


>
 
Actually, using UserProperties.Add on a custom form item will indeed one-off

the item. Outlook has to store the field definition in the item, because

it's not in the form.

Sue Mosher

"Dmitry Streblechenko" <dmitry@dimastr.com> wrote in message

news:OX6sKg5$JHA.2604@TK2MSFTNGP03.phx.gbl...
> Yes, you can enter the value later.
> Adding a user peoepry using UserProperties.Add does not one-off an item.



> -
> "Joel Allen" <joelallen123@hotmail.com> wrote in message
> news:ejAFFSm$JHA.1492@TK2MSFTNGP03.phx.gbl...
> > Can I enter a value in the field later, or does it permanently delete the
> > field? Will it one off the form?
>

>> Thanks,
> > Joel
>

>> "Dmitry Streblechenko" <dmitry@dimastr.com> wrote in message
> > news:uacA%230l$JHA.1252@TK2MSFTNGP04.phx.gbl...
> >> Do you mean you need to remove a user property? Why not call
> >> UserProperty.Delete?
> >> -
> >> "Joel Allen" <joelallen123@hotmail.com> wrote in message
> >> news:eT6MLel$JHA.4376@TK2MSFTNGP04.phx.gbl...
> >>> Outlook 2003
> >>> SP3
> >>
>>>> Hello,
> >>
>>>> How do I make a property NULL. This isn't working:
> >>
>>>> item.userproperties("test") = NULL
> >>
>>>> Can someone help me with the syntax?
> >>
>>>> Thanks,
> >>> Joel
> >>
>>
>>>

>

>>


>
 
Ah! I am starting to forget wonderful Outlook forms:)

Dmitry Streblechenko (MVP)

-

"Sue Mosher [MVP]" <suemvp@turtleflock.com> wrote in message

news:%23AnMiS8$JHA.1488@TK2MSFTNGP03.phx.gbl...
> Actually, using UserProperties.Add on a custom form item will indeed
> one-off the item. Outlook has to store the field definition in the item,
> because it's not in the form.

> > Sue Mosher
> > >

> "Dmitry Streblechenko" <dmitry@dimastr.com> wrote in message
> news:OX6sKg5$JHA.2604@TK2MSFTNGP03.phx.gbl...
> > Yes, you can enter the value later.
> > Adding a user peoepry using UserProperties.Add does not one-off an item.

>
> > -
> > "Joel Allen" <joelallen123@hotmail.com> wrote in message
> > news:ejAFFSm$JHA.1492@TK2MSFTNGP03.phx.gbl...
> >> Can I enter a value in the field later, or does it permanently delete
> >> the field? Will it one off the form?
> >
>>> Thanks,
> >> Joel
> >
>>> "Dmitry Streblechenko" <dmitry@dimastr.com> wrote in message
> >> news:uacA%230l$JHA.1252@TK2MSFTNGP04.phx.gbl...
> >>> Do you mean you need to remove a user property? Why not call
> >>> UserProperty.Delete?
> >>> -
> >>> "Joel Allen" <joelallen123@hotmail.com> wrote in message
> >>> news:eT6MLel$JHA.4376@TK2MSFTNGP04.phx.gbl...
> >>>> Outlook 2003
> >>>> SP3
> >>>
>>>>> Hello,
> >>>
>>>>> How do I make a property NULL. This isn't working:
> >>>
>>>>> item.userproperties("test") = NULL
> >>>
>>>>> Can someone help me with the syntax?
> >>>
>>>>> Thanks,
> >>>> Joel
> >>>
>>>
>>>
>>
>>>

>

>>


>
 
If I could only be so lucky... <g

"Dmitry Streblechenko" <dmitry@dimastr.com> wrote in message

news:uz%235G3FAKHA.4168@TK2MSFTNGP05.phx.gbl...
> Ah! I am starting to forget wonderful Outlook forms:)

> > Dmitry Streblechenko (MVP)
>

>

>
 
Status
Not open for further replies.
Back
Top