RE: fuzzy on return

2012-06-25 Thread Tracy Pearson
Gary Jeurink wrote on 2012-06-22: You lost me. ... I'm just fuzzy on how to run my CallRemote procedure and return a .t. or .f. Gary, Where does the procedure exist? What program? Have you already put the program name into the list of procedures via SET PROCEDURE TO ...? The code you

RE: fuzzy on return

2012-06-25 Thread Richard Kaye
') IF returnValue REPLACE mediaindex.volume WITH mediaindex.volume -0.5 ENDIF -- rk -Original Message- From: profoxtech-boun...@leafe.com [mailto:profoxtech-boun...@leafe.com] On Behalf Of Tracy Pearson Sent: Monday, June 25, 2012 9:56 AM To: profoxt...@leafe.com Subject: RE: fuzzy on return Gary

RE: fuzzy on return

2012-06-25 Thread Gary Jeurink
tutorial on delete triggers and how to upgrade from 6.0 to 9.0) Gary Jeurink -Original Message- From: Richard Kaye [mailto:rk...@artfact.com] Sent: Monday, June 25, 2012 9:57 AM To: profox@leafe.com Subject: RE: fuzzy on return And just in case I've added to the confusion with my pseudo-code

RE: fuzzy on return

2012-06-22 Thread Richard Kaye
Does CALLRemote return a value? If so, you might be able to do something like this: PRIVATE returnValue DO c:\alldat2\programs\CALLRemote WITH 'c:\alldat\irctrl\amp-volup.ir' TO returnValue IF returnValue REPLACE mediaindex.volume WITH mediaindex.volume -0.5 ELSE

RE: fuzzy on return

2012-06-22 Thread Tracy Pearson
Richard Kaye wrote on 2012-06-22: Does CALLRemote return a value? If so, you might be able to do something like this: PRIVATE returnValue DO c:\alldat2\programs\CALLRemote WITH 'c:\alldat\irctrl\amp-volup.ir' TO returnValue IF returnValue REPLACE mediaindex.volume WITH

RE: fuzzy on return

2012-06-22 Thread Richard Kaye
Of Tracy Pearson Sent: Friday, June 22, 2012 3:55 PM To: profoxt...@leafe.com Subject: RE: fuzzy on return Gary and Richard, The DO {program} doesn't have a TO clause. DO FORM ... does. If the procedure is in a prg file, you'll need to SET PROCEDURE TO {(relative|absolute)path\filename} ADDITIVE

RE: fuzzy on return

2012-06-22 Thread Gary Jeurink
Subject: RE: fuzzy on return Does CALLRemote return a value? If so, you might be able to do something like this: PRIVATE returnValue DO c:\alldat2\programs\CALLRemote WITH 'c:\alldat\irctrl\amp-volup.ir' TO returnValue IF returnValue REPLACE mediaindex.volume WITH mediaindex.volume -0.5 ELSE

RE: fuzzy on return

2012-06-22 Thread Gary Jeurink
You lost me. My old procedure would generate a -Original Message- From: Tracy Pearson [mailto:tr...@powerchurch.com] Sent: Friday, June 22, 2012 2:55 PM To: profox@leafe.com Subject: RE: fuzzy on return Richard Kaye wrote on 2012-06-22: Does CALLRemote return a value? If so, you

Re: fuzzy on return

2012-06-22 Thread Vincent Teachout
Richard Kaye wrote: I hate it when you correct me, Tracy. Even if you are right... ;) I Love when Tracy corrects us! It's nearly always something worth reading. :-) ___ Post Messages to: ProFox@leafe.com Subscription Maintenance:

RE: fuzzy on return

2012-06-22 Thread Gary Jeurink
, June 22, 2012 2:55 PM To: profox@leafe.com Subject: RE: fuzzy on return Richard Kaye wrote on 2012-06-22: Does CALLRemote return a value? If so, you might be able to do something like this: PRIVATE returnValue DO c:\alldat2\programs\CALLRemote WITH 'c:\alldat\irctrl\amp-volup.ir