Hello Zablon, thanks for the HelpMenu.. I had to modify it a little =20
in order to have a MenuItem to be used directly in internet-cafe...
In attachment u have such version.
=EF=BF=BC
I had to modify something like the getHelpSet method because i got =20
many times a null URL.
Well now it works without problems.
Anyway can you find a way to center on the screen the help window ? =20
You can use something like this method:
/**
* This method is helpfull to center on the screen a Component =
like =20
a JFrame or a JDialog.
* @param component The component to be centered on the screen.
*/
public static void centerComponent(Component component){
Dimension screenSize =3D =
Toolkit.getDefaultToolkit().getScreenSize();
Dimension frameSize =3D component.getSize();
if (frameSize.height > screenSize.height) {
frameSize.height =3D screenSize.height;
}
if (frameSize.width > screenSize.width) {
frameSize.width =3D screenSize.width;
}
component.setLocation((screenSize.width - =
frameSize.width) / 2,
(screenSize.height - frameSize.height) / =
2);
}
but now I have no time to check how to do it.. I'm working a lot on =20
JDBS because of the partnership we got with the MyJXTA project.
I hope to receive your notices soon. Cheers, Guido.
On May 10, 2006, at 8:17 AM, Zablon Ochomo wrote:
> Hello Guido,
> I have done just the layout of what the help files will be.
> I paused working when the communication subsided.
> I will now proceed. Have a look at the JavaHelps and give your =20
> comment.
> You can run them independently using the HelpMenu.java in the main =20
> folder.
> Remember to set the CLASSPATH to the jhall.jar also in the main =20
> folder.
>
> Thanks n Cheeers!
>
> On 5/9/06, Guido Angelo Ingenito <jun...@gm...> wrote:
>> No problem. See you tomorrow than :D
>> Cheers, Guido.
>>
>> On May 9, 2006, at 2:44 PM, Zablon Ochomo wrote:
>>
>> > Hi,
>> > I'l send the files very early tommorow.
>> > I was out of office. Sorry.
>> > Cheeerrrs!
>> >
>> > On 5/8/06, Guido Angelo Ingenito < jun...@gm...> wrote:
>> > 4 Lokesh: have you done something that works for the vCard support?
>> > Try to finish asap and send it to me, I will commit a new =20
>> version on
>> > the CVS.
>> >
>> > 4 Ochomo: can you send me the code for the JHelp your wrote.. I =20
>> need
>> > it asap please.
>> >
>> > Thanks guys,
>> > Guido
>> >
>> >
>> >
>> > -------------------------------------------------------
>> > Using Tomcat but need to do more? Need to support web services,
>> > security?
>> > Get stuff done quickly with pre-integrated technology to make your
>> > job easier
>> > Download IBM WebSphere Application Server v.1.0.1 based on Apache
>> > Geronimo
>> > http://sel.as-us.falkag.net/sel?
>> > cmd=3Dlnk&kid=3D120709&bid=3D263057&dat=3D121642
>> > _______________________________________________
>> > Internet-cafe-developer mailing list
>> > Int...@li...
>> > https://lists.sourceforge.net/lists/listinfo/internet-cafe-=20
>> developer
>> >
>> >
>> >
>> > --
>> > Ochomo, Zablon Onyango
>> > mobile 254723343162
>>
>>
>>
>
>
> --
> Ochomo, Zablon Onyango
> mobile 254723343162
|