Re: Release IDE version 0.18.6m

new topic     » goto parent     » topic index » view thread      » older message » newer message

------=_NextPart_000_000D_01C3F019.45774980

I'm running Win98SE 4.10.2222.A
Euphoria 2.4
Win32lib 0.59.1 8/June/2003

I tried to produce the same errors I was getting before but failed,
I encounted the problem when I made the origional version of Encryption
Utility found in the archives.

I have since removed the layers in the updated version and have completly
remodled it (using a new *.prj).

If anyone has an old copy of it U may be able to parse it to a *.prj file
and test with that. It was that origional *.prj that produced the errors I
mentioned below.
It is also the only layerd prog that I have experimented with sofar.

HOWEVER, I did find something else while trying to get back to the same
errors.

If I launch the attatched file from layer0, Everything works fine.
If I launch it from layer1 then the 'setVisible()' statements seem to
misbehave.

When launched from layer0, on the GotoLayer2 button, Group2 and everything
in it is made invisible
with one call to setVisible(Group2,False)

When lanched from layer1 the same call makes Group2 invisible but everything
in it remains visible.

Not a big problem, I dont mean to be a fuss pot!




----- Original Message ----- 
From: "Judith Evans" <camping at txcyber.com>
To: "Eu Forum" <EUforum at topica.com>
Sent: Tuesday, February 10, 2004 12:57 AM
Subject: Re: Release IDE version 0.18.6m


>
>
> I reloaded IDE 0.18.5 to test this and have not be able to reproduce the
> problem.
>
> I created a project with layer0 with an assortment of controls and layer 1
> with a group and two radio controls. With layer 1 active and Menu Run,
> everything seems ok. No ex.err. I must be miss understanding something you
> are saying.
>
> What version of (tm)Windows are you using and what version of Euphoria and
> Win32lib? Or perhaps you can send me a project file that demonstates the
> situation.
>
> ~judith
>
> Hayden McKay wrote:
> I don't know if you'ved noticed but in IDE for winlib 18.5, when you
execute
> a program from within IDE 18.5 with multiple layers and the frame window
is
> set on, say layer 2, (and a user presses 'run') everyting before it (in
this
> case, layer 1) produces an error message in ex.err
>
> for example:
>                 not declared messages etc...
>
> The problem seems to be, when a user presses 'run' when for example 'layer
> 3' is in the frame window insted of the main_win in the frame window, IDE
> 18.5 tries to execute from layer3, instead if executing from the start.
>
> This seems to be a serious problem for layering,
>
> If U like an example, make a window with two layers.
> Then have the second layer the frame window view,
> then press 'run' from the toolbar.
>
>
>
> TOPICA - Start your own email discussion group. FREE!
>
>
> -- 
> Incoming mail is certified Virus Free.
> Checked by AVG anti-virus system (http://www.grisoft.com).
> Version: 6.0.580 / Virus Database: 367 - Release Date: 6/02/04
>


---

------=_NextPart_000_000D_01C3F019.45774980
Content-Type: application/octet-stream; name=bug.prj
Content-Transfer-Encoding: quoted-printable
Content-Disposition: attachment; filename="bug.prj"

#Version 0.18.5
#Counter: 7
#WinCounter: 1
#Window 1
#Control: Window1
X       : 0
Y       : 0
CX      : 400
CY      : 300
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: Group2
AWindow : 5
X       : 16
Y       : 12
CX      : 360
CY      : 212
ControlLayer: 0
Title   : Group2
Class   : Group
Enabled : 0
Checked : 0
Parent  : 
PClass  : 
SeqParentName  : 
SeqParentClass  : 
SeqChildName  : EditText3
SeqChildName  : MleText4
Visible : 1
EnableC : 1
Style   : 
TypStyle: 
ExStyle : 0
TabOrder : 1
Local : 1

#Control: EditText3
AWindow : 5
X       : 32
Y       : 32
CX      : 328
CY      : 24
ControlLayer: 0
Title   : EditText3
Class   : EditText
Enabled : 0
Checked : 0
Parent  : Group2
PClass  : Group
SeqParentName  : Group2
SeqParentClass  : Group
SeqChildName  : 
Visible : 1
EnableC : 1
Style   : 
TypStyle: 
ExStyle : 0
TabOrder : 2
Local : 1

#Control: RichEdit5
AWindow : 5
X       : 8
Y       : 36
CX      : 256
CY      : 220
ControlLayer: 1
Title   : RichEdit5
Class   : RichEdit
Enabled : 0
Checked : 0
Parent  : 
PClass  : 
SeqParentName  : 
SeqParentClass  : 
SeqChildName  : 
EnableC : 1
Style   : ES_NOHIDESEL
TypStyle: 
ExStyle : 0
TabOrder : 4
Local : 1

#Control: MleText4
AWindow : 5
X       : 32
Y       : 64
CX      : 328
CY      : 148
ControlLayer: 0
Title   : MleText4
Class   : MleText
Enabled : 0
Checked : 0
Parent  : Group2
PClass  : Group
SeqParentName  : Group2
SeqParentClass  : Group
SeqChildName  : 
Visible : 1
EnableC : 1
Style   : 
TypStyle: 
ExStyle : 0
TabOrder : 3
Local : 1

#Control: PushButton7
AWindow : 5
X       : 280
Y       : 168
CX      : 88
CY      : 28
ControlLayer: 1
Title   : Goto Layer1
Class   : PushButton
Enabled : 0
Checked : 0
Parent  : 
PClass  : 
SeqParentName  : 
SeqParentClass  : 
SeqChildName  : 
EnableC : 1
Style   : 
TypStyle: 
ExStyle : 0
TabOrder : 6
Local : 1

#Proc: onClick
procedure PushButton7_onClick (integer self, integer event, sequence =
params)--params is ()
setVisible(PushButton7,False)
setVisible(Group2,True)
setVisible(RichEdit5,False)
end procedure
setHandler( PushButton7, w32HClick, routine_id("PushButton7_onClick"))
#EndProc

#Control: PushButton6
AWindow : 5
X       : 288
Y       : 232
CX      : 88
CY      : 28
ControlLayer: 0
Title   : Goto Layer2
Class   : PushButton
Enabled : 0
Checked : 0
Parent  : 
PClass  : 
SeqParentName  : 
SeqParentClass  : 
SeqChildName  : 
Visible : 1
EnableC : 1
Style   : 
TypStyle: 
ExStyle : 0
TabOrder : 5
Local : 1

#Proc: onClick
procedure PushButton6_onClick (integer self, integer event, sequence =
params)--params is ()
if isVisible(Group2) then
	setVisible(Group2,False)
	setVisible(RichEdit5,True)
	setVisible(PushButton7,True)
end if
end procedure
setHandler( PushButton6, w32HClick, routine_id("PushButton6_onClick"))
#EndProc


------=_NextPart_000_000D_01C3F019.45774980
Content-Type: text/plain; x-avg=cert; charset=iso-8859-2
Content-Transfer-Encoding: 8bit
Content-Disposition: inline
Content-Description: "AVG certification"

Outgoing mail is certified Virus Free.
Checked by AVG anti-virus system (http://www.grisoft.com).
Version: 6.0.580 / Virus Database: 367 - Release Date: 6/02/04

new topic     » goto parent     » topic index » view thread      » older message » newer message

Search



Quick Links

User menu

Not signed in.

Misc Menu