On Sunday 26 September 2004 08:14, Jonathan Kaye wrote:

> 2. When I do some editing on the source code and then try to load it
> back into IVIB (this editing includes formatting changes, size position
> labels of objects), IVIB seems to revert back to a version that doesn't
> contain my (hand) edited changes. How can I get IVIB to recognise what
> I've coded?

Possibly you're trying to edit the code in the setup() method?  This method is 
auto-generated and re-created on every ivib save.  However, custom 
adjustments can be made to the effects of the setup() method, by adding to 
the component_setup() method, which normally just calls setup(), as 
follows :-

   method component_setup()
      self.setup()
   end

Any lines added after "self.setup()" will not be changed by ivib on future 
saves, so it is a good place to add code to enhance/undo things that happen 
in setup().

Hope this helps.



-------------------------------------------------------
This SF.Net email is sponsored by: YOU BE THE JUDGE. Be one of 170
Project Admins to receive an Apple iPod Mini FREE for your judgement on
who ports your project to Linux PPC the best. Sponsored by IBM.
Deadline: Sept. 24. Go here: http://sf.net/ppc_contest.php
_______________________________________________
Unicon-group mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/unicon-group

Reply via email to