01-22-2012 06:11 AM
Hi All!
I'm trying to update locals:
Engine my_egine = axApplicationMgr.GetEngine();
SequenceFile seq_file = my_egine.GetSequenceFileEx(seq_file_path, TypeConflictHandlerTypes.ConflictHandler_UseGlobalType);
Sequence seq = seq_file.GetSequenceByName("MainSequence");
seq.Locals.SetValString("strTextBox", 0, "my new string");
string str = seq.Locals.GetValString("strTextBox", 0);
MessageBox.Show(str);
I see "my new string" in message box but in the sequense the text is "Hello World".
As i understand there are run time and edit types of sequence. How can i get run time sequence?
01-23-2012 02:25 AM
Hi John,
Check out the following link: