Peter, I've had to recompile jvdr and had to modify it, here are the diff just in case it's of interest for you. Im running MacOSX $ java -version java version "1.4.2_09" Java(TM) 2 Runtime Environment, Standard Edition (build 1.4.2_09-232) Java HotSpot(TM) Client VM (build 1.4.2-54, mixed mode) --- JVdr.java.original 2006-02-04 21:35:49.000000000 +0100 +++ JVdr.java 2006-02-04 21:38:57.000000000 +0100 @@ -515,10 +515,10 @@ createMenu(); mainPanel = new JVdrMainPanel(); - add(mainPanel); + this.setContentPane(mainPanel); // calculate window size - setPreferredSize( new Dimension(800,600)); + mainPanel.setPreferredSize( new Dimension(800,600)); pack(); setConnected(false); --- dialogs/JVdrDialog.java.original 2006-02-04 21:37:00.000000000 +0100 +++ dialogs/JVdrDialog.java 2006-02-04 21:37:35.000000000 +0100 @@ -30,7 +30,7 @@ // Close window whe pressing X setDefaultCloseOperation( JDialog.DISPOSE_ON_CLOSE ); - add(dialogPanel); + setContentPane(dialogPanel); setTitle( dialogPanel.getTitle() ); setModal(true); El 04/02/2006, a las 17:54, Peter Juszack escribi?: > Hallo, > > allthough it seems that JVdr will not work with softdevice at > least one person out there got it working. > > Andre Weidemann sent some improvements so here is a new version. > > tar.gz: http://194.95.44.38/~pjuszack/digicam/download/ > jvdr-0.0.2.tar.gz > zip: http://194.95.44.38/~pjuszack/digicam/download/jvdr-0.0.2.zip > > Regards Peter > > http://194.95.44.38/~pjuszack/digicam > > > > _______________________________________________ > vdr mailing list > vdr@xxxxxxxxxxx > http://www.linuxtv.org/cgi-bin/mailman/listinfo/vdr