ANNOUNCEMENT: eSelect 1.0 for AW70

2000-10-17 Thread Sascha Wildner

x-html!DOCTYPE HTML PUBLIC -//W3C//DTD HTML 4.0 Transitional//EN
HTMLHEAD
META content=text/html; charset=iso-8859-1 http-equiv=Content-Type
META content=MSHTML 5.00.2919.6307 name=GENERATOR
STYLE/STYLE
/HEAD
BODY bgColor=#ff
DIVFONT face=Arial size=2Folks,/FONT/DIV
DIVnbsp;/DIV
DIVFONT face=Arial size=2version 1.0 of eSelect, an free alternative to 
FoxSelect for AW70 machines is available for download at/FONT/DIV
DIVnbsp;/DIV
DIVFONT face=Arial size=2A 
href=http://thecassandraproject.org/archive/eSelect.exe;http://thecassandraproject.org/archive/eSelect.exe/Anbsp;(36KB)/FONT/DIV
DIVnbsp;/DIV
DIVFONT face=Arial size=2
DIVFONT face=Arial size=2The program shouldnbsp;work on any 
AW70./FONT/DIV
DIVFONT face=Arial size=2/FONTnbsp;/DIV
DIVBefore using, be sure to read the README file/FONT/DIV/DIV
DIVnbsp;/DIV
DIVFONT face=Arial size=2A 
href=http://thecassandraproject.org/archive/eSelect.txt;http://thecassandraproject.org/archive/eSelect.txt/A
 
(1 KB)/FONT/DIV
DIVnbsp;/DIV
DIVFONT face=Arial size=2If you have any comments, questions or suggestions, 
feel free to write./FONT/DIV
DIVnbsp;/DIV
DIVFONT face=Arial size=2/FONTnbsp;/DIV
DIVFONT face=Arial size=2Regards,/FONT/DIV
DIVnbsp;/DIV
DIVFONT face=Arial size=2Sascha WildnerBRerpicon Software Development 
GmbHBR/FONT/DIV/BODY/HTML
/x-html




Re: ANNOUNCEMENT: eSelect 1.0 for AW70

2000-10-17 Thread MIGUEL ANGEL RUIZ

 Thanks 
 
 I'll see it later
 
 see you
 
 Miguel A.


__ Separador de respuesta __
Asunto: ANNOUNCEMENT: eSelect 1.0 for AW70
Autor:  [EMAIL PROTECTED] (Foxboro DCS Mail List) en 
INTERNET
Fecha:10/17/00 6:04 AM


Folks,
 
version 1.0 of eSelect, an free alternative to FoxSelect for AW70 machines is av
ailable for download at
 
http://thecassandraproject.org/archive/eSelect.exe (36KB)
 
The program should work on any AW70.
 
Before using, be sure to read the README file
 
http://thecassandraproject.org/archive/eSelect.txt (1 KB)
 
If you have any comments, questions or suggestions, feel free to write.
 
 
Regards,
 
Sascha Wildner
erpicon Software Development GmbH

---
This list is neither sponsored nor endorsed by the Foxboro Company. All 
postings from this list are the work of list subscribers and no warranty 
is made or implied as to the accuracy of any information disseminated 
through this medium. By subscribing to this list you agree to hold the 
list sponsor(s) blameless for any and all mishaps which might occur due to 
your application of information received from this mailing list.

To be removed from this list, send mail to 
[EMAIL PROTECTED] 
with unsubscribe foxboro in the Subject. Or, send any mail to
[EMAIL PROTECTED]




Variable selection in a sequence

2000-10-17 Thread Baltus, C.J.M.

Hi All, (I think this is the standard opening)

I will introduce myself first, I am a DCS engineer working for 2 years with
Foxboro IA, in a small wet country.

I am following this list since I started with Foxboro IA and I saw many
problems solved. Now here is my problem (perhaps its a stupid one, but I'm
breaking my wooden shoe on it).

I want to make a variable selection in a sequence, its written in SFC.

First I made a macro called:
PUMP1 :TEST:GDEV1.AUTDSR
PUMP2 :TEST:GDEV2.AUTDSR

Then I made a variable called:
PUMP and attached to BOOL

In the first selection I want
PUMP := PUMP1;
the following step:
PUMP := TRUE; 


and when I return to the beginning I perhaps want PUMP select to:
PUMP := PUMP2;
the following step:
PUMP := TRUE;

But what I tried, it didn't work, has someone got a solution ?? This will be
written for a selection of 32 posibilties 


With Kind Regards,
Cor-Jan Baltus
DCS Engineer

KH-AMEC Engineering
Bergen op Zoom
the Netherlands
* [EMAIL PROTECTED]

---:-)** **---

---
This list is neither sponsored nor endorsed by the Foxboro Company. All 
postings from this list are the work of list subscribers and no warranty 
is made or implied as to the accuracy of any information disseminated 
through this medium. By subscribing to this list you agree to hold the 
list sponsor(s) blameless for any and all mishaps which might occur due to 
your application of information received from this mailing list.

To be removed from this list, send mail to 
[EMAIL PROTECTED] 
with unsubscribe foxboro in the Subject. Or, send any mail to
[EMAIL PROTECTED]




RE: Variable selection in a sequence

2000-10-17 Thread Johnson,Alex

Here's some sample code for you.

APP_NAME : SN0001;{ Name of DMC application }
CNTDWN   : SN0009;{ AOA reference for CNTDWN }

...
{ This stores the destination tag as a string into CNTDWN}
CNTDWN := APP_NAME,:DMCOP.CNTDWN;

{ This clears the count down timer. Note the use of : and ' }
:'CNTDWN' := 0;

You can use string variables rather than parameters. I like to use the
parameters as a debugging aid.

Hope this helps.

Regards,

Alex Johnson
10707 Haddington
Houston, TX 77063
713.722.2859(v)
713.722.2700(sb)
713.932.0222(f)
[EMAIL PROTECTED] mailto:[EMAIL PROTECTED] 


-Original Message-
From:   Baltus, C.J.M. [SMTP:[EMAIL PROTECTED]]
Sent:   Tuesday, October 17, 2000 1:27 PM
To: Foxboro DCS mailing list (E-mail)
Cc: Wilfred Kram (E-mail)
Subject:Variable selection in a sequence

Hi All, (I think this is the standard opening)

I will introduce myself first, I am a DCS engineer working for 2
years with
Foxboro IA, in a small wet country.

I am following this list since I started with Foxboro IA and I saw
many
problems solved. Now here is my problem (perhaps its a stupid one,
but I'm
breaking my wooden shoe on it).

I want to make a variable selection in a sequence, its written in
SFC.

First I made a macro called:
PUMP1 :TEST:GDEV1.AUTDSR
PUMP2 :TEST:GDEV2.AUTDSR

Then I made a variable called:
PUMP and attached to BOOL

In the first selection I want
PUMP := PUMP1;
the following step:
PUMP := TRUE; 


and when I return to the beginning I perhaps want PUMP select to:
PUMP := PUMP2;
the following step:
PUMP := TRUE;

But what I tried, it didn't work, has someone got a solution ?? This
will be
written for a selection of 32 posibilties 


With Kind Regards,
Cor-Jan Baltus
DCS Engineer

KH-AMEC Engineering
Bergen op Zoom
the Netherlands
* [EMAIL PROTECTED]

---:-)** **---


---
This list is neither sponsored nor endorsed by the Foxboro Company.
All 
postings from this list are the work of list subscribers and no
warranty 
is made or implied as to the accuracy of any information
disseminated 
through this medium. By subscribing to this list you agree to hold
the 
list sponsor(s) blameless for any and all mishaps which might occur
due to 
your application of information received from this mailing list.

To be removed from this list, send mail to 
[EMAIL PROTECTED] 
with unsubscribe foxboro in the Subject. Or, send any mail to
[EMAIL PROTECTED]

---
This list is neither sponsored nor endorsed by the Foxboro Company. All 
postings from this list are the work of list subscribers and no warranty 
is made or implied as to the accuracy of any information disseminated 
through this medium. By subscribing to this list you agree to hold the 
list sponsor(s) blameless for any and all mishaps which might occur due to 
your application of information received from this mailing list.

To be removed from this list, send mail to 
[EMAIL PROTECTED] 
with unsubscribe foxboro in the Subject. Or, send any mail to
[EMAIL PROTECTED]




RE: Variable selection in a sequence

2000-10-17 Thread Johnson,Alex

Let me try that again. A colon was lost! or MS Outlook messed with my
incoming message. I can't tell:

Here's some sample code for you.

 APP_NAME : SN0001;{ Name of DMC application }
 CNTDWN   : SN0009;{ AOA reference for CNTDWN }

...
 { This stores the destination tag as a string into CNTDWN}

 CNTDWN := APP_NAME,:DMCOP.CNTDWN;

 { This clears the count down timer. Note the use of : and ' }
 { In case you can't see it, the line reads 'colon''single quote''variable
name''colon''equal''zero' }

 :'CNTDWN' := 0;

You can use string variables rather than parameters. I like to use the
parameters as a debugging aid.

Hope this helps.

Regards,

Alex Johnson
10707 Haddington
Houston, TX 77063
713.722.2859(v)
713.722.2700(sb)
713.932.0222(f)
[EMAIL PROTECTED] mailto:[EMAIL PROTECTED] 


-Original Message-
From:   Johnson,Alex [SMTP:[EMAIL PROTECTED]]
Sent:   Tuesday, October 17, 2000 1:37 PM
To: Foxboro DCS Mail List
Cc: Wilfred Kram (E-mail)
Subject:RE: Variable selection in a sequence

Here's some sample code for you.

APP_NAME : SN0001;{ Name of DMC application }
CNTDWN   : SN0009;{ AOA reference for CNTDWN }

...
{ This stores the destination tag as a string into CNTDWN}
CNTDWN := APP_NAME,:DMCOP.CNTDWN;

{ This clears the count down timer. Note the use of : and ' }
:'CNTDWN' := 0;

You can use string variables rather than parameters. I like to use
the
parameters as a debugging aid.

Hope this helps.

Regards,

Alex Johnson
10707 Haddington
Houston, TX 77063
713.722.2859(v)
713.722.2700(sb)
713.932.0222(f)
[EMAIL PROTECTED] mailto:[EMAIL PROTECTED] 


-Original Message-
From:   Baltus, C.J.M. [SMTP:[EMAIL PROTECTED]]
Sent:   Tuesday, October 17, 2000 1:27 PM
To: Foxboro DCS mailing list (E-mail)
Cc: Wilfred Kram (E-mail)
Subject:Variable selection in a sequence

Hi All, (I think this is the standard opening)

I will introduce myself first, I am a DCS engineer working
for 2
years with
Foxboro IA, in a small wet country.

I am following this list since I started with Foxboro IA and
I saw
many
problems solved. Now here is my problem (perhaps its a
stupid one,
but I'm
breaking my wooden shoe on it).

I want to make a variable selection in a sequence, its
written in
SFC.

First I made a macro called:
PUMP1 :TEST:GDEV1.AUTDSR
PUMP2 :TEST:GDEV2.AUTDSR

Then I made a variable called:
PUMP and attached to BOOL

In the first selection I want
PUMP := PUMP1;
the following step:
PUMP := TRUE; 


and when I return to the beginning I perhaps want PUMP
select to:
PUMP := PUMP2;
the following step:
PUMP := TRUE;

But what I tried, it didn't work, has someone got a solution
?? This
will be
written for a selection of 32 posibilties 


With Kind Regards,
Cor-Jan Baltus
DCS Engineer

KH-AMEC Engineering
Bergen op Zoom
the Netherlands
* [EMAIL PROTECTED]

---:-)** **---



---
This list is neither sponsored nor endorsed by the Foxboro
Company.
All 
postings from this list are the work of list subscribers and
no
warranty 
is made or implied as to the accuracy of any information
disseminated 
through this medium. By subscribing to this list you agree
to hold
the 
list sponsor(s) blameless for any and all mishaps which
might occur
due to 
your application of information received from this mailing
list.

To be removed from this list, send mail to 
[EMAIL PROTECTED] 
with unsubscribe foxboro in the Subject. Or, send any mail
to
[EMAIL PROTECTED]


---
This list is neither sponsored nor endorsed by the Foxboro Company.
All 
postings from this list are the work of list subscribers and no
warranty 
is made or implied as to the accuracy of any information
disseminated 
through this medium. By subscribing to this list you agree to hold
the 
list sponsor(s) blameless 

RE: Variable selection in a sequence

2000-10-17 Thread Johnson,Alex

Can anyone tell me if they see the colon in front of 'CNTDWN'?

I think Outlook is eating that and turning the line blue on my machine.


Regards,

Alex Johnson
10707 Haddington
Houston, TX 77063
713.722.2859(v)
713.722.2700(sb)
713.932.0222(f)
[EMAIL PROTECTED] mailto:[EMAIL PROTECTED] 


-Original Message-
From:   Johnson,Alex [SMTP:[EMAIL PROTECTED]]
Sent:   Tuesday, October 17, 2000 2:07 PM
To: Foxboro DCS Mail List
Cc: Wilfred Kram (E-mail)
Subject:RE: Variable selection in a sequence

Let me try that again. A colon was lost! or MS Outlook messed with
my
incoming message. I can't tell:

Here's some sample code for you.

 APP_NAME : SN0001;{ Name of DMC application }
 CNTDWN   : SN0009;{ AOA reference for CNTDWN }

...
 { This stores the destination tag as a string into CNTDWN}

 CNTDWN := APP_NAME,:DMCOP.CNTDWN;

 { This clears the count down timer. Note the use of : and ' }
 { In case you can't see it, the line reads 'colon''single
quote''variable
name''colon''equal''zero' }

 :'CNTDWN' := 0;

You can use string variables rather than parameters. I like to use
the
parameters as a debugging aid.

Hope this helps.

Regards,

Alex Johnson
10707 Haddington
Houston, TX 77063
713.722.2859(v)
713.722.2700(sb)
713.932.0222(f)
[EMAIL PROTECTED] mailto:[EMAIL PROTECTED] 


-Original Message-
From:   Johnson,Alex [SMTP:[EMAIL PROTECTED]]
Sent:   Tuesday, October 17, 2000 1:37 PM
To: Foxboro DCS Mail List
Cc: Wilfred Kram (E-mail)
Subject:RE: Variable selection in a sequence

Here's some sample code for you.

APP_NAME : SN0001;{ Name of DMC application }
CNTDWN   : SN0009;{ AOA reference for CNTDWN }

...
{ This stores the destination tag as a string into CNTDWN}
CNTDWN := APP_NAME,:DMCOP.CNTDWN;

{ This clears the count down timer. Note the use of : and '
}
:'CNTDWN' := 0;

You can use string variables rather than parameters. I like
to use
the
parameters as a debugging aid.

Hope this helps.

Regards,

Alex Johnson
10707 Haddington
Houston, TX 77063
713.722.2859(v)
713.722.2700(sb)
713.932.0222(f)
[EMAIL PROTECTED] mailto:[EMAIL PROTECTED] 


-Original Message-
From:   Baltus, C.J.M.
[SMTP:[EMAIL PROTECTED]]
Sent:   Tuesday, October 17, 2000 1:27 PM
To: Foxboro DCS mailing list (E-mail)
Cc: Wilfred Kram (E-mail)
Subject:Variable selection in a sequence

Hi All, (I think this is the standard opening)

I will introduce myself first, I am a DCS engineer
working
for 2
years with
Foxboro IA, in a small wet country.

I am following this list since I started with
Foxboro IA and
I saw
many
problems solved. Now here is my problem (perhaps its
a
stupid one,
but I'm
breaking my wooden shoe on it).

I want to make a variable selection in a sequence,
its
written in
SFC.

First I made a macro called:
PUMP1 :TEST:GDEV1.AUTDSR
PUMP2 :TEST:GDEV2.AUTDSR

Then I made a variable called:
PUMP and attached to BOOL

In the first selection I want
PUMP := PUMP1;
the following step:
PUMP := TRUE; 


and when I return to the beginning I perhaps want
PUMP
select to:
PUMP := PUMP2;
the following step:
PUMP := TRUE;

But what I tried, it didn't work, has someone got a
solution
?? This
will be
written for a selection of 32 posibilties 


With Kind Regards,
Cor-Jan Baltus
DCS Engineer

KH-AMEC Engineering
Bergen op Zoom
the Netherlands
* [EMAIL PROTECTED]

   

RE: Variable selection in a sequence

2000-10-17 Thread Stear, Bo

Can anyone actually believe that Alex Johnson lost his COLON?

-Original Message-
From: Johnson,Alex [mailto:[EMAIL PROTECTED]]
Sent: Tuesday, October 17, 2000 2:07 PM
To: Foxboro DCS Mail List
Cc: Wilfred Kram (E-mail)
Subject: RE: Variable selection in a sequence


Let me try that again. A colon was lost! or MS Outlook messed with my
incoming message. I can't tell:

Here's some sample code for you.

 APP_NAME : SN0001;{ Name of DMC application }
 CNTDWN   : SN0009;{ AOA reference for CNTDWN }

...
 { This stores the destination tag as a string into CNTDWN}

 CNTDWN := APP_NAME,:DMCOP.CNTDWN;

 { This clears the count down timer. Note the use of : and ' }
 { In case you can't see it, the line reads 'colon''single quote''variable
name''colon''equal''zero' }

 :'CNTDWN' := 0;

You can use string variables rather than parameters. I like to use the
parameters as a debugging aid.

Hope this helps.

Regards,

Alex Johnson
10707 Haddington
Houston, TX 77063
713.722.2859(v)
713.722.2700(sb)
713.932.0222(f)
[EMAIL PROTECTED] mailto:[EMAIL PROTECTED] 


-Original Message-
From:   Johnson,Alex [SMTP:[EMAIL PROTECTED]]
Sent:   Tuesday, October 17, 2000 1:37 PM
To: Foxboro DCS Mail List
Cc: Wilfred Kram (E-mail)
Subject:RE: Variable selection in a sequence

Here's some sample code for you.

APP_NAME : SN0001;{ Name of DMC application }
CNTDWN   : SN0009;{ AOA reference for CNTDWN }

...
{ This stores the destination tag as a string into CNTDWN}
CNTDWN := APP_NAME,:DMCOP.CNTDWN;

{ This clears the count down timer. Note the use of : and ' }
:'CNTDWN' := 0;

You can use string variables rather than parameters. I like to use
the
parameters as a debugging aid.

Hope this helps.

Regards,

Alex Johnson
10707 Haddington
Houston, TX 77063
713.722.2859(v)
713.722.2700(sb)
713.932.0222(f)
[EMAIL PROTECTED] mailto:[EMAIL PROTECTED] 


-Original Message-
From:   Baltus, C.J.M. [SMTP:[EMAIL PROTECTED]]
Sent:   Tuesday, October 17, 2000 1:27 PM
To: Foxboro DCS mailing list (E-mail)
Cc: Wilfred Kram (E-mail)
Subject:Variable selection in a sequence

Hi All, (I think this is the standard opening)

I will introduce myself first, I am a DCS engineer working
for 2
years with
Foxboro IA, in a small wet country.

I am following this list since I started with Foxboro IA and
I saw
many
problems solved. Now here is my problem (perhaps its a
stupid one,
but I'm
breaking my wooden shoe on it).

I want to make a variable selection in a sequence, its
written in
SFC.

First I made a macro called:
PUMP1 :TEST:GDEV1.AUTDSR
PUMP2 :TEST:GDEV2.AUTDSR

Then I made a variable called:
PUMP and attached to BOOL

In the first selection I want
PUMP := PUMP1;
the following step:
PUMP := TRUE; 


and when I return to the beginning I perhaps want PUMP
select to:
PUMP := PUMP2;
the following step:
PUMP := TRUE;

But what I tried, it didn't work, has someone got a solution
?? This
will be
written for a selection of 32 posibilties 


With Kind Regards,
Cor-Jan Baltus
DCS Engineer

KH-AMEC Engineering
Bergen op Zoom
the Netherlands
* [EMAIL PROTECTED]

---:-)** **---



---
This list is neither sponsored nor endorsed by the Foxboro
Company.
All 
postings from this list are the work of list subscribers and
no
warranty 
is made or implied as to the accuracy of any information
disseminated 
through this medium. By subscribing to this list you agree
to hold
the 
list sponsor(s) blameless for any and all mishaps which
might occur
due to 
your application of information received from this mailing
list.

To be removed from this list, send mail to 
[EMAIL PROTECTED] 
with unsubscribe foxboro in the Subject. Or, send any mail
to
[EMAIL PROTECTED]


---
This list is neither sponsored nor endorsed by the Foxboro Company.
All 

RE:

2000-10-17 Thread Nadeau, Sylvain

We used the SUN 4 port ethernet card on some projects, it works great.

Sylvain.
Sylvain Nadeau
Systems Integration   IT
Foxboro Canada Inc.
[EMAIL PROTECTED]
514-421-8107
Fax:514-421-8054



 -Original Message-
 From: Johnson,Alex [SMTP:[EMAIL PROTECTED]]
 Sent: Tuesday, October 17, 2000 3:26 PM
 To:   Foxboro DCS Mail List
 Subject:  RE: 
 
 Chris,
 
 Re: Ethernet Baud Rate
 
 The PCI cards in the AW51e are 10/100 Mbps cards. You may be running it at
 10 Mbps, but it can go faster.
 
 
 Re: Ethernet Cards
 
 If you have spare slots, you can add another card. Some folks use the 4
 port
 card from Sun. I'm not sure that we sell it, but it should work.
 
 
 Re: Overloading
 
 Type: 
 
 man vmstat
 
 on you system and learn how to read and interpret it. This tool will tell
 you if the CPU or memory in your machine are heavily loaded.
 
 I'm not aware of an internal tool that gives a great analysis of the
 Ethernet port usage, but play with perfmeter in /usr/openwin/bin. Right
 click on the display when it pops up and you can select new things to
 measure.
 
 Your network folks probably can monitor the traffic in the segment that
 the
 AW-51e is using.
 
 
 Hope this helps.
 
 
 Regards,
 
 Alex Johnson
 10707 Haddington
 Houston, TX 77063
 713.722.2859(v)
 713.722.2700(sb)
 713.932.0222(f)
 [EMAIL PROTECTED] mailto:[EMAIL PROTECTED] 
 
 
   -Original Message-
   From:   Little Chris [SMTP:[EMAIL PROTECTED]]
   Sent:   Tuesday, October 17, 2000 2:02 PM
   To: Cassandra (E-mail)
   Subject:
 
   Hi all
 
   I currently have an installation that is hosted by a 51 E. On this
 unit I
   have Aim* historian which is sampling around 600 points, mainly
 analogue,
   approximately every 5 seconds. I also have an off platform PC that
 also has
   Aim* with an identical historian, which is pulling the data through
 the
   second Ethernet port. Also on this same Ebox we have the interface
 for our
   OSI PI server. This is collecting about 2500 points, half of which
 are
   digital and the other half are analogue. The sample rates for these
 are five
   seconds for the analogues and two seconds for the digital.
   We are now looking to install another interface for a QCK analyzer
 (FLS) and
   I am concerned that we will overload the API or the second Ethernet
 port.
   Is there any way to calculate the loading on this second Ethernet
 port or
   what the max is. Has anyone else used this QCX analyzer and how did
 you
   interface it to the Foxboro, is there a better way than over the
 second
   Ethernet card. Our second port is currently 10 Mbit, I think that is
 the max
   available
 
   Chris Little 
   Blue Circle Cement 
   Roberta Plant 
 
 
   

---
This list is neither sponsored nor endorsed by the Foxboro Company. All 
postings from this list are the work of list subscribers and no warranty 
is made or implied as to the accuracy of any information disseminated 
through this medium. By subscribing to this list you agree to hold the 
list sponsor(s) blameless for any and all mishaps which might occur due to 
your application of information received from this mailing list.

To be removed from this list, send mail to 
[EMAIL PROTECTED] 
with unsubscribe foxboro in the Subject. Or, send any mail to
[EMAIL PROTECTED]




RE: Variable selection in a sequence

2000-10-17 Thread Johnson,Alex

Dr. Winston Jenks thinks MS Outlook ate my colon. All I know is that it
really hurts.

Regards,

Alex Johnson
10707 Haddington
Houston, TX 77063
713.722.2859(v)
713.722.2700(sb)
713.932.0222(f)
[EMAIL PROTECTED] mailto:[EMAIL PROTECTED] 


-Original Message-
From:   Stear, Bo [SMTP:[EMAIL PROTECTED]]
Sent:   Tuesday, October 17, 2000 3:44 PM
To: 'Foxboro DCS Mail List'
Subject:RE: Variable selection in a sequence

Can anyone actually believe that Alex Johnson lost his COLON?

-Original Message-
From: Johnson,Alex [mailto:[EMAIL PROTECTED]]
Sent: Tuesday, October 17, 2000 2:07 PM
To: Foxboro DCS Mail List
Cc: Wilfred Kram (E-mail)
Subject: RE: Variable selection in a sequence


Let me try that again. A colon was lost! or MS Outlook messed with
my
incoming message. I can't tell:

Here's some sample code for you.

 APP_NAME : SN0001;{ Name of DMC application }
 CNTDWN   : SN0009;{ AOA reference for CNTDWN }

...
 { This stores the destination tag as a string into CNTDWN}

 CNTDWN := APP_NAME,:DMCOP.CNTDWN;

 { This clears the count down timer. Note the use of : and ' }
 { In case you can't see it, the line reads 'colon''single
quote''variable
name''colon''equal''zero' }

 :'CNTDWN' := 0;

You can use string variables rather than parameters. I like to use
the
parameters as a debugging aid.

Hope this helps.

Regards,

Alex Johnson
10707 Haddington
Houston, TX 77063
713.722.2859(v)
713.722.2700(sb)
713.932.0222(f)
[EMAIL PROTECTED] mailto:[EMAIL PROTECTED] 


-Original Message-
From:   Johnson,Alex [SMTP:[EMAIL PROTECTED]]
Sent:   Tuesday, October 17, 2000 1:37 PM
To: Foxboro DCS Mail List
Cc: Wilfred Kram (E-mail)
Subject:RE: Variable selection in a sequence

Here's some sample code for you.

APP_NAME : SN0001;{ Name of DMC application }
CNTDWN   : SN0009;{ AOA reference for CNTDWN }

...
{ This stores the destination tag as a string into CNTDWN}
CNTDWN := APP_NAME,:DMCOP.CNTDWN;

{ This clears the count down timer. Note the use of : and '
}
:'CNTDWN' := 0;

You can use string variables rather than parameters. I like
to use
the
parameters as a debugging aid.

Hope this helps.

Regards,

Alex Johnson
10707 Haddington
Houston, TX 77063
713.722.2859(v)
713.722.2700(sb)
713.932.0222(f)
[EMAIL PROTECTED] mailto:[EMAIL PROTECTED] 


-Original Message-
From:   Baltus, C.J.M.
[SMTP:[EMAIL PROTECTED]]
Sent:   Tuesday, October 17, 2000 1:27 PM
To: Foxboro DCS mailing list (E-mail)
Cc: Wilfred Kram (E-mail)
Subject:Variable selection in a sequence

Hi All, (I think this is the standard opening)

I will introduce myself first, I am a DCS engineer
working
for 2
years with
Foxboro IA, in a small wet country.

I am following this list since I started with
Foxboro IA and
I saw
many
problems solved. Now here is my problem (perhaps its
a
stupid one,
but I'm
breaking my wooden shoe on it).

I want to make a variable selection in a sequence,
its
written in
SFC.

First I made a macro called:
PUMP1 :TEST:GDEV1.AUTDSR
PUMP2 :TEST:GDEV2.AUTDSR

Then I made a variable called:
PUMP and attached to BOOL

In the first selection I want
PUMP := PUMP1;
the following step:
PUMP := TRUE; 


and when I return to the beginning I perhaps want
PUMP
select to:
PUMP := PUMP2;
the following step:
PUMP := TRUE;

But what I tried, it didn't work, has someone got a
solution
?? This
will be
written for a selection of 32 posibilties 


With Kind Regards,

Re: Variable selection in a sequence

2000-10-17 Thread Martin Theobald

Johnson,Alex wrote:
 
 Can anyone tell me if they see the colon in front of 'CNTDWN'?
 
  :'CNTDWN' := 0;
 
Yes, but I'm using Netscape Navigator V3.01

Old habits die hard,

Regards,

Martin T.


---
This list is neither sponsored nor endorsed by the Foxboro Company. All 
postings from this list are the work of list subscribers and no warranty 
is made or implied as to the accuracy of any information disseminated 
through this medium. By subscribing to this list you agree to hold the 
list sponsor(s) blameless for any and all mishaps which might occur due to 
your application of information received from this mailing list.

To be removed from this list, send mail to 
[EMAIL PROTECTED] 
with unsubscribe foxboro in the Subject. Or, send any mail to
[EMAIL PROTECTED]




Alex's colon and other disturbing things.

2000-10-17 Thread David Johnson

At 10/17/00 03:43 PM, Bo Stear wrote :
Can anyone actually believe that Alex Johnson lost his COLON?

I can believe it.
I lost my ass once in a poker game.


By the way,

The Southeastern Users group meeting is Nov. 2nd and 3rd, a Thursday and 
Friday. It will be at the Embassy Suites in Greenville, SC.  If you are 
interested in attending contact Denise Kendrick or Bill Whitfield.

[EMAIL PROTECTED]
803 808-2508 phone
770 329-2687 cell
803 808-0228 fax


Bill Whitfield
[EMAIL PROTECTED]
864 879-5011 phone

These are always good meetings, so make plans to attend.  You do not have 
to be from the Southeast region to attend!


Regards,
David


---
This list is neither sponsored nor endorsed by the Foxboro Company. All 
postings from this list are the work of list subscribers and no warranty 
is made or implied as to the accuracy of any information disseminated 
through this medium. By subscribing to this list you agree to hold the 
list sponsor(s) blameless for any and all mishaps which might occur due to 
your application of information received from this mailing list.

To be removed from this list, send mail to 
[EMAIL PROTECTED] 
with unsubscribe foxboro in the Subject. Or, send any mail to
[EMAIL PROTECTED]