Thread: [vrf] Doing continuous feedback of 1D array data


Permlink Replies: 5 - Pages: 1 - Last Post: Sep 23, 2008 9:55 AM Last Post By: fukui.yutaka
VRF user

Posts: 16,231
Registered: 11/05/08
[vrf] Doing continuous feedback of 1D array data
Posted: Sep 23, 2008 9:55 AM   in response to: fukui.yutaka in response to: fukui.yutaka
Click to report abuse...   Click to reply to this thread Reply
I see. :-) That looks good... will give it a try.....

  _____  

From: ext Shawn Fessenden mailto:shawn@vrfarchive.com
Sent: Tue 23/09/2008 16:47
To: Stewart Charles (Vertu/ChurchCrookham); 'VRF'
Subject: RE: vrf Power Point second screen.



> Looks like I may need to resort
> to that. Not sure how though. Is
> is a feature of Vee? Or command
> line?

It's a method on nearly all MS Application servers. In your app, if presentation is a PP Presentation, it would go:

presentation.Application.SendKeys("%dss" <whatever>)

If objApp is a PP Application object, then just:

objApp.SendKeys("%dss" <whatever>)

If your version doesn't include full VBA support (it's usually an option you have to select at installation) then SendKeys can be found in a number of MS ActiveX classes. The ScriptControl is probably most convenient. See the SendKeys example.

-SHAWN-


---
You are currently subscribed to vrf as: hua_jing@agilent.com
To subscribe please send an email to: "vrf-request@lists.it.agilent.com" with the word subscribe in the message body.
To unsubscribe send a blank email to "leave-vrf@it.lists.it.agilent.com".
To send messages to this mailing list, email "vrf@agilent.com".
If you need help with the mailing list send a message to
"owner-vrf@it.lists.it.agilent.com".
Search the "unofficial vrf archive" at "http://www.vrfarchive.com/vrf_archive".
Search the Agilent vrf archive at "http://vee.engineering.agilent.com".
VRF user

Posts: 16,231
Registered: 11/05/08
[vrf] Doing continuous feedback of 1D array data
Posted: Sep 23, 2008 9:55 AM   in response to: fukui.yutaka in response to: fukui.yutaka
Click to report abuse...   Click to reply to this thread Reply
I see. :-) That looks good... will give it a try.....

  _____  

From: ext Shawn Fessenden mailto:shawn@vrfarchive.com
Sent: Tue 23/09/2008 16:47
To: Stewart Charles (Vertu/ChurchCrookham); 'VRF'
Subject: RE: vrf Power Point second screen.



> Looks like I may need to resort
> to that. Not sure how though. Is
> is a feature of Vee? Or command
> line?

It's a method on nearly all MS Application servers. In your app, if presentation is a PP Presentation, it would go:

presentation.Application.SendKeys("%dss" <whatever>)

If objApp is a PP Application object, then just:

objApp.SendKeys("%dss" <whatever>)

If your version doesn't include full VBA support (it's usually an option you have to select at installation) then SendKeys can be found in a number of MS ActiveX classes. The ScriptControl is probably most convenient. See the SendKeys example.

-SHAWN-


---
You are currently subscribed to vrf as: hua_jing@agilent.com
To subscribe please send an email to: "vrf-request@lists.it.agilent.com" with the word subscribe in the message body.
To unsubscribe send a blank email to "leave-vrf@it.lists.it.agilent.com".
To send messages to this mailing list, email "vrf@agilent.com".
If you need help with the mailing list send a message to
"owner-vrf@it.lists.it.agilent.com".
Search the "unofficial vrf archive" at "http://www.vrfarchive.com/vrf_archive".
Search the Agilent vrf archive at "http://vee.engineering.agilent.com".
VRF user

Posts: 16,231
Registered: 11/05/08
[vrf] Doing continuous feedback of 1D array data
Posted: Sep 23, 2008 10:19 AM   in response to: fukui.yutaka in response to: fukui.yutaka
Click to report abuse...   Click to reply to this thread Reply
Your loop as written needs an iterator to make the loop complete.  It works fine if I add a For Count, Until Break, etc.  Where ever this is in your real program, make sure it is part of some loop.
 
Dave

  _____  

From: fdg Fgj mailto:kolopipo@yahoo.com
Sent: Tuesday, September 23, 2008 8:55 AM
To: VRF
Subject: vrf Doing continuous feedback of 1D array data


I am trying to do feedback of 1D array data but the junction seems to accept only scalar. I had tried to feedback as shown in attached file but failed.So how to do the feedback? It keep saying illegal use of junction. Please help.Thanks.


--- You are currently subscribed to vrf as: Dave.Andersen@gd-ais.com To subscribe please send an email to: "vrf-request@lists.it.agilent.com" with the word subscribe in the message body. To unsubscribe send a blank email to "leave-vrf@it.lists.it.agilent.com". To send messages to this mailing list, email "vrf@agilent.com". If you need help with the mailing list send a message to "owner-vrf@it.lists.it.agilent.com". Search the "unofficial vrf archive" at "http://www.vrfarchive.com/vrf_archive". Search the Agilent vrf archive at "http://vee.engineering.agilent.com".
---
You are currently subscribed to vrf as: hua_jing@agilent.com
To subscribe please send an email to: "vrf-request@lists.it.agilent.com" with the word subscribe in the message body.
To unsubscribe send a blank email to "leave-vrf@it.lists.it.agilent.com".
To send messages to this mailing list, email "vrf@agilent.com".
If you need help with the mailing list send a message to
"owner-vrf@it.lists.it.agilent.com".
Search the "unofficial vrf archive" at "http://www.vrfarchive.com/vrf_archive".
Search the Agilent vrf archive at "http://vee.engineering.agilent.com".
VRF user

Posts: 16,231
Registered: 11/05/08
[vrf] Doing continuous feedback of 1D array data
Posted: Sep 23, 2008 10:19 AM   in response to: fukui.yutaka in response to: fukui.yutaka
Click to report abuse...   Click to reply to this thread Reply
Your loop as written needs an iterator to make the loop complete.  It works fine if I add a For Count, Until Break, etc.  Where ever this is in your real program, make sure it is part of some loop.
 
Dave

  _____  

From: fdg Fgj mailto:kolopipo@yahoo.com
Sent: Tuesday, September 23, 2008 8:55 AM
To: VRF
Subject: vrf Doing continuous feedback of 1D array data


I am trying to do feedback of 1D array data but the junction seems to accept only scalar. I had tried to feedback as shown in attached file but failed.So how to do the feedback? It keep saying illegal use of junction. Please help.Thanks.


--- You are currently subscribed to vrf as: Dave.Andersen@gd-ais.com To subscribe please send an email to: "vrf-request@lists.it.agilent.com" with the word subscribe in the message body. To unsubscribe send a blank email to "leave-vrf@it.lists.it.agilent.com". To send messages to this mailing list, email "vrf@agilent.com". If you need help with the mailing list send a message to "owner-vrf@it.lists.it.agilent.com". Search the "unofficial vrf archive" at "http://www.vrfarchive.com/vrf_archive". Search the Agilent vrf archive at "http://vee.engineering.agilent.com".
---
You are currently subscribed to vrf as: hua_jing@agilent.com
To subscribe please send an email to: "vrf-request@lists.it.agilent.com" with the word subscribe in the message body.
To unsubscribe send a blank email to "leave-vrf@it.lists.it.agilent.com".
To send messages to this mailing list, email "vrf@agilent.com".
If you need help with the mailing list send a message to
"owner-vrf@it.lists.it.agilent.com".
Search the "unofficial vrf archive" at "http://www.vrfarchive.com/vrf_archive".
Search the Agilent vrf archive at "http://vee.engineering.agilent.com".
fukui.yutaka

Posts: 162
Registered: 11/11/08
[vrf] Doing continuous feedback of 1D array data
Posted: Sep 23, 2008 8:25 PM   in response to: fukui.yutaka in response to: fukui.yutaka
Click to report abuse...   Click to reply to this thread Reply
Hello Claudia,
 
thank you for your help, this variation works independent from the pc or operation system.
 
best regards
Thomas
 
 

Original Message     
   processed by David InfoCenter 
Subject: 
AW: vrf logging time with win98 ok, but with win XP up to 99 ok, then back to zero (23-Sep-2008 9:11)
From:    
HYPERLINK "mailto:claudia.willging@kriwan-testzentrum.de"Willging, Claudia <claudia.willging@kriwan-testzentrum.de>
To:      
HYPERLINK "mailto:tw@huber-online.com"tw@huber-online.com (and 1 other)
 
Hello Thomas,
 
I don`t know what problem you have exactly with your program, but you can try programming your own timer using the "now" formula. See my little example I attached.
 
 

Mit freundlichen Grüßen

i. A. Claudia Willging

-----------------------------------------------------------------------------------------
Dr. Claudia Willging
KRIWAN Testzentrum GmbH & Co. KG
Teslastr. 2, D-74670 Forchtenberg
Tel.: (07947) 9150-0 (Durchwahl 9365) Fax: (07947) 9150-50
claudia.willging@KRIWAN-Testzentrum.de

-----Ursprüngliche Nachricht-----
Von: Thomas Walter mailto:tw@huber-online.com
Gesendet: Dienstag, 23. September 2008 08:33
An: VRF
Betreff: vrf logging time with win98 ok, but with win XP up to 99 ok, then back to zero


Hello,
the program is written in hpvee version 5
best regards
Thomas
________________________
Hello,
my program ran several years under win98, now we have a new pc with winXP, then the time variable run up to 99 minutes ok, then it falls back to 0 in a endless loop,
I did it with the timer function, difference of 2 inputs.
Do somebody know, how to solve this problem ??
 
best regards
Thomas

---
You are currently subscribed to vrf as: claudia.willging@kriwan-testzentrum.de
To subscribe please send an email to: "vrf-request@lists.it.agilent.com" with the word subscribe in the message body.
To unsubscribe send a blank email to "leave-vrf@it.lists.it.agilent.com".
To send messages to this mailing list, email "vrf@agilent.com".
If you need help with the mailing list send a message to
"owner-vrf@it.lists.it.agilent.com".
Search the "unofficial vrf archive" at "http://www.vrfarchive.com/vrf_archive".
Search the Agilent vrf archive at "http://vee.engineering.agilent.com".

*******************************************
Diese E-Mail enthaelt vertrauliche und/oder rechtlich geschuetzte Informationen. Wenn Sie nicht der richtige Adressat sind oder diese E-Mail irrtuemlich erhalten haben, informieren Sie bitte sofort den Absender und loeschen Sie diese Mail. Das unerlaubte Kopieren sowie die unbefugte Weitergabe dieser Mail ist nicht gestattet.

Eingehende E-Mails mit folgenden Anhangs-Endungen werden aus sicherheitsgründen automatisch abgewiesen:
PIF, SCR, BAT, URL, EXE, COM, DLL, HTA, VBS

This e-mail may contain confidential and/or privileged information. If you are not the intended recipient (or have received this e-mail in error) please notify the sender immediately and delete this e-mail. Any unauthorized copying, disclosure or distribution of the contents in this e-mail is strictly forbidden.

Incoming E-Mails with the following attachement-extensions are automatically rejected for security reasons:
PIF, SCR, BAT, URL, EXE, COM, DLL, HTA, VBS
*******************************************


KRIWAN Testzentrum GmbH & Co. KG  -  AG Stuttgart: HRA 590480
Komplementär:
KRIWAN Verwaltungs-GmbH  -  AG Stuttgart: HRA 590645
Geschäftsführer: Dr. Ing. Elmar Zeitler, Dipl.-Ing. Jens-Peter Huischen



To: claudia.willging@kriwan-testzentrum.de
    vrf@agilent.com


---
You are currently subscribed to vrf as: hua_jing@agilent.com
To subscribe please send an email to: "vrf-request@lists.it.agilent.com" with the word subscribe in the message body.
To unsubscribe send a blank email to "leave-vrf@it.lists.it.agilent.com".
To send messages to this mailing list, email "vrf@agilent.com".
If you need help with the mailing list send a message to
"owner-vrf@it.lists.it.agilent.com".
Search the "unofficial vrf archive" at "http://www.vrfarchive.com/vrf_archive".
Search the Agilent vrf archive at "http://vee.engineering.agilent.com".
fukui.yutaka

Posts: 162
Registered: 11/11/08
[vrf] Doing continuous feedback of 1D array data
Posted: Sep 23, 2008 8:25 PM
Click to report abuse...   Click to reply to this thread Reply
Hello Claudia,
 
thank you for your help, this variation works independent from the pc or operation system.
 
best regards
Thomas
 
 

Original Message     
   processed by David InfoCenter 
Subject: 
AW: vrf logging time with win98 ok, but with win XP up to 99 ok, then back to zero (23-Sep-2008 9:11)
From:    
HYPERLINK "mailto:claudia.willging@kriwan-testzentrum.de"Willging, Claudia <claudia.willging@kriwan-testzentrum.de>
To:      
HYPERLINK "mailto:tw@huber-online.com"tw@huber-online.com (and 1 other)
 
Hello Thomas,
 
I don`t know what problem you have exactly with your program, but you can try programming your own timer using the "now" formula. See my little example I attached.
 
 

Mit freundlichen Grüßen

i. A. Claudia Willging

-----------------------------------------------------------------------------------------
Dr. Claudia Willging
KRIWAN Testzentrum GmbH & Co. KG
Teslastr. 2, D-74670 Forchtenberg
Tel.: (07947) 9150-0 (Durchwahl 9365) Fax: (07947) 9150-50
claudia.willging@KRIWAN-Testzentrum.de

-----Ursprüngliche Nachricht-----
Von: Thomas Walter mailto:tw@huber-online.com
Gesendet: Dienstag, 23. September 2008 08:33
An: VRF
Betreff: vrf logging time with win98 ok, but with win XP up to 99 ok, then back to zero


Hello,
the program is written in hpvee version 5
best regards
Thomas
________________________
Hello,
my program ran several years under win98, now we have a new pc with winXP, then the time variable run up to 99 minutes ok, then it falls back to 0 in a endless loop,
I did it with the timer function, difference of 2 inputs.
Do somebody know, how to solve this problem ??
 
best regards
Thomas

---
You are currently subscribed to vrf as: claudia.willging@kriwan-testzentrum.de
To subscribe please send an email to: "vrf-request@lists.it.agilent.com" with the word subscribe in the message body.
To unsubscribe send a blank email to "leave-vrf@it.lists.it.agilent.com".
To send messages to this mailing list, email "vrf@agilent.com".
If you need help with the mailing list send a message to
"owner-vrf@it.lists.it.agilent.com".
Search the "unofficial vrf archive" at "http://www.vrfarchive.com/vrf_archive".
Search the Agilent vrf archive at "http://vee.engineering.agilent.com".

*******************************************
Diese E-Mail enthaelt vertrauliche und/oder rechtlich geschuetzte Informationen. Wenn Sie nicht der richtige Adressat sind oder diese E-Mail irrtuemlich erhalten haben, informieren Sie bitte sofort den Absender und loeschen Sie diese Mail. Das unerlaubte Kopieren sowie die unbefugte Weitergabe dieser Mail ist nicht gestattet.

Eingehende E-Mails mit folgenden Anhangs-Endungen werden aus sicherheitsgründen automatisch abgewiesen:
PIF, SCR, BAT, URL, EXE, COM, DLL, HTA, VBS

This e-mail may contain confidential and/or privileged information. If you are not the intended recipient (or have received this e-mail in error) please notify the sender immediately and delete this e-mail. Any unauthorized copying, disclosure or distribution of the contents in this e-mail is strictly forbidden.

Incoming E-Mails with the following attachement-extensions are automatically rejected for security reasons:
PIF, SCR, BAT, URL, EXE, COM, DLL, HTA, VBS
*******************************************


KRIWAN Testzentrum GmbH & Co. KG  -  AG Stuttgart: HRA 590480
Komplementär:
KRIWAN Verwaltungs-GmbH  -  AG Stuttgart: HRA 590645
Geschäftsführer: Dr. Ing. Elmar Zeitler, Dipl.-Ing. Jens-Peter Huischen



To: claudia.willging@kriwan-testzentrum.de
    vrf@agilent.com


---
You are currently subscribed to vrf as: hua_jing@agilent.com
To subscribe please send an email to: "vrf-request@lists.it.agilent.com" with the word subscribe in the message body.
To unsubscribe send a blank email to "leave-vrf@it.lists.it.agilent.com".
To send messages to this mailing list, email "vrf@agilent.com".
If you need help with the mailing list send a message to
"owner-vrf@it.lists.it.agilent.com".
Search the "unofficial vrf archive" at "http://www.vrfarchive.com/vrf_archive".
Search the Agilent vrf archive at "http://vee.engineering.agilent.com".

Point your RSS reader here for a feed of the latest messages in all forums