1. IDE Issue with Tab Captions

I'm trying to give a tab a caption the same as one that already exists,
but the IDE is complaining about duplicate NAMES.

Here's a .prj sample... Just try to change the caption of TabItem5 to
the same as the tabA tab.

--- begin sample .prj file
#Version 0.18.20
#Counter: 5
#WinCounter: 1
#Window 1
#TabInfo
TabText: Layer 0
TabRenamed: 0
TabNumber: 0
TabsetLayer: 0
#Control: Window1
X       : 0
Y       : 0
CX      : 272
CY      : 273
ControlLayer: 0
Title   : Window1
Class   : Window
Enabled : 0
Checked : 0
Parent  : 
PClass  : 
SeqParentName  : 
SeqParentClass  : 
SeqChildName  : 
Visible : 1
BkColor : 0
EnableC : 1
Style   : 0
TypStyle: 
ExStyle : 0
Local : 1

#Control: TabControl2
AWindow : 5
X       : 4
Y       : 4
CX      : 248
CY      : 224
ControlLayer: 0
Title   : TabControl2
SubClass: TabControl
Class   : TabControl
Enabled : 0
Checked : 0
Parent  : 
PClass  : 
SeqParentName  : 
SeqParentClass  : 
SeqChildName  : TabItem1
Active  : 1
Visible : 1
EnableC : 1
Style   : 
TypStyle: 
ExStyle : 0
TabOrder : 1
Local : 1

#Control: TabItem1
AWindow : 5
X       : 4
Y       : 4
CX      : 248
CY      : 224
ControlLayer: 0
Title   : tabA
SubClass: TabItem
Class   : TabItem
Enabled : 0
Checked : 0
Parent  : TabControl2
PClass  : TabControl
SeqParentName  : TabControl2
SeqParentClass  : TabControl
SeqChildName  : TabControl4
Active  : 1
Visible : 1
EnableC : 1
Style   : 
TypStyle: 
ExStyle : 0
TabOrder : 2
Local : 1

#Control: TabControl4
AWindow : 5
X       : 12
Y       : 60
CX      : 224
CY      : 144
ControlLayer: 0
Title   : TabControl4
SubClass: TabControl
Class   : TabControl
Enabled : 0
Checked : 0
Parent  : TabItem1
PClass  : TabItem
SeqParentName  : TabItem1
SeqParentClass  : TabItem
SeqChildName  : TabItem5
Active  : 1
Visible : 1
EnableC : 1
Style   : 
TypStyle: 
ExStyle : 0
TabOrder : 3
Local : 1

#Control: TabItem5
AWindow : 5
X       : 12
Y       : 60
CX      : 224
CY      : 144
ControlLayer: 0
Title   : tabB
SubClass: TabItem
Class   : TabItem
Enabled : 0
Checked : 0
Parent  : TabControl4
PClass  : TabControl
SeqParentName  : TabControl4
SeqParentClass  : TabControl
SeqChildName  : 
Active  : 1
Visible : 1
EnableC : 1
Style   : 
TypStyle: 
ExStyle : 0
TabOrder : 4
Local : 1

---end

-=ck
"Programming in a state of EUPHORIA."
http://www.cklester.com/euphoria/

new topic     » topic index » view message » categorize

2. Re: IDE Issue with Tab Captions

cklester wrote:
> 
> I'm trying to give a tab a caption the same as one that already exists,
> but the IDE is complaining about duplicate NAMES.
> 
> Here's a .prj sample... Just try to change the caption of TabItem5 to
> the same as the tabA tab.
> 
> --- begin sample .prj file
> #Version 0.18.20
> #Counter: 5
> #WinCounter: 1
> #Window 1
> #TabInfo
> TabText: Layer 0
> TabRenamed: 0
> TabNumber: 0
> TabsetLayer: 0
> #Control: Window1
> X       : 0
> Y       : 0
> CX      : 272
> CY      : 273
> ControlLayer: 0
> Title   : Window1
> Class   : Window
> Enabled : 0
> Checked : 0
> Parent  : 
> PClass  : 
> SeqParentName  : 
> SeqParentClass  : 
> SeqChildName  : 
> Visible : 1
> BkColor : 0
> EnableC : 1
> Style   : 0
> TypStyle: 
> ExStyle : 0
> Local : 1
> 
> #Control: TabControl2
> AWindow : 5
> X       : 4
> Y       : 4
> CX      : 248
> CY      : 224
> ControlLayer: 0
> Title   : TabControl2
> SubClass: TabControl
> Class   : TabControl
> Enabled : 0
> Checked : 0
> Parent  : 
> PClass  : 
> SeqParentName  : 
> SeqParentClass  : 
> SeqChildName  : TabItem1
> Active  : 1
> Visible : 1
> EnableC : 1
> Style   : 
> TypStyle: 
> ExStyle : 0
> TabOrder : 1
> Local : 1
> 
> #Control: TabItem1
> AWindow : 5
> X       : 4
> Y       : 4
> CX      : 248
> CY      : 224
> ControlLayer: 0
> Title   : tabA
> SubClass: TabItem
> Class   : TabItem
> Enabled : 0
> Checked : 0
> Parent  : TabControl2
> PClass  : TabControl
> SeqParentName  : TabControl2
> SeqParentClass  : TabControl
> SeqChildName  : TabControl4
> Active  : 1
> Visible : 1
> EnableC : 1
> Style   : 
> TypStyle: 
> ExStyle : 0
> TabOrder : 2
> Local : 1
> 
> #Control: TabControl4
> AWindow : 5
> X       : 12
> Y       : 60
> CX      : 224
> CY      : 144
> ControlLayer: 0
> Title   : TabControl4
<snip>

This is a fundamental flaw in IDE. The TabItem combo in IDE's toolbar uses Title
instead of Name. I did not think anyone would use duplicate Title and I used
Title so the programmer could easily match up the tab he is viewing to the entry
in the combo. However most everywhere else I use Name. I can make this change.

Right now I am in the middle of a huge move to another state in the USA and will
not be able to address IDE issues (meaning another release) until the move is
completed which may be several weeks away.

~judith

new topic     » goto parent     » topic index » view message » categorize

3. Re: IDE Issue with Tab Captions

Judith Evans wrote:
> 
> cklester wrote:
> > 
> > I'm trying to give a tab a caption the same as one that already exists,
> > but the IDE is complaining about duplicate NAMES.
> 
> This is a fundamental flaw in IDE. The TabItem combo in IDE's toolbar uses
> Title instead
> of Name. I did not think anyone would use duplicate Title and I used Title so
> the programmer
> could easily match up the tab he is viewing to the entry in the combo. However
> most
> everywhere else I use Name. I can make this change.
> 
> Right now I am in the middle of a huge move to another state in the USA and
> will not
> be able to address IDE issues (meaning another release) until the move is
> completed
> which may be several weeks away. 

Several weeks?! Yipes!!! Maybe we should invite a bunch of Euphorians to
your place to help you move a little quicker... heheh.

-=ck
"Programming in a state of EUPHORIA."
http://www.cklester.com/euphoria/

new topic     » goto parent     » topic index » view message » categorize

Search



Quick Links

User menu

Not signed in.

Misc Menu