Re: Automating Exchange Calendar (and Outlook, possibly)

2019-02-13 Thread Ted Roche
On Wed, Feb 13, 2019 at 2:32 AM wrote: > > I would use Redemption, which offers a whole objectstack to address the > Exchangeserver directly. > http://www.dimastr.com/redemption/home.htm Good suggestion! I used Redemption years ago (okay, decades) when MS first broke Outlook Automation,

Re: Automating Exchange Calendar (and Outlook, possibly)

2019-02-12 Thread Kurt at VR-FX
Sorry - but, I think this is THE MOST Viable option!!! Either that - or Order yourself a Case of Excedrin - since you will probably need it! :-) -K- On 2/12/2019 12:08 PM, Ted Roche wrote: Run screaming into the woods? (My choice) ___ Post

Re: Automating Exchange Calendar (and Outlook, possibly)

2019-02-12 Thread Stephen Russell
Powershell is the tool to write the script in. Call that script from VFP. On Tue, Feb 12, 2019 at 4:44 PM Vince Teachout wrote: > On 02/12/19 3:08 PM, Ted Roche wrote: > > Hypothetically, if you had a VFP application and wanted to start > processing > > Shared group calendars in Exchange where

Re: Automating Exchange Calendar (and Outlook, possibly)

2019-02-12 Thread Vince Teachout
On 02/12/19 3:08 PM, Ted Roche wrote: Hypothetically, if you had a VFP application and wanted to start processing Shared group calendars in Exchange where the users have Outlook on their desktop, how would you go about doing that? Automate exchange with COM Add-ins or .NET code? Automate

RE: Automating Outlook 2007

2011-10-21 Thread Dave Crozier
...@leafe.com [mailto:profox-boun...@leafe.com] On Behalf Of Rick Schummer Sent: 21 October 2011 12:51 To: profox@leafe.com Subject: RE: Automating Outlook 2007 Hi Dave, The new version of Outlook allows the CreateObject() no problem but if outlook is already open the Create obviously fails

RE: Automating outlook tasks

2011-09-26 Thread Stephen Weeks
= nDeletions + 1 exit endif endfor enddo -Original Message- From: profox-boun...@leafe.com [mailto:profox-boun...@leafe.com] On Behalf Of Dave Crozier Sent: 23 September 2011 13:53 To: ProFox Email List Subject: RE: Automating outlook tasks

RE: Automating outlook tasks

2011-09-23 Thread Dave Crozier
Stephen, You need to put in =loTask.Delete the = sign is needed as it returns a status Dave -Original Message- From: profox-boun...@leafe.com [mailto:profox-boun...@leafe.com] On Behalf Of Stephen Weeks Sent: 23 September 2011 09:10 To: profoxt...@leafe.com Subject: Automating outlook

RE: Automating outlook tasks

2011-09-23 Thread Stephen Weeks
Thanks for that Dave, I put the = sign in and it ran, although it did not delete all the tasks I requested, which are those begining with '#' cant figure this out yet. Regards Steve On Friday, September 23, 2011 10:05 AM, Dave Crozier da...@flexipol.co.uk wrote: Stephen, You need to put in

RE: Automating outlook tasks

2011-09-23 Thread Dave Crozier
on a network storage medium. Dave -Original Message- From: profox-boun...@leafe.com [mailto:profox-boun...@leafe.com] On Behalf Of Stephen Weeks Sent: 23 September 2011 13:46 To: profox@leafe.com Subject: RE: Automating outlook tasks Thanks for that Dave, I put the = sign in and it ran

RE: Automating outlook tasks

2011-09-23 Thread Dave Crozier
To: ProFox Email List Subject: RE: Automating outlook tasks Steve, In that case check the return value from the function. Sometimes Outlook Suspends in order to process events and I think this must be what is happening and in your case you are simply ignoring the busy status. This is usually prevalent

Re: Automating outlook tasks

2011-09-23 Thread Fred Taylor
Wouldn't be easier to traverse the items backwards? m.nTasks = oTasks.Items.Count FOR m.xx=m.nTasks to 1 STEP -1 IF oTasks.Items[m.xx].Subject=# otasks.Items[m.xx].Delete() ENDIF ENDFOR Fred On Fri, Sep 23, 2011 at 6:41 AM, Dave Crozier da...@flexipol.co.uk wrote: Steve, Me being

RE: Automating outlook tasks

2011-09-23 Thread Dave Crozier
September 2011 17:23 To: ProFox Email List Subject: Re: Automating outlook tasks Wouldn't be easier to traverse the items backwards? m.nTasks = oTasks.Items.Count FOR m.xx=m.nTasks to 1 STEP -1 IF oTasks.Items[m.xx].Subject=# otasks.Items[m.xx].Delete() ENDIF ENDFOR Fred On Fri, Sep 23

Re: Automating outlook tasks

2011-09-23 Thread Fred Taylor
Of Fred Taylor Sent: 23 September 2011 17:23 To: ProFox Email List Subject: Re: Automating outlook tasks Wouldn't be easier to traverse the items backwards? m.nTasks = oTasks.Items.Count FOR m.xx=m.nTasks to 1 STEP -1 IF oTasks.Items[m.xx].Subject=# otasks.Items[m.xx].Delete() ENDIF

RE: Automating

2008-09-12 Thread Kent Belan
Hello Philip, Check out GDIPlusX at http://www.codeplex.com/VFPX/Wiki/View.aspx?title=GDIPlusXreferringTitle=Ho me You can definatly rotate a jpg file, very easy. HTH, Kent Hi all, (It's been a long time) Does anyone know if it is possible to automate MS Paint in VFP ? I am trying to print

Re: Automating Mail Merge with Excel Spreadsheet

2008-08-14 Thread MB Software Solutions General Account
Sherrie Binder wrote: Is there a way to programmatically specify what sheet of an Excel spreadsheet you want to merge. This is how I am opening the data source right now: oWord.ActiveDocument.Mailmerge.OpenDataSource(lcDataSource) Right now it always pops up and asks me to Select Table. If