Jump to content

Tim_Tayler

Member
  • Posts

    9
  • Joined

  • Last visited

  • Donations

    0.00 USD 
  • Country

    Kuwait

Everything posted by Tim_Tayler

  1. Okay here we go... Boot your pc with your xp-cd und start the recovery console. Now type: fixboot c: next type: COPY x:\I386\NTLDR C:\ COPY x:\I386\NTDETECT.COM C:\x: is your dvd/ cd-rom drive with the xp-cd. At last type: bootcfg /rebuildNow it searches your installationfolder as in your case it should find e:\ and restores the boot.ini. For more informations look at KB 291980. Thats it i think... have fun...
  2. Hello, try in the [unattended] section UnattendSwitch=Yes or Win9xUpgrade=No but it is by default "No" so i think it's the missing UnattendSwitch entry. cu
  3. Hello, thats easy. Press the right mouse button on the marked programlink or exe file and choose properties. There you go... regards Sorry my english is the worse...
  4. Hello K E N, the first thing which comes to my mind: WINNT.SIF [Unattended] DriverSigningPolicy=Ignore hope that will help you. regards
  5. Moin Moin, i hope i'm not too late. Look at this... public class PetePanel extends JPanel implements Runnable { MediaTracker tracker; Image[] petePics = new Image[6]; Image back; public PetePanel() { setBackground(Color.black); String[] peteScr = {"right1.gif", "right2.gif", "right3.gif", "stop.gif" , "blink.gif", "wave.gif"}; Toolkit kit = Toolkit.getDefaultToolkit(); tracker = new MediaTracker(this); for (int i = 0; i < petePics.length; i++) { petePics[i] = kit.getImage(peteScr[i]); tracker.addImage(petePics[i], i+1); } back = kit.getImage("backdrop.gif"); tracker.addImage(back, 0); } public void paintComponent(Graphics comp) { Graphics2D comp2D = (Graphics2D) comp; if(back != null) comp2D.drawImage(back, 0, 0, this); comp2D.setColor(Color.black); comp2D.fillRect(0, 30, 450, 30); if(petePics[current] != null) comp2D.drawImage(petePics[current], x, y, this); } . . . } in the main or run function call at first try { tracker.waitForAll(); } catch (InterruptedException ign) {} Thats it. cu
×
×
  • Create New...