G'day, I've installed the NrxRedBk.zip package as per the instructions, built the \NrxRedBk\Redbook & gui\SimpleGridBagLayout classes successfully, & updated ...
Peter Sharp
psharp@...
Mar 8, 2005 6:39 am
1452
I remembered an earlier comment re- NoClassDefFoundError for which the solution was to copy tools.jar into the jre\lib\ext directory due to a change in...
Peter Sharp
psharp@...
Mar 8, 2005 12:08 pm
1453
Is being unable to use '\u005C' (a unicode backslash character) in a Rexx object a problem with netrexx or javac? Send instant messages to your online friends...
Nigel Galloway
nigel_galloway@...
Mar 21, 2005 5:45 pm
1454
on my system, it is javac: class test { public static void main(String[] args) { System.out.println("\u005C"); } } gives: test.java:5: unclosed string literal ...
René Jansen
rvjansen@...
Mar 21, 2005 6:26 pm
1455
Can anyone point me to a commercial product that uses NetRexx? I have been using NetRexx with much pleasure and am almost ready to launch one of my babies, but...
Michael Dag
michael.dag@...
Mar 25, 2005 5:41 pm
1456
We have a rather pressing problem with System here. Now we generate a class named System in one of our packages, calls like exit '12' and, much worse, trace...
rvjansen@...
Apr 4, 2005 11:33 am
1457
The idea was to allow people to provide their own System, indeed. Trace uses System.err, and exit uses System.exit. Can you perhaps provide those, or get...
Mike Cowlishaw
MFC@...
Apr 4, 2005 11:44 am
1458
I have a workaround that works by adding a public static err field, initialized with java.lang.System.err, and an exit method. I still would rather have the...
rvjansen@...
Apr 4, 2005 12:23 pm
1459
can somenoe inform what is wrong with the flwg code, the compiler complains about the setConstaints method. can anyone help? ...
britten@...
May 13, 2005 12:14 pm
1460
... the compiler indicates that it is looking for a method which looks like: setConstraints(...awt, ...GridBagConstraints) and there is no such method. Hence...
Mike Cowlishaw
MFC@...
May 13, 2005 12:53 pm
1461
Fri, May 13, 2005 at 02:16:37PM +0200 in <A780EDA1FF515F47BD1A49856360F908018BEC7C@...>, ... setConstraints is a method on GridBagLayout,...
Mark 'Kamikaze' Hughes
kamikaze@...
May 14, 2005 3:05 pm
1462
I am having trouble setting up a JTable under Netrexx, the Java code is as follows: .. .. TableModel dataModel = new AbstractTableModel() { public int...
britten@...
May 31, 2005 9:18 am
1463
Hi Quique, method getValueAt(row = int, col = int) returns java.lang.Object return this.tableStorage[row,col] method getRowCount() returns int return rows ...
rvjansen@...
May 31, 2005 10:28 am
1464
thanks all for the the quick response, I will test tonight the replies received. Is there any modern articles/books about Netrexx, i have the IBM Redbook and ...
britten@...
May 31, 2005 10:35 am
1465
Hi all, My program creates a JToolbar with several icons which I wish to change icons when Jbuttons are pressed and have focus using the RolloverIcon methods. ...
britten@...
Jun 8, 2005 2:34 pm
1466
has anyone used NetRexx in any IDE, such as Eclipse ? NOTICE: This communication may contain confidential, proprietary or legally privileged information. It...
Mark Horowitz
mark.horowitz@...
Jun 20, 2005 3:44 pm
1467
I am trying to change the tooltip colour in my app to yellow by extending the JToolTip class, the code is as follows.: b = JButton( "test" ) /* public JToolTip...
britten@...
Jul 20, 2005 2:56 pm
1468
Tracy Dean, who some of you may have met at this year's Rexx Symposium has kindly edited the NetRexx site to bring it up-to-date and to match the rest of the...
Mike Cowlishaw
MFC@...
Aug 17, 2005 7:35 am
1469
I am currently writing a gui program which has the following classes. class 1 which contructs the GUI (menubar, jtoolbar, Jlabels etc..) using several methods....
britten@...
Aug 17, 2005 9:30 am
1470
the class OptionSelected does not know about your JLabel. It is probably easiest to have a global reference to it, but better to use the event mechanism. ...
rvjansen@...
Aug 17, 2005 11:01 am
1471
... No, it cannot see it in another class. In these cases, I tend to have the event handler in a dependent class and make the property inheritable, so you can...
rvjansen@...
Aug 17, 2005 11:48 am
1472
thanks, I try this out. Quique ... De: owner-ibm-netrexx@... [mailto:owner-ibm-netrexx@...]En nombre de rvjansen@... Enviado el:...
britten@...
Aug 17, 2005 12:00 pm
1473
... Hash: SHA1 Hi Michael, very nice to see any changes to the public presentation of NetRexx. Do you have any schedule when you've some more time to fix some...
Patric Bechtel
bechtel@...
Aug 17, 2005 2:56 pm
1474
... Call me blind, but - where is the download? -- Windows VISTA - Viruses, Infestations, Spyware, Trojans, Adware ...
Steve Wendt
stevew@...
Aug 18, 2005 3:22 am
1475
... Ah, the advantages of 'standard layouts'. :-( I really dislike navigation on the right, as I often use my browser in portrait format. The downloads are...
Mike Cowlishaw
MFC@...
Aug 18, 2005 6:56 am
1476
... Yikes, that's awful! Even with your description, I missed it at first. Publications and Resources are obvious, but the most important stuff is hidden! I...
Steve Wendt
stevew@...
Aug 19, 2005 4:53 am
1477
... Good suggestion .. I'll pass it on. mfc ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ To unsubscribe from this mailing list...
Mike Cowlishaw
MFC@...
Aug 19, 2005 7:21 am
1478
.. .. class aBC.ZipList dependent method ziplist( z = Rexx ) do zf = ZipFile( z ) enum = zf.entries() catch IOException say "Error - " loop while...
britten@...
Aug 31, 2005 12:09 pm
1479
... Your method could throw an IOException, and to resolve the forward reference the compiler is asking you to add 'signals IOException' to the method...
Mike Cowlishaw
MFC@...
Aug 31, 2005 12:27 pm
1480
How can I declare in a class a variable of type boolean with a default value. I have the following and according to the doc's I have read this should contain a...