K
komobu
Hi;
I wrote a program that will scan through our database and automatically
create note items in Outlook 2003. I want to do a "find" to see if the
note item already exists. If it does, I would like the note updated. If
it doesnt, it will save the note. Using the calendar items, I would use
some code like this:
myFind = myFolder.Items.Find("[Subject] = '" + "Leave: " +
ltrim(rtrim(tmplv->Name)) + ' '+dtoc(tmplv->from) + ' thru
'+dtoc(tmplv->to)+"'")
if .not. type("myFind")= 'L'
myFind.delete()
n_ci = n_ci - 1
endif
Any idea on how I can find a Note item and check for it existance?
Thanks for any help.
I wrote a program that will scan through our database and automatically
create note items in Outlook 2003. I want to do a "find" to see if the
note item already exists. If it does, I would like the note updated. If
it doesnt, it will save the note. Using the calendar items, I would use
some code like this:
myFind = myFolder.Items.Find("[Subject] = '" + "Leave: " +
ltrim(rtrim(tmplv->Name)) + ' '+dtoc(tmplv->from) + ' thru
'+dtoc(tmplv->to)+"'")
if .not. type("myFind")= 'L'
myFind.delete()
n_ci = n_ci - 1
endif
Any idea on how I can find a Note item and check for it existance?
Thanks for any help.