I'm trying to create new outlook 2003 calendar entry from VFP.
Following code works fine:
myOlApp = CREATEOBJECT("outlook.application")
myItem = myOlApp.CreateItem(1)
myItem.Subject=mySubject
myItem.Body=myBody
myItem.Start=mySTart
myItem.Duration = 30
myItem.Save
However, when running same...
instead of:
UPDATE DISTRIBUTORS.DBO.DISTRIBUTORS SET MAILADDRESS1 = '1919 SOUTH B'BOB STREET' WHERE DIST_ID=1093
try:
UPDATE DISTRIBUTORS.DBO.DISTRIBUTORS SET MAILADDRESS1 = "1919 SOUTH B'BOB STREET" WHERE DIST_ID=1093
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.