in reply to Re: Using a scalar as a constant?
in thread Using a scalar as a constant?
I'm then using XML::Twig to parse the XML so my actual code looks like this for creating the TextCtrl:<text_ctrl internal_name="text_ctrl_details" parent="-1" value="" x_coordinate="100" y_coordinate="53" x_size="400" y_size="110" style="wxTE_MULTILINE" />
I've tried making it a function in the XML file and it still fails to show up. It does however work if I assign the constant to a scalar like you described.Wx::TextCtrl->new( $parent_panel, -1, $entry->att('value'), [$entry->a +tt('x_coordinate'), $entry->att('y_coordinate')], [$entry->att('x_siz +e'), $entry->att('y_size')], $entry->att('style') );
Any thoughts?
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^3: Using a scalar as a constant?
by Corion (Patriarch) on Oct 15, 2008 at 13:29 UTC | |
by JavaFan (Canon) on Oct 15, 2008 at 14:10 UTC | |
by suaveant (Parson) on Oct 15, 2008 at 14:22 UTC | |
by JavaFan (Canon) on Oct 15, 2008 at 15:24 UTC | |
by chromatic (Archbishop) on Oct 15, 2008 at 17:27 UTC | |
by suaveant (Parson) on Oct 15, 2008 at 16:09 UTC | |
by Anonymous Monk on Oct 15, 2008 at 13:56 UTC | |
|
Re^3: Using a scalar as a constant?
by Anonymous Monk on Oct 15, 2008 at 13:46 UTC | |
by Anonymous Monk on Oct 15, 2008 at 14:00 UTC |