On Tue, Oct 4, 2011 at 4:00 PM, Sahananda (Jon) Wolfers <
[email protected]> wrote:
>
>
> Usetools is great - and I love the icons! I have a bit of catching
> up/reading to do, the application class for instance.
>
Unfortunately, some stuff is not yet documented well. The application class
is for setting application wide defaults. So far it only has a very few
uses.
>
> I am interested in context menus, please send me your test script.
>
>
Sure.
>
>
> I knew I could be useful. I have found a bug in the ooDialog beta.
> dialogControl~CursorPos traps this:
>
> 2162 *-* forward message "getCursorPos" continue
> 1167 *-* parse value self~CursorPos with mouseX MouseY .
> Error 98 running c:\ooRexx\fileMove2.rex line 301: Execution error
> Error 98.900: The base class has not been initialized correctly
>
In this case it is not really a bug. You invoke a method on the base class
befor you have initialized the base class. That's not correct in any object
orientated language, I don't think. You have roughly this:
::method init
parse value self~CursorPos with mouseX MouseY .
.... -- more code
self~init:Super
It needs to be:
::method init
self~init:Super
parse value self~CursorPos with mouseX MouseY .
.... -- more code
> Do you want the beta errors reported through sourceforge?
>
>
Yes, please do. Also, I've been trying to get people to discuss how to use
ooDialog on the ooRexx users mailing list. I try to answer anything related
to ooDialog asked on that list, promptly.
--
Mark Miesfeld
>
>
> On 4 October 2011 14:54, Mark Miesfeld <[email protected]> wrote:
>
>> On Tue, Oct 4, 2011 at 6:32 AM, Sahananda (Jon) Wolfers <
>> [email protected]> wrote:
>>
>>>
>>> just a short note to say I'm still here.
>>>
>>> ...
>>>
>>
>>
>>> I was however prompted to write this note by passing a milestone. After
>>> 27 months of on and off preparation I have managed to move all 20 of our
>>> remote sites onto version 4.1.0 of ooRexx, and my developer site too.
>>>
>>
>>
>>
>> That's good to hear.
>>
>>
>>
>>
>>
>>
>>> Mark, I have downloaded switchooDialog. If there is anything you want me
>>> to take a look at, please let me know.
>>>
>>>
>>
>>
>>
>> Well, since you mention it, there is an example of a tool palette window
>> that I wrote when you asked a question about it some months ago. It is in
>> oodialog\examples\useTools.rex It needs ooDialog 4.2.0, it can't be done in
>> 4.1.0.
>>
>> You might want to check out dlgAreaUDemoThree.rex which demonstrates a
>> slightly different approach to the resizing of the dialog and also shows how
>> to enforce a minimum size to the dialog. I.e., the user can not size the
>> dialog so small that it is useless. The same technique could be used to
>> enforce a maximum size of the dialog.
>>
>> There are a couple of other things that were inspired directly by you.
>> True month calendar controls, true date and time picker controls, and
>> context menus.
>>
>> oodialog\controls\PaidHolidays.rex
>> oodialog\simple\SimpleMonthCalendar.rex
>>
>> I haven't included a context menu example in the distribution yet, but if
>> you are interested I could send you one of my testing programs.
>>
>> --
>> Mark Miesfeld
>>
>>
>>
>>
>>> RexxTill is quiescent for now. I hope that when the time comes I can
>>> pick it up again.
>>>
>>> thanks,
>>>
>>> Jon
>>>
>>>
>>> ------------------------------------------------------------------------------
>>> All the data continuously generated in your IT infrastructure contains a
>>> definitive record of customers, application performance, security
>>> threats, fraudulent activity and more. Splunk takes this data and makes
>>> sense of it. Business sense. IT sense. Common sense.
>>> http://p.sf.net/sfu/splunk-d2dcopy1
>>> _______________________________________________
>>> Oorexx-devel mailing list
>>> [email protected]
>>> https://lists.sourceforge.net/lists/listinfo/oorexx-devel
>>>
>>>
>>
>>
>> ------------------------------------------------------------------------------
>> All the data continuously generated in your IT infrastructure contains a
>> definitive record of customers, application performance, security
>> threats, fraudulent activity and more. Splunk takes this data and makes
>> sense of it. Business sense. IT sense. Common sense.
>> http://p.sf.net/sfu/splunk-d2dcopy1
>> _______________________________________________
>> Oorexx-devel mailing list
>> [email protected]
>> https://lists.sourceforge.net/lists/listinfo/oorexx-devel
>>
>>
>
>
> ------------------------------------------------------------------------------
> All the data continuously generated in your IT infrastructure contains a
> definitive record of customers, application performance, security
> threats, fraudulent activity and more. Splunk takes this data and makes
> sense of it. Business sense. IT sense. Common sense.
> http://p.sf.net/sfu/splunk-d2dcopy1
> _______________________________________________
> Oorexx-devel mailing list
> [email protected]
> https://lists.sourceforge.net/lists/listinfo/oorexx-devel
>
>
------------------------------------------------------------------------------
All the data continuously generated in your IT infrastructure contains a
definitive record of customers, application performance, security
threats, fraudulent activity and more. Splunk takes this data and makes
sense of it. Business sense. IT sense. Common sense.
http://p.sf.net/sfu/splunk-d2dcopy1
_______________________________________________
Oorexx-devel mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/oorexx-devel