Dan,
Depending on the type of import different file types are accepted in the Advanced Import Wizard.
Desktop Import *.iadsDt
Analysis Window Import *.iadsAw
Configuration Update *.iadsUpdate (Used by IADS Developers generally for unique config modifications)
Depending on the scope of changes either just the offending Analysis window can be selected or a complete Desktop.
Upon importing with the wizard you will be prompted with the option to keep or replace changes to the config.
1. Export old window from old analysis window. (this will include display objects, parameters, envelopes etc.)
2. Import with Advanced Wizard to new configuration.
3. Select how to treat differences with the Manage Conflicts window.
4. Save new config with changes.
I hope this clears it up.
Adam Chant
Symvionics, Inc.
IADS Application Engineer
--
You received this message because you are subscribed to the Google Groups "IADS" group.
To view this discussion on the web visit https://groups.google.com/d/msg/iads/-/TwJ3XDZanRAJ.
To post to this group, send email to ia...@googlegroups.com.
To unsubscribe from this group, send email to iads+uns...@googlegroups.com.
For more options, visit this group at http://groups.google.com/group/iads?hl=en.
I'm in the process of writing an application that uses the IADS
automation interface to retrieve aperiodic blob data via the IParameter
interface.
I want to start at the earliest time that the parameter has data so I
use the following code to set it up:
IParameter *ip = m_IadsApp.Configuration.CreateParameter("someblob");
ip.CurrentTime = ip.StartTime; // This call returns E_FAIL
Should this fail???
If I set it to the StartTime + 1 second it works:
**** This is complete sudo code ****
totalSecs = ip.StartTime.GetTotalSecs();
ip.CurrentTime.PutTime(totalSecs+1); // This works fine
Thanks,
Greg
We'll look into this further.
Adam Chant
Symvionics, Inc.
IADS Application Engineer
(661) 273-7003 x 210
-----Original Message-----
From: ia...@googlegroups.com [mailto:ia...@googlegroups.com] On Behalf Of
Myers, Darrell G CTR USAF AFMC 412 TW/ENR
Sent: Thursday, April 12, 2012 10:30 AM
To: ia...@googlegroups.com
Hello all,
Should this fail???
Thanks,
Greg
--
You received this message because you are subscribed to the Google Groups
"IADS" group.
Greg, can you zip up and send us that data file (and associated index file)
via private email?
We'll debug it,
Jim
--------------------------------------------------
From: "Adam Chant" <ad...@iads-soft.com>
Sent: Thursday, April 12, 2012 10:57 AM
To: <ia...@googlegroups.com>
Subject: RE: [IADS] Question on setting CurrentTime on an IParameter