CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com
Results 1 to 4 of 4
  1. #1
    Join Date
    Sep 2008
    Posts
    30

    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

  2. #2
    Join Date
    Jan 2008
    Location
    India
    Posts
    408

    Re: Is User control possible in java

    Do you mean custom UI control? If yes, you can view this link
    Rate the posts which you find useful

  3. #3
    Join Date
    Nov 2003
    Posts
    1,405

    Re: Is User control possible in java

    Quote Originally Posted by kuruvi View Post
    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".
    Last edited by _uj; February 20th, 2009 at 03:34 AM.

  4. #4
    Join Date
    Sep 2008
    Posts
    30

    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

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  





Click Here to Expand Forum to Full Width

Featured