I am sorry, please discard my previous comment... after further reading of the 
help doc, it does not make sense.

From: users [mailto:[email protected]] On Behalf Of Rafael Guerra
Sent: Tuesday, September 13, 2016 4:14 PM
To: Users mailing list for Scilab <[email protected]>
Subject: Re: [Scilab-users] GUI save and import data


Hi,



Without seeing the details of your code and with no experience with findobj, 
from what I could understand from the help file, the command lines like:   
Q=findobj("tag","Q");

do not sound good.

As findobj outputs an handle to your uicontrol object, you could try:

  hdl = findobj("tag","Q");

  Q = hdl.Q;    // or:  Q = evstr(hdl.Q);   if data stored as string

  dpTot =  hdl.dpTot;  // etc..



Regards,

Rafael



-----Original Message-----
From: users [mailto:[email protected]] On Behalf Of petarf
Sent: Tuesday, September 13, 2016 2:12 PM
To: [email protected]<mailto:[email protected]>
Subject: Re: [Scilab-users] GUI save and import data



Hi, I managed to write function to place new values from txt. file instead of

old values. But now when I run the calculation



Q=findobj("tag","Q"); par(1)=evstr(Q.string);

 dpTot=findobj("tag","dpTot"); par(2)=evstr(dpTot.string);



these set of lines do not read new values. String Q is evaluated as old

value. Any ideas?



Regards,

Petar







--

View this message in context: 
http://mailinglists.scilab.org/GUI-save-and-import-data-tp4034558p4034566.html

Sent from the Scilab users - Mailing Lists Archives mailing list archive at 
Nabble.com.

_______________________________________________

users mailing list

[email protected]<mailto:[email protected]>

http://lists.scilab.org/mailman/listinfo/users
_______________________________________________
users mailing list
[email protected]
http://lists.scilab.org/mailman/listinfo/users

Reply via email to