Page 1 of 3

empty window after mui-settings.

Posted: Sun May 04, 2014 12:59 am
by evil
Hello!
My program runs in a mui-screen.
The xml-Code for this window:

Code: Select all

	<window open="0" title="STAR" id="STAR" DragBar="TRUE" SizeGadget="TRUE" DepthGadget="TRUE" closegadget="TRUE" notify="closerequest" borderless="TRUE">
		<hgroup><hollywood id="start" display="1"/></hgroup>
	</window>

So there is only one gadget: hollywood

When I open the mui-configuration-program and then use or save it,
the display will not refresh. I get a simple white screen.
Is there any notification to use, so that I can redisplay the mui-window??

Re: empty window after mui-settings.

Posted: Tue May 06, 2014 6:37 pm
by airsoftsoftwair
Which platform are you on? How do you open the MUI preferences? Using Application.OpenConfigWindow?

Re: empty window after mui-settings.

Posted: Wed May 07, 2014 10:45 pm
by evil
Hi!
This is the way, I open the MUI-Config-Window.

Code: Select all

mui.domethod ("ArtBase","OpenConfigWindow")
The application line in xml:

Code: Select all

 <application id="ArtBase" base="ArtBase" icon="Artbase:ArtBase.info"> 
I run it on OS4.1.6. MUI 4.0 is installed.

By the way, I have a similar problem, when deiconifying the Program.

Best regards!

George

Re: empty window after mui-settings.

Posted: Thu May 08, 2014 10:34 am
by evil
Me again.

Here some small snippets to demonstrate my problem:

first the xml-code

Code: Select all

<?xml version="1.0" encoding="iso-8859-1"?>
<application id="ArtBase" base="ArtBase">
	<menustrip id="menuansicht">
		<menu id="am_project" title="Menu">
			<item id="mui" notify="selected">MUI</item>
		</menu>
	</menustrip>

	<window activate="1" open="1" title="ANSI" DragBar="TRUE" MenuStrip="menuansicht"	id="1" SizeGadget="TRUE" DepthGadget="TRUE" closegadget="TRUE" notify="closerequest" borderless="TRUE">
		<hgroup>
			<hollywood id="ANSI" display="1"/>
		</hgroup>
	</window>
</application>
And here the hws-part

Code: Select all

@REQUIRE "MUIRoyale"
@APPTITLE "Test"
@APPVERSION "$VER: test 0.1 (05.05.14)"
@APPCOPYRIGHT "©2014, Jörg Renkert"
@APPAUTHOR "Jörg Renkert"
@APPDESCRIPTION "test"

Function p_menuevents(msg)
nprint (msg.id)
	Switch msg.id
		Case "mui" mui.domethod ("ArtBase","OpenConfigWindow")
	EndSwitch
EndFunction

mui.CreateGui(FileToString("ram:test.xml"))
Installeventhandler ({muiroyale=p_menuevents})
createbrush (1,640,480,#red)
displaybrush(1,0,0)
repeat 
waitevent()
print ("x ")
forever
This example shows my problem:
When I change for example the mui-screen or simply iconify and deiconify the program, a simple white display will be shown.
After "Displaybgpic()" everything will be alright again.

Question: Is there any notification for deiconification or exiting mui-settings??

Best regards!

George!

Re: empty window after mui-settings.

Posted: Sun May 11, 2014 3:10 pm
by airsoftsoftwair
Well, your XML is flawed. You cannot use Window.Borderless together with attributes like Window.SizeGadget or Window.DepthGadget because these require a title bar which Window.Borderless actually turns off. Setting Window.Borderless to TRUE with attributes that require a title bar is asking for trouble. Remove that Window.Borderless tag and everything will be fine.

Re: empty window after mui-settings.

Posted: Tue May 20, 2014 1:25 am
by evil
Hello again!

My problem is not solved yet.
I corrected the values in the xml-document.
The problem is as followed:

My Project should run borderless in Full-Screen-Mode.
I created a single group insde the window with the hollywood-display as single class.
That works fine so far.
Opening the mui-settings works,too.
The problem comes, when I change the Screen settings to a resolution, smaller than the actual one.
The same problem occurs, when I switch to another screen, which has a smaller resolution then the actual one.

Doing that, deletes the application-window. It cannot be resolved later.
The application did not quit (it is still listed in exchange and can be deleted from the exchange-list.
Just the window seems to be closed...

The problem seems to be the fixed width and height of the hollywood-display.
As it doesnt fit into the smaller screen, it gets lost...
Making the hollywood-display resizeable, doesnt help also.
Even the @DISPLAY commant with "sizeable=TRUE" nor Mui Hollywood.MaxWidth and Hollywood.MaxHeight dont help.

As MUI-Settings doesnt notify the apllication, when its closed, I dont see any solution for my problem.

I resized the display to 320*240 before calling the config-window. In this case the (smaller) display will be shown on smaller screen-resolution.
But as I dont get notified, when the MUI-config-window is closed, I never know, when to resize the window again.

I used mui.request after opening the config window, to tell the user to close the requester after closing the mui-config-window.
But this requester blocks the mui-config-window, too. And btw. this is the worst solution there might be....

So, someone any hints for me???

Best regards

George

Re: empty window after mui-settings.

Posted: Wed May 21, 2014 10:16 pm
by airsoftsoftwair
You must use Hollywood.MinWidth and Hollywood.MinHeight, i.e. something like this:

Code: Select all

<hollywood display="1" minwidth="1" minheight="1">
By default, the minimum dimensions are set to your display's dimensions (e.g. 640x480 in your case). Thus, if the screen size is reduced to something smaller than that, MUI won't open your window at all because there's not enough space. If you set the minimum dimensions to 1x1, however, then it should always fit... you'll also get a "SizeWindow" message to find out about the size change.

Re: empty window after mui-settings.

Posted: Thu May 22, 2014 12:20 am
by evil
Hi!

The problem is solved at 50% now! :!: :?:
hollywood.minwidth and hollywood.minheight worked like you said!
But I cant trigger the sizewindow-event
Installeventhandler {Sizewindow = p_EventFunc}) will simply not call the function!

Here an Example


hws-Code:

Code: Select all

@REQUIRE "MUIRoyale"
@APPTITLE "TEst"
@APPVERSION "$VER: 1"
@APPCOPYRIGHT "Him"
@APPAUTHOR "too"
@APPDESCRIPTION "Test SizeWindow-Event"

@DISPLAY {Width = 400, Height = 400}
Escapequit(TRUE)

Function p_EventFunc(msg)
	setfontcolor (#white) nprint ("toll")

	Switch msg.action
	Case "SizeWindow":
		setfontcolor (#red) nprint ("supi")
	EndSwitch
EndFunction


mui.CreateGui(FileToString("sizewindowtest.xml"))
InstallEventHandler({SizeWindow = p_EventFunc, OnMouseDown = p_EventFunc})


Repeat
	WaitEvent
Forever

xml-Code:

Code: Select all

<?xml version="1.0" encoding="iso-8859-1"?>
<application id="app" base="Test">
	<window id="toll" muiid="TEST">
		<vgroup>
			<hollywood display="1" minwidth="5" minheight="5"/>
		</vgroup>
	</window>
</application>
When startet, two windows appear (ofcourse).
When I hit the mousebutton, "toll" will be written to screen.
When I resize the window, nothing will be written. Not "toll" and not "supi".


In your mui-example-script (Examples/Class3.hws) the Sizewindow event will not be triggered, too.
In the code the brush would be cleared after a resize. This does not happen.

Is this a bug or am I simply to stupid to understand???

Best regards!!

George

Re: empty window after mui-settings.

Posted: Thu May 22, 2014 3:49 pm
by airsoftsoftwair
Hmm, I've tested your code on OS4 (muimaster.library 20.6175) and MorphOS. It works fine on both systems. "SizeWindow" is always triggered. It is also triggered in my example code Class3.hws so I'm pretty clueless why it shouldn't work on your system. What muimaster.library are you on?

Re: empty window after mui-settings.

Posted: Thu May 22, 2014 11:36 pm
by evil
Hello!

I have installed muimaster.library 20.6175
I reinstalled MUI 4.0-2014R3 from muidev.de
But it did not help.
My System is os4.1 Update 6
No further patches installed

Snoopy did not tell anything about missing or old librarys.

Here is the snoopy-log. Maybe it helps anywhere....
It shows all fails, when I started Hollywood-GUI, opened examples/class3 and did some resizes.

Code: Select all

Log Generated by; Snoopy 53.32 (14.10.2013)

00001 : ENV/env-handler 52.2  : FAIL = Lock("ENVARC:ELF.LazyBinding",SHARED) [48uS]
00002 : GUI             : FAIL = [exec] OpenResource("PicassoIV.resource") [17uS]
00003 : GUI             : FAIL = GetVar("classes/datatypes/picture/DitherHiColour",0x662FC53C,10,0x00000000) [2594uS]
00004 : GUI             : FAIL = [exec] OpenResource("PicassoIV.resource") [13uS]
00005 : ENV/env-handler 52.2  : FAIL = Lock("ENVARC:ELF.LazyBinding",SHARED) [31uS]
00006 : ENV/env-handler 52.2  : FAIL = Lock("ENVARC:ELF.LazyBinding",SHARED) [33uS]
00007 : ENV/env-handler 52.2  : FAIL = Lock("ENVARC:ELF.LazyBinding",SHARED) [32uS]
00008 : ENV/env-handler 52.2  : FAIL = Lock("ENVARC:ELF.LazyBinding",SHARED) [42uS]
00009 : ENV/env-handler 52.2  : FAIL = Lock("ENVARC:ELF.LazyBinding",SHARED) [30uS]
00010 : ENV/env-handler 52.2  : FAIL = Lock("ENVARC:ELF.LazyBinding",SHARED) [29uS]
00011 : ENV/env-handler 52.2  : FAIL = Lock("ENVARC:ELF.LazyBinding",SHARED) [33uS]
00012 : ENV/env-handler 52.2  : FAIL = Lock("ENVARC:ELF.LazyBinding",SHARED) [70uS]
00013 : ENV/env-handler 52.2  : FAIL = Lock("ENVARC:ELF.LazyBinding",SHARED) [64uS]
00014 : ENV/env-handler 52.2  : FAIL = Lock("ENVARC:ELF.LazyBinding",SHARED) [42uS]
00015 : ENV/env-handler 52.2  : FAIL = Lock("ENVARC:ELF.LazyBinding",SHARED) [70uS]
00016 : ENV/env-handler 52.2  : FAIL = Lock("ENVARC:APPLIB_DEBUG",SHARED) [74uS]
00017 : ENV/env-handler 52.2  : FAIL = Lock("ENVARC:MagicWB",SHARED) [45uS]
00018 : GUI             : FAIL = GetVar("MagicWB",0x662FC558,4,0x00000100) [259uS]
00019 : ENV/env-handler 52.2  : FAIL = Lock("ENVARC:MagicWB",SHARED) [62uS]
00020 : GUI             : FAIL = GetVar("MagicWB",0x662F9A88,4,0x00000100) [3012uS]
00021 : ENV/env-handler 52.2  : FAIL = Lock("ENVARC:MagicWB",SHARED) [72uS]
00022 : GUI             : FAIL = GetVar("MagicWB",0x662F9FA8,4,0x00000100) [2781uS]
00023 : GUI             : FAIL = Open("AlphaApple.info",OLD) = [0x00000000] [45uS]
00024 : GUI             : FAIL = Open("AlphaChannel.info",OLD) = [0x00000000] [78uS]
00025 : GUI             : FAIL = Open("AnimationTechniques.info",OLD) = [0x00000000] [38uS]
00026 : GUI             : FAIL = Open("AnimPlayer.info",OLD) = [0x00000000] [44uS]
00027 : GUI             : FAIL = Open("Aquarium.info",OLD) = [0x00000000] [35uS]
00028 : GUI             : FAIL = Open("ARexx.info",OLD) = [0x00000000] [35uS]
00029 : GUI             : FAIL = Open("AsyncFX.info",OLD) = [0x00000000] [33uS]
00030 : GUI             : FAIL = Open("BallsDemo.info",OLD) = [0x00000000] [37uS]
00031 : GUI             : FAIL = Open("Blanker.info",OLD) = [0x00000000] [36uS]
00032 : GUI             : FAIL = Open("BouncingBall.info",OLD) = [0x00000000] [32uS]
00033 : GUI             : FAIL = Open("CircleText.info",OLD) = [0x00000000] [48uS]
00034 : GUI             : FAIL = Open("ClipRegions.info",OLD) = [0x00000000] [40uS]
00035 : GUI             : FAIL = Open("Collision.info",OLD) = [0x00000000] [32uS]
00036 : GUI             : FAIL = Open("ColorGame.info",OLD) = [0x00000000] [41uS]
00037 : GUI             : FAIL = Open("CommandLine.info",OLD) = [0x00000000] [36uS]
00038 : GUI             : FAIL = Open("Cracktros.info",OLD) = [0x00000000] [36uS]
00039 : GUI             : FAIL = Open("DaCoolQuiz.info",OLD) = [0x00000000] [39uS]
00040 : GUI             : FAIL = Open("DisplayStyle.info",OLD) = [0x00000000] [38uS]
00041 : GUI             : FAIL = Open("DragNDrop.info",OLD) = [0x00000000] [34uS]
00042 : GUI             : FAIL = Open("EasterIntro.info",OLD) = [0x00000000] [43uS]
00043 : GUI             : FAIL = Open("EuroCalc.info",OLD) = [0x00000000] [37uS]
00044 : GUI             : FAIL = Open("Fireworks.info",OLD) = [0x00000000] [39uS]
00045 : GUI             : FAIL = Open("3DText.info",OLD) = [0x00000000] [37uS]
00046 : GUI             : FAIL = Open("FormsDemo.info",OLD) = [0x00000000] [43uS]
00047 : GUI             : FAIL = Open("FXTool.info",OLD) = [0x00000000] [47uS]
00048 : GUI             : FAIL = Open("Gradients.info",OLD) = [0x00000000] [35uS]
00049 : GUI             : FAIL = Open("HelloWorld.info",OLD) = [0x00000000] [42uS]
00050 : GUI             : FAIL = Open("HollyAmp.info",OLD) = [0x00000000] [33uS]
00051 : GUI             : FAIL = Open("HollyMan.info",OLD) = [0x00000000] [35uS]
00052 : GUI             : FAIL = Open("ImageLab.info",OLD) = [0x00000000] [45uS]
00053 : GUI             : FAIL = Open("Intro.info",OLD) = [0x00000000] [33uS]
00054 : GUI             : FAIL = Open("Katica.info",OLD) = [0x00000000] [34uS]
00055 : GUI             : FAIL = Open("LayerStyle.info",OLD) = [0x00000000] [35uS]
00056 : GUI             : FAIL = Open("Lens.info",OLD) = [0x00000000] [37uS]
00057 : GUI             : FAIL = Open("Melt.info",OLD) = [0x00000000] [38uS]
00058 : GUI             : FAIL = Open("ClipboardDemo.info",OLD) = [0x00000000] [35uS]
00059 : GUI             : FAIL = Open("MultiDisplays.info",OLD) = [0x00000000] [36uS]
00060 : GUI             : FAIL = Open("MultiDragNSize.info",OLD) = [0x00000000] [51uS]
00061 : GUI             : FAIL = Open("ObjectTransitionFX.info",OLD) = [0x00000000] [41uS]
00062 : GUI             : FAIL = Open("PhotoAlbum.info",OLD) = [0x00000000] [39uS]
00063 : GUI             : FAIL = Open("PointerDemo.info",OLD) = [0x00000000] [38uS]
00064 : GUI             : FAIL = Open("PolygonTest.info",OLD) = [0x00000000] [35uS]
00065 : GUI             : FAIL = Open("Puzzle.info",OLD) = [0x00000000] [35uS]
00066 : GUI             : FAIL = Open("SCUILib.info",OLD) = [0x00000000] [44uS]
00067 : GUI             : FAIL = Open("SinusScroller.info",OLD) = [0x00000000] [57uS]
00068 : GUI             : FAIL = Open("Snowflakes.info",OLD) = [0x00000000] [67uS]
00069 : GUI             : FAIL = Open("Text.info",OLD) = [0x00000000] [79uS]
00070 : GUI             : FAIL = Open("FloodFill.info",OLD) = [0x00000000] [96uS]
00071 : GUI             : FAIL = Open("TextureScroll.info",OLD) = [0x00000000] [75uS]
00072 : GUI             : FAIL = Open("TextZoom.info",OLD) = [0x00000000] [60uS]
00073 : GUI             : FAIL = Open("TransitionFX.info",OLD) = [0x00000000] [83uS]
00074 : GUI             : FAIL = Open("WavyLogo.info",OLD) = [0x00000000] [35uS]
00075 : GUI             : FAIL = Open("Welcome.info",OLD) = [0x00000000] [56uS]
00076 : GUI             : FAIL = Open("WobbleText.info",OLD) = [0x00000000] [72uS]
00077 : GUI             : FAIL = Open("3DCube.info",OLD) = [0x00000000] [40uS]
00078 : GUI             : FAIL = Open("BeastScroll.info",OLD) = [0x00000000] [39uS]
00079 : GUI             : FAIL = Open("FilterFX.info",OLD) = [0x00000000] [50uS]
00080 : GUI             : FAIL = Open("Infinity.info",OLD) = [0x00000000] [48uS]
00081 : GUI             : FAIL = Open("MouseWheelDemo.info",OLD) = [0x00000000] [41uS]
00082 : GUI             : FAIL = Open("Synthesizer.info",OLD) = [0x00000000] [36uS]
00083 : GUI             : FAIL = Open("VectorTest.info",OLD) = [0x00000000] [33uS]
00084 : GUI             : FAIL = Open("VectorTest2.info",OLD) = [0x00000000] [34uS]
00085 : GUI             : FAIL = Open("VideoPlayer.info",OLD) = [0x00000000] [37uS]
00086 : Background CLI  : FAIL = FindSegment("SHELL",0x00000000,USER) [13uS]
00087 : Background CLI  : FAIL = FindSegment("run",0x00000000,USER) [1uS]
00088 : Background CLI  : FAIL = FindSegment("alias",0x00000000,USER) [1uS]
00089 : Background CLI  : FAIL = FindSegment("pipe",0x00000000,USER) [2uS]
00090 : Background CLI  : FAIL = GetVar("_ScriptLine",0x5DC11DD0,40,0x00000200) [9uS]
00091 : Background CLI  : FAIL = GetVar("Echo",0x5DC11D38,32,0x00000200) [2uS]
00092 : Background CLI  : FAIL = GetVar("OldRedirect",0x5DC11D38,32,0x00000200) [2uS]
00093 : Background CLI  : FAIL = GetVar("KeepDoubleQuotes",0x5DC11D38,32,0x00000200) [3uS]
00094 : Background CLI  : FAIL = GetVar("Interactive",0x5DC11D38,32,0x00000200) [2uS]
00095 : Background CLI  : FAIL = FindSegment("Hollywood:System/Hollywood",0x00000000,USER) [1uS]
00096 : Background CLI  : FAIL = FindSegment("Hollywood:System/Hollywood",0x00000000,SYSTEM) [1uS]
00097 : ENV/env-handler 52.2  : FAIL = Lock("ENVARC:ELF.LazyBinding",SHARED) [47uS]
00098 : ENV/env-handler 52.2  : FAIL = Lock("ENVARC:ELF.LazyBinding",SHARED) [73uS]
00099 : ENV/env-handler 52.2  : FAIL = Lock("ENVARC:ELF.LazyBinding",SHARED) [30uS]
00100 : ENV/env-handler 52.2  : FAIL = Lock("ENVARC:ELF.LazyBinding",SHARED) [32uS]
00101 : ENV/env-handler 52.2  : FAIL = Lock("ENVARC:ELF.LazyBinding",SHARED) [34uS]
00102 : ENV/env-handler 52.2  : FAIL = Lock("ENVARC:ELF.LazyBinding",SHARED) [33uS]
00103 : ENV/env-handler 52.2  : FAIL = Lock("ENVARC:ELF.LazyBinding",SHARED) [35uS]
00104 : ENV/env-handler 52.2  : FAIL = Lock("ENVARC:ELF.LazyBinding",SHARED) [32uS]
00105 : ENV/env-handler 52.2  : FAIL = Lock("ENVARC:ELF.LazyBinding",SHARED) [33uS]
00106 : ENV/env-handler 52.2  : FAIL = Lock("ENVARC:ELF.LazyBinding",SHARED) [32uS]
00107 : ENV/env-handler 52.2  : FAIL = Lock("ENVARC:ELF.LazyBinding",SHARED) [34uS]
00108 : ENV/env-handler 52.2  : FAIL = Lock("ENVARC:ELF.LazyBinding",SHARED) [33uS]
00109 : ENV/env-handler 52.2  : FAIL = Lock("ENVARC:codeset_default",SHARED) [56uS]
00110 : Hollywood       : FAIL = GetVar("codeset_default",0x5EAFEE18,256,0x00000100) [2510uS]
00111 : ENV/env-handler 52.2  : FAIL = Lock("ENVARC:codeset_default",SHARED) [49uS]
00112 : Hollywood       : FAIL = GetVar("codeset_default",0x5EAFEE18,256,0x00000100) [227uS]
00113 : ENV/env-handler 52.2  : FAIL = Lock("ENVARC:codeset_default",SHARED) [21uS]
00114 : Hollywood       : FAIL = GetVar("codeset_default",0x5EAFEF58,256,0x00000100) [124uS]
00115 : ENV/env-handler 52.2  : FAIL = Lock("ENVARC:codeset_default",SHARED) [20uS]
00116 : Hollywood       : FAIL = GetVar("codeset_default",0x5EAFEF58,256,0x00000100) [119uS]
00117 : ENV/env-handler 52.2  : FAIL = Lock("ENVARC:codeset_default",SHARED) [21uS]
00118 : Hollywood       : FAIL = GetVar("codeset_default",0x5EAFEE18,256,0x00000100) [125uS]
00119 : ENV/env-handler 52.2  : FAIL = Lock("ENVARC:codeset_default",SHARED) [19uS]
00120 : Hollywood       : FAIL = GetVar("codeset_default",0x5EAFEE18,256,0x00000100) [113uS]
00121 : ENV/env-handler 52.2  : FAIL = Lock("ENVARC:codeset_default",SHARED) [18uS]
00122 : Hollywood       : FAIL = GetVar("codeset_default",0x5EAFEE18,256,0x00000100) [112uS]
00123 : ENV/env-handler 52.2  : FAIL = Lock("ENVARC:codeset_default",SHARED) [18uS]
00124 : Hollywood       : FAIL = GetVar("codeset_default",0x5EAFEE18,256,0x00000100) [113uS]
00125 : ENV/env-handler 52.2  : FAIL = Lock("ENVARC:codeset_default",SHARED) [19uS]
00126 : Hollywood       : FAIL = GetVar("codeset_default",0x5EAFEE18,256,0x00000100) [113uS]
00127 : ENV/env-handler 52.2  : FAIL = Lock("ENVARC:codeset_default",SHARED) [20uS]
00128 : Hollywood       : FAIL = GetVar("codeset_default",0x5EAFEF58,256,0x00000100) [120uS]
00129 : ENV/env-handler 52.2  : FAIL = Lock("ENVARC:codeset_default",SHARED) [19uS]
00130 : Hollywood       : FAIL = GetVar("codeset_default",0x5EAFEF58,256,0x00000100) [119uS]
00131 : ENV/env-handler 52.2  : FAIL = Lock("ENVARC:codeset_default",SHARED) [21uS]
00132 : Hollywood       : FAIL = GetVar("codeset_default",0x5EAFEF58,256,0x00000100) [126uS]
00133 : ENV/env-handler 52.2  : FAIL = Lock("ENVARC:codeset_default",SHARED) [19uS]
00134 : Hollywood       : FAIL = GetVar("codeset_default",0x5EAFEF58,256,0x00000100) [118uS]
00135 : ENV/env-handler 52.2  : FAIL = Lock("ENVARC:codeset_default",SHARED) [21uS]
00136 : Hollywood       : FAIL = GetVar("codeset_default",0x5EAFEE18,256,0x00000100) [122uS]
00137 : ENV/env-handler 52.2  : FAIL = Lock("ENVARC:codeset_default",SHARED) [19uS]
00138 : Hollywood       : FAIL = GetVar("codeset_default",0x5EAFEE18,256,0x00000100) [113uS]
00139 : ENV/env-handler 52.2  : FAIL = Lock("ENVARC:codeset_default",SHARED) [20uS]
00140 : Hollywood       : FAIL = GetVar("codeset_default",0x5EAFEF58,256,0x00000100) [118uS]
00141 : ENV/env-handler 52.2  : FAIL = Lock("ENVARC:codeset_default",SHARED) [27uS]
00142 : Hollywood       : FAIL = GetVar("codeset_default",0x5EAFEF58,256,0x00000100) [392uS]
00143 : ENV/env-handler 52.2  : FAIL = Lock("ENVARC:codeset_default",SHARED) [19uS]
00144 : Hollywood       : FAIL = GetVar("codeset_default",0x5EAFEF58,256,0x00000100) [120uS]
00145 : ENV/env-handler 52.2  : FAIL = Lock("ENVARC:codeset_default",SHARED) [19uS]
00146 : Hollywood       : FAIL = GetVar("codeset_default",0x5EAFEF58,256,0x00000100) [119uS]
00147 : ENV/env-handler 52.2  : FAIL = Lock("ENVARC:codeset_default",SHARED) [20uS]
00148 : Hollywood       : FAIL = GetVar("codeset_default",0x5EAFEF58,256,0x00000100) [122uS]
00149 : ENV/env-handler 52.2  : FAIL = Lock("ENVARC:codeset_default",SHARED) [19uS]
00150 : Hollywood       : FAIL = GetVar("codeset_default",0x5EAFEF58,256,0x00000100) [116uS]
00151 : ENV/env-handler 52.2  : FAIL = Lock("ENVARC:codeset_default",SHARED) [20uS]
00152 : Hollywood       : FAIL = GetVar("codeset_default",0x5EAFEF58,256,0x00000100) [120uS]
00153 : ENV/env-handler 52.2  : FAIL = Lock("ENVARC:codeset_default",SHARED) [21uS]
00154 : Hollywood       : FAIL = GetVar("codeset_default",0x5EAFEE18,256,0x00000100) [129uS]
00155 : ENV/env-handler 52.2  : FAIL = Lock("ENVARC:codeset_default",SHARED) [19uS]
00156 : Hollywood       : FAIL = GetVar("codeset_default",0x5EAFEE18,256,0x00000100) [114uS]
00157 : ENV/env-handler 52.2  : FAIL = Lock("ENVARC:codeset_default",SHARED) [18uS]
00158 : Hollywood       : FAIL = GetVar("codeset_default",0x5EAFEE18,256,0x00000100) [115uS]
00159 : ENV/env-handler 52.2  : FAIL = Lock("ENVARC:codeset_default",SHARED) [19uS]
00160 : Hollywood       : FAIL = GetVar("codeset_default",0x5EAFEE18,256,0x00000100) [113uS]
00161 : ENV/env-handler 52.2  : FAIL = Lock("ENVARC:codeset_default",SHARED) [18uS]
00162 : Hollywood       : FAIL = GetVar("codeset_default",0x5EAFEE18,256,0x00000100) [112uS]
00163 : ENV/env-handler 52.2  : FAIL = Lock("ENVARC:codeset_default",SHARED) [19uS]
00164 : Hollywood       : FAIL = GetVar("codeset_default",0x5EAFEE18,256,0x00000100) [113uS]
00165 : ENV/env-handler 52.2  : FAIL = Lock("ENVARC:codeset_default",SHARED) [20uS]
00166 : Hollywood       : FAIL = GetVar("codeset_default",0x5EAFEF58,256,0x00000100) [120uS]
00167 : ENV/env-handler 52.2  : FAIL = Lock("ENVARC:codeset_default",SHARED) [20uS]
00168 : Hollywood       : FAIL = GetVar("codeset_default",0x5EAFEF58,256,0x00000100) [119uS]
00169 : ENV/env-handler 52.2  : FAIL = Lock("ENVARC:codeset_default",SHARED) [19uS]
00170 : Hollywood       : FAIL = GetVar("codeset_default",0x5EAFEF58,256,0x00000100) [119uS]
00171 : ENV/env-handler 52.2  : FAIL = Lock("ENVARC:codeset_default",SHARED) [19uS]
00172 : Hollywood       : FAIL = GetVar("codeset_default",0x5EAFEF58,256,0x00000100) [118uS]
00173 : ENV/env-handler 52.2  : FAIL = Lock("ENVARC:codeset_default",SHARED) [20uS]
00174 : Hollywood       : FAIL = GetVar("codeset_default",0x5EAFEF58,256,0x00000100) [1635uS]
00175 : ENV/env-handler 52.2  : FAIL = Lock("ENVARC:APPLIB_DEBUG",SHARED) [55uS]

Regards!

George