Search Result

Collapse
3 results in 0.0040 seconds.
Keywords
Members
Tags
applet
  •  

  • Ivan Garcia
    started a topic how can I stop my applet freezing?
    in Java

    how can I stop my applet freezing?

    hi I'm completely new in Java's world, I made an applet that download a video file from the server, but here is the thing, when the recording process gets started my applet just freeze (doesn't accept any kind of event, like click button, enable or disable components) and when it finish then the applet come back to a normal state.


    here is the code :

    Code:
    public void startRecordingProcess(String file){
    ...
    See more | Go to post

  • szchaudhari
    started a topic Modal Window not displayed over Applet

    Modal Window not displayed over Applet

    I have requrement to show the progress bar until all the data should load and bind with all applets(two applets). Till user can not interact with application. I am trying it with modal window but applet remain active and modal windows goes behind the applet. In my application ther is dropdown menu that also I want to disabled until all the data load and bind with applet. I get all the data by ajax request.

    Please help me.
    ...
    See more | Go to post

  • mrjohn
    started a topic Why does my Java applet not work?
    in Java

    Why does my Java applet not work?

    I've been experimenting with this Java applet and Firefox, but after I recompile the code and refresh/reopen the page, the changes are not reflected in the browser. Why's that?

    [code="java]
    import java.applet.*;
    import java.awt.*;

    public class Program extends Applet
    {
    public void paint (Graphics g)
    {
    g.drawString("H ello World!", 125, 225);
    //g.drawString("G ood...
    See more | Go to post
Working...