Is User control possible in java
i have to make user control in java like user control in .net.. In my application i have to make an indepedent user control. Any one know the concept user control in java.. i have to make user control in desktop and web. This user control will be used in another application so i want standalone control. please help me
Re: Is User control possible in java
Do you mean custom UI control? If yes, you can view this link
Re: Is User control possible in java
Quote:
Originally Posted by
kuruvi
i have to make user control in java like user control in .net.. In my application i have to make an indepedent user control. Any one know the concept user control in java.. i have to make user control in desktop and web. This user control will be used in another application so i want standalone control. please help me
If you write a user control using Swing (as has been suggested) you can use it in any Java application with a Swing based GUI. Your user control will work as an extension of Swing.
As long as you stick with the Java standard library, like Swing, your user control will be as stand alone as can be. Any piece of code written in Java making use of the standard libraries only enjoys full Java portability and thus the maximum level of "standalone-ness".
Re: Is User control possible in java
I have to create user control for particular use. user control means grouped one or more existing control and make it as one control. For this control we can define function. This control could be use in anoter application.we can also use function of each control. help me please