How to add Starting Window, image in program

I want to display a picture for a while as starting window of the program. Can any one help me to do so.

Here, try this;-
import java.awt.*;
import java.awt.event.*;
import javax.swing.*;
public class The_Start extends JWindow {
ImageIcon img = new ImageIcon("new.jpg");;
       public The_Start() {
          super();
          setBounds(300, 250, 100, 75);
        addMouseListener(new MouseAdapter(){
           public void mousePressed(MouseEvent e) {
              setVisible(false);
              dispose();
        setVisible(true);
    public void paint(Graphics g) {
       g.fillOval   (2, 2, 96, 71);
       g.setColor   (Color.cyan);
       g.drawString ("... loading :-", 15, 25);
       g.drawImage(img.getImage(), 30, 30, this);
   public static void main(String []args) {
      new The_Start();
}

Similar Messages

  • How can I start windows 8 without useing my password

    how can I start windows 8 without useing my password

    Hi,
    Review the information posted in this thread.
    HP DV9700, t9300, Nvidia 8600, 4GB, Crucial C300 128GB SSD
    HP Photosmart Premium C309G, HP Photosmart 6520
    HP Touchpad, HP Chromebook 11
    Custom i7-4770k,Z-87, 8GB, Vertex 3 SSD, Samsung EVO SSD, Corsair HX650,GTX 760
    Custom i7-4790k,Z-97, 16GB, Vertex 3 SSD, Plextor M.2 SSD, Samsung EVO SSD, Corsair HX650, GTX 660TI
    Windows 7/8 UEFI/Legacy mode, MBR/GPT

  • How to add authorisation check to a program?

    Hi all :
          Could you please tell me how to add authorisation check to a program?  
          Thanks a lot.

    Hi,
    Check SAP help for authority-check. You can search on SDN on that.
    AUTHORITY-CHECK
    Basic form
    AUTHORITY-CHECK OBJECT object
    ID name1 FIELD f1
    ID name2 FIELD f2
    ID name10 FIELD f10.
    Thanks
    Nidhi

  • How to add tooltip to images?

    How to add tooltips to images?

    OK, here is a more robust, more generic (any node) implementation.
    It would be nice if I could find a way to automatically insert the tooltips in the scene, but at time of node with tooltip creation, scene doesn't exist yet... Should have a post-layout event, perhaps. Or I can do that once on the onMouseEntered event, but then I have to find a way to get the scene holding a given node. Tried to iterate on Parents, but I can't cast a Parent to a Scene?
    Anyway, here is the new code:
    Tooltip.fx
    public class Tooltip extends CustomNode
      public var text: String;
      public var fill: Paint = Color.web('#EEFF00');
      public var stroke: Paint = Color.GREEN;
      var label: Label; // Make public to access textOverrun, textWrap, etc.?
      var back: Rectangle;
      override function create(): Node
        label = Label
          text: text
        back = Rectangle
          x: -2, y: -1
          width:  label.width + 4
          height: label.height + 2
          fill:   fill
          stroke: stroke
        Group
          content: [ back, label ]
      init
        visible = false;
        layoutInfo.managed = false;
    WithTooltip.fx
    public mixin class WithTooltip
      /** The tooltip to display. */
      public var tooltip: Tooltip;
      // We display the tooltip after a while being over the node
      var tooltipTL = Timeline
        keyFrames: KeyFrame
          time: 750ms
          action: function ()
    //~         println("visible {%.0f tooltip.boundsInParent.minX} {%.0f tooltip.boundsInParent.minY}");
            tooltip.visible = true;
      var baseMouseMoved;
      var baseMouseEntered;
      var baseMouseExited;
      postinit
        var tooltipNode = this as Node;
        baseMouseMoved = tooltipNode.onMouseMoved;
        tooltipNode.onMouseMoved = function (evt: MouseEvent): Void
          if (not tooltip.visible)
            tooltip.translateX = evt.sceneX;
            tooltip.translateY = evt.sceneY - 20;
          baseMouseMoved(evt);
        baseMouseEntered = tooltipNode.onMouseEntered;
        tooltipNode.onMouseEntered = function (evt: MouseEvent): Void
    //~       println("onMouseEntered: {%.0f evt.sceneX} {%.0f evt.sceneY}");
          tooltipTL.playFromStart();
          baseMouseEntered(evt);
        baseMouseExited = tooltipNode.onMouseExited;
        tooltipNode.onMouseExited = function (evt: MouseEvent): Void
    //~       println("onMouseExited");
          tooltipTL.stop();
          tooltip.visible = false;
          baseMouseExited(evt);
    SomeStage.fx
    class ImageWithTooltip extends ImageView, WithTooltip
    var earthTT = Tooltip { text: "Mother Earth" }
    var earth = ImageWithTooltip
         image: Image { url: "{__DIR__}earth.png" }
         tooltip: earthTT;
    var mapTT = Tooltip { text: "General map of France" }
    var map = ImageWithTooltip
         image: Image { url: "{__DIR__}map.jpg", width: 200, preserveRatio: true }
         tooltip: mapTT;
    // Put the ImageWithTooltip nodes in layout if needed, put the Tooltip nodes at the end of the scene (on top, out of any layout).

  • How to add requaired library to your programe

    I have a problem with a program Im developing. This program connects to all databases that has a JDBC Driver then you can browse tables and its contents and shows relation between tables and procedures.....etc
    The problem is:
    When a user wants to connect to a database he will need to setup a required library ( JDBC Driver JAR file location and the Driver Class ), then the program updates the classpath to include the new path and adds the Driver Class to the Driver Class list.
    When using the following:
    Class.forName (CurrentDriver); where CurrentDriver is one of the Driver class listed in the program the following exception thrown. "ClassNotFoundException".
    But, when using the following:
    URL[] pathes = new URL[count];
    Pathes[0] = new URL("file", null, "D:/hdkjashdk.jar");
    Pathes[1] = new URL("file", null, "A:/gdhsga/hdg/sadj.jar");
    Pathes[2] = new URL("file", null, "C:/hksffs/fhsj.jar");.
    URLClassLoader loader= new URLClassLoader(pathes);
    Class.forName(currentDriver,true,loader);No "ClassNotFoundException" was thrown.
    And after that, when using
    DriverManager.getConnection (url, user, password); An SQLException : No Suitable Driver thrown.
    Why, and how can I fix this problem.

    opps. the prevous code is the old one sorry, here is the new one.
    package betasniper;
    import java.io.*;
    import java.util.*;
    import java.awt.*;
    import java.net.*;
    /* When you want to use one or all of this methods you have to setup the "theParentFrame"
    or "theParentDialog" so the class know how is the parent window to throw the exception dialog*/
    public class PickupDriversAndSettingClasspath
      public static Properties allDriver;
      public static Vector allPathes;
      public static Frame theParentFrame;
      public static Dialog theParentDialog;
    // Method to set up all Valide Drivers.
      public static void settingDriver()
        allDriver= new Properties();
        String record= "";
        try
          RandomAccessFile random = new RandomAccessFile("jdc.srs", "r");
          while(random.getFilePointer() < random.length() )
            record= random.readUTF();
            if( record.startsWith("#") )
              String[] kv= stringTokenDriver(record);
              allDriver.setProperty(kv[0],kv[1]);
        catch( FileNotFoundException fnfe )
          if( theParentFrame != null )
            theParentFrame.setEnabled(false);
            ErrorWindow ew = new ErrorWindow(theParentFrame, "", false);
            ew.erroMessage(
               "PickUpAndSetting-100 Error, File were JDBC Drivers are stored could not be found.");
            ew.stackTrace(fnfe.toString());
            fnfe.printStackTrace(new PrintStream(ew.theOutput));
            Dimension parentDimension = theParentFrame.getSize();
            Dimension dialogDimension = ew.getSize();
            int x = (int) ( ( (parentDimension.getWidth()) / 2) -
                            ( (dialogDimension.getWidth()) / 2));
            int y = (int) ( ( (parentDimension.getHeight()) / 2) -
                            ( (dialogDimension.getHeight()) / 2));
            ew.setLocation(x, y);
            theParentFrame=null;
            ew.pack();
            ew.show();
          if( theParentDialog != null )
            theParentDialog.setEnabled(false);
            ErrorWindow ew = new ErrorWindow(theParentDialog, "", false);
            ew.erroMessage(
                "PickUpAndSetting-100 Error, File were JDBC Drivers are stored could not be found.");
            ew.stackTrace(fnfe.toString());
            fnfe.printStackTrace(new PrintStream(ew.theOutput));
            Dimension parentDimension = theParentDialog.getSize();
            Dimension dialogDimension = ew.getSize();
            int x = (int) ( ( (parentDimension.getWidth()) / 2) -
                            ( (dialogDimension.getWidth()) / 2));
            int y = (int) ( ( (parentDimension.getHeight()) / 2) -
                            ( (dialogDimension.getHeight()) / 2));
            ew.setLocation(x, y);
            theParentDialog=null;
            ew.pack();
            ew.show();
        catch( IOException ioe )
          if( theParentFrame != null )
            theParentFrame.setEnabled(false);
            ErrorWindow ew = new ErrorWindow(theParentFrame, "", false);
            ew.erroMessage(
               "PickUpAndSetting-101 Error, I/O Error please try again.");
            ew.stackTrace(ioe.toString());
            ioe.printStackTrace(new PrintStream(ew.theOutput));
            Dimension parentDimension = theParentFrame.getSize();
            Dimension dialogDimension = ew.getSize();
            int x = (int) ( ( (parentDimension.getWidth()) / 2) -
                            ( (dialogDimension.getWidth()) / 2));
            int y = (int) ( ( (parentDimension.getHeight()) / 2) -
                            ( (dialogDimension.getHeight()) / 2));
            ew.setLocation(x, y);
            theParentFrame=null;
            ew.pack();
            ew.show();
          if( theParentDialog != null )
            theParentDialog.setEnabled(false);
            ErrorWindow ew = new ErrorWindow(theParentDialog, "", false);
            ew.erroMessage(
                "PickUpAndSetting-101 Error, I/O Error please try again.");
            ew.stackTrace(ioe.toString());
            ioe.printStackTrace(new PrintStream(ew.theOutput));
            Dimension parentDimension = theParentDialog.getSize();
            Dimension dialogDimension = ew.getSize();
            int x = (int) ( ( (parentDimension.getWidth()) / 2) -
                            ( (dialogDimension.getWidth()) / 2));
            int y = (int) ( ( (parentDimension.getHeight()) / 2) -
                            ( (dialogDimension.getHeight()) / 2));
            ew.setLocation(x, y);
            theParentDialog=null;
            ew.pack();
            ew.show();
    // Method to set up ClassPath.
      public static void settingClasspath()
        allPathes= new Vector();
        String record= "";
        try
          RandomAccessFile random = new RandomAccessFile("jdc.srs", "r");
          while(random.getFilePointer() < random.length() )
            record= random.readUTF();
            if( record.startsWith("#") )
              if( !allPathes.contains(stringTokenPath(record)) )
                allPathes.addElement(stringTokenPath(record));
          StringBuffer sb= new StringBuffer(System.getProperty("java.class.path"));
          int num= allPathes.size();
          for( int i=0; i < num; i++ )
            sb.append(";");
            sb.append((String)allPathes.elementAt(i));
          System.setProperty("java.class.path", new String(sb));
        catch( FileNotFoundException fnfe )
          if( theParentFrame != null )
            theParentFrame.setEnabled(false);
            ErrorWindow ew = new ErrorWindow(theParentFrame, "", false);
            ew.erroMessage(
               "PickUpAndSetting-200 Error, File were JDBC Drivers are stored could not be found.");
            ew.stackTrace(fnfe.toString());
            fnfe.printStackTrace(new PrintStream(ew.theOutput));
            Dimension parentDimension = theParentFrame.getSize();
            Dimension dialogDimension = ew.getSize();
            int x = (int) ( ( (parentDimension.getWidth()) / 2) -
                            ( (dialogDimension.getWidth()) / 2));
            int y = (int) ( ( (parentDimension.getHeight()) / 2) -
                            ( (dialogDimension.getHeight()) / 2));
            ew.setLocation(x, y);
            theParentFrame=null;
            ew.pack();
            ew.show();
          if( theParentDialog != null )
            theParentDialog.setEnabled(false);
            ErrorWindow ew = new ErrorWindow(theParentDialog, "", false);
            ew.erroMessage(
                "PickUpAndSetting-200 Error, File were JDBC Drivers are stored could not be found.");
            ew.stackTrace(fnfe.toString());
            fnfe.printStackTrace(new PrintStream(ew.theOutput));
            Dimension parentDimension = theParentDialog.getSize();
            Dimension dialogDimension = ew.getSize();
            int x = (int) ( ( (parentDimension.getWidth()) / 2) -
                            ( (dialogDimension.getWidth()) / 2));
            int y = (int) ( ( (parentDimension.getHeight()) / 2) -
                            ( (dialogDimension.getHeight()) / 2));
            ew.setLocation(x, y);
            theParentDialog=null;
            ew.pack();
            ew.show();
        catch( IOException ioe )
          if( theParentFrame != null )
            theParentFrame.setEnabled(false);
            ErrorWindow ew = new ErrorWindow(theParentFrame, "", false);
            ew.erroMessage(
               "PickUpAndSetting-201 Error, I/O Error please try again.");
            ew.stackTrace(ioe.toString());
            ioe.printStackTrace(new PrintStream(ew.theOutput));
            Dimension parentDimension = theParentFrame.getSize();
            Dimension dialogDimension = ew.getSize();
            int x = (int) ( ( (parentDimension.getWidth()) / 2) -
                            ( (dialogDimension.getWidth()) / 2));
            int y = (int) ( ( (parentDimension.getHeight()) / 2) -
                            ( (dialogDimension.getHeight()) / 2));
            ew.setLocation(x, y);
            theParentFrame=null;
            ew.pack();
            ew.show();
          if( theParentDialog != null )
            theParentDialog.setEnabled(false);
            ErrorWindow ew = new ErrorWindow(theParentDialog, "", false);
            ew.erroMessage(
                "PickUpAndSetting-201 Error, I/O Error please try again.");
            ew.stackTrace(ioe.toString());
            ioe.printStackTrace(new PrintStream(ew.theOutput));
            Dimension parentDimension = theParentDialog.getSize();
            Dimension dialogDimension = ew.getSize();
            int x = (int) ( ( (parentDimension.getWidth()) / 2) -
                            ( (dialogDimension.getWidth()) / 2));
            int y = (int) ( ( (parentDimension.getHeight()) / 2) -
                            ( (dialogDimension.getHeight()) / 2));
            ew.setLocation(x, y);
            theParentDialog=null;
            ew.pack();
            ew.show();
    // Method to load and register all driver..
      public static void loadAndRegister()
        settingClasspath();
        settingDriver();
        int count= allPathes.size();
        URL[] pathes= new URL[count];
        for( int i=0; i < count; i++ )
          String currentPath=(String)allPathes.elementAt(i);
          currentPath.replace('\\','/');
          try
            pathes[i] = new URL("file:///" + currentPath);
          catch(MalformedURLException mue)
            if( theParentFrame != null )
              theParentFrame.setEnabled(false);
              ErrorWindow ew = new ErrorWindow(theParentFrame, "", false);
              ew.erroMessage(
                "PickUpAndSetting-300 Error, Malformed URL Error.");
              ew.stackTrace(mue.toString());
              mue.printStackTrace(new PrintStream(ew.theOutput));
              Dimension parentDimension = theParentFrame.getSize();
              Dimension dialogDimension = ew.getSize();
              int x = (int) ( ( (parentDimension.getWidth()) / 2) -
                              ( (dialogDimension.getWidth()) / 2));
              int y = (int) ( ( (parentDimension.getHeight()) / 2) -
                              ( (dialogDimension.getHeight()) / 2));
              ew.setLocation(x, y);
              theParentFrame=null;
              ew.pack();
              ew.show();
            if( theParentDialog != null )
              theParentDialog.setEnabled(false);
              ErrorWindow ew = new ErrorWindow(theParentDialog, "", false);
              ew.erroMessage(
                 "PickUpAndSetting-300 Error, Malformed URL Error.");
              ew.stackTrace(mue.toString());
              mue.printStackTrace(new PrintStream(ew.theOutput));
              Dimension parentDimension = theParentDialog.getSize();
              Dimension dialogDimension = ew.getSize();
              int x = (int) ( ( (parentDimension.getWidth()) / 2) -
                              ( (dialogDimension.getWidth()) / 2));
              int y = (int) ( ( (parentDimension.getHeight()) / 2) -
                              ( (dialogDimension.getHeight()) / 2));
              ew.setLocation(x, y);
              theParentDialog=null;
              ew.pack();
              ew.show();
        URLClassLoader loader= new URLClassLoader(pathes);
        Enumeration enum= allDriver.propertyNames();
        while( enum.hasMoreElements() )
          String currentName= (String)enum.nextElement();
          String currentDriver= allDriver.getProperty(currentName);
          try
            Class.forName(currentDriver, true, loader);
          catch(ClassNotFoundException cnfe )
            if( theParentFrame != null )
              theParentFrame.setEnabled(false);
              ErrorWindow ew = new ErrorWindow(theParentFrame, "", false);
              ew.erroMessage(
               "PickUpAndSetting-301 Error, The Driver CLass could not be found.");
              ew.stackTrace(cnfe.toString());
              cnfe.printStackTrace(new PrintStream(ew.theOutput));
              Dimension parentDimension = theParentFrame.getSize();
              Dimension dialogDimension = ew.getSize();
              int x = (int) ( ( (parentDimension.getWidth()) / 2) -
                              ( (dialogDimension.getWidth()) / 2));
              int y = (int) ( ( (parentDimension.getHeight()) / 2) -
                              ( (dialogDimension.getHeight()) / 2));
              ew.setLocation(x, y);
              theParentFrame=null;
              ew.pack();
              ew.show();
            if( theParentDialog != null )
              theParentDialog.setEnabled(false);
              ErrorWindow ew = new ErrorWindow(theParentDialog, "", false);
              ew.erroMessage(
                "PickUpAndSetting-301 Error, The Driver CLass could not be found.");
              ew.stackTrace(cnfe.toString());
              cnfe.printStackTrace(new PrintStream(ew.theOutput));
              Dimension parentDimension = theParentDialog.getSize();
              Dimension dialogDimension = ew.getSize();
              int x = (int) ( ( (parentDimension.getWidth()) / 2) -
                              ( (dialogDimension.getWidth()) / 2));
              int y = (int) ( ( (parentDimension.getHeight()) / 2) -
                              ( (dialogDimension.getHeight()) / 2));
              ew.setLocation(x, y);
              theParentDialog=null;
              ew.pack();
              ew.show();
      public static String stringTokenPath(String record)
        String path= "";
        StringTokenizer token= new StringTokenizer(record,"|");
        int count =0;
        while( token.hasMoreTokens() )
          String s= token.nextToken();
          count += 1;
          if( count == 3 )
            path= s.substring(0, s.length()-2);
        return path;
      public static String[] stringTokenDriver(String record)
        String[] driver= new String[2];
        StringTokenizer token= new StringTokenizer(record, "|");
        int count= 0;
        while( token.hasMoreTokens() )
          count += 1;
          String s= token.nextToken();
          if( count == 1 )
            driver[0]= s.substring(1, s.length());
          if( count == 2 )
            driver[1]= s;
        return driver;
      /*void viewing()
        Enumeration enum= allDriver.propertyNames();
        while( enum.hasMoreElements() )
          String key= (String)enum.nextElement();
          String value= allDriver.getProperty(key);
          System.out.println(key+"------"+value);
    }

  • How to add audio to image sequence?

    I've imported a Photoshop image sequence into FCP X 10.1.1.  Dropped it on the timeline, created a compound clip.  So far I can't figure out how to add audio of any kind.  I've tried starting over, making sure properties had audio setting enabled.  No change though.  No matter what I try, no audio tab in the inspector.  What am I missing?
    Thanks,
    Michael

    Are you importing an audio file that is seperate? Otherwise it is attached to your video. in the timeline, choose expand audio & video. You can import almost any format. Import it into the same event that you are in - a song from your desktop or from your folder where you copied all your contents from your camera card or music from ITunes (in which case you use the audio tab on the far right of the timeline UNDER THE INSPECTOR).
    How did you import your media?:
    Help?

  • HOW TO ADD TEXT TO IMAGES

    how do you add text to images in Aperture?

    the user can superimpose text (inc. metadata) anywhere: on the image, in the border, over both.
    Learn something new every single day...
    Regards
    TD

  • I've installed windows in boot camp, how do i start windows

    I've Installed windows xp prof. with boot camp and now I'm not sure how to start windows.

    A successfully install should have booted directly to windows. If not restart and hold down the option key and select the windows partition to boot from that.
    Also make sure to insert your leopard disc to install all the drivers as well as the bootcamp utility to switch from one OS to the other.

  • How to add two different images on photoshop cs5?

    I was learning about the layers and masks and i seen that i have to have two images under each others under the layer option pannel, i tried many times to add images but it always shows in two different pannels as the folloing image I want to add two different images in this pannel to make any changes i want
    Thank you.
    image

    When you click on that icon Photoshop will add a revail all white layer mask and it will be the Photoshop target. Begin painting with black over the image part you wish to hide. Should you paint away something you want change to white paint and paint it back. Lower the brush opacity to fade in and out the image part.
    If you use ALT+Click on that icon a hide all black layer mask will be added as the current taget and hide all of the layer paint with whits to show.

  • How to add styles to image in XML view ?

    Is it possible to add styles to Images in XML view ?
    <Image alt="alternate text " src = " " />
    I tried adding sytle= "align : right " but its not working. I just want to align this element in the view to the right.

    Hi Micheal,
    Pleas see the below code.
    View:
    <core:View xmlns:core="sap.ui.core" xmlns:mvc="sap.ui.core.mvc" xmlns="sap.m"
      controllerName="testing.imageXml" xmlns:html="http://www.w3.org/1999/xhtml">
      <Page title="Image">
      <content>
      <Image id="img1" alt="alttextimage" src="images/img1.jpg" />
      </content>
      </Page>
    </core:View>
    Controller:
    onBeforeRendering: function() {
      this.getView().byId("img1").addStyleClass("myimage");
    Index.html :
    <!DOCTYPE HTML>
    <html>
      <head>
      <meta http-equiv="X-UA-Compatible" content="IE=edge">
      <meta http-equiv='Content-Type' content='text/html;charset=UTF-8'/>
      <script src="resources/sap-ui-core.js"
      id="sap-ui-bootstrap"
      data-sap-ui-libs="sap.m,sap.ui.commons"
      data-sap-ui-theme="sap_bluecrystal">
      </script>
      <script>
      sap.ui.localResources("testing");
      var app = new sap.m.App({initialPage:"idhome1"});
      var page = sap.ui.view({id:"idhome1", viewName:"testing.imageXml", type:sap.ui.core.mvc.ViewType.XML});
      app.addPage(page);
      app.placeAt("content");
      </script>
      <style>
      .myimage{float:right !important; width:300px; height:200px;}
      </style>
      </head>
      <body class="sapUiBody" role="application">
      <div id="content"></div>
      </body>
    </html>
    Output :
    Regards,
    KK

  • How to add, JS and image files in portalapp.xml

    Hi All,
    I was trying to implement multiple level hover detailed navigation in iview for which I got couple of css scripts from web which include javascripts.
    I placed these files in respective folders and their reference in header.jsp but when the iview is rendered in browser the reference is changing to .htm
    So please help me out how to place these script / image files in PAR file and their reference in portalapp.xml & header.jsp.
    Thanks in advance,
    Sai Krishna.

    1) The CSS file you have , save as "jsp" file and please place in the jsp folder.
    suppose your jsp is header.jsp and your css file is header_style.jsp
    include the css jsp - header_style.jsp in header.jsp like
    <%-- an include clause for css file --%>
    <%@ include file="header_style.jsp" %>
    2) All your images , please place in the "images" folder.
    3) To access the images use like below: in CSS file (jsp)
    in header_style.jsp
    yourimage: url(<%=mimeUrl%>/images/Border.gif);
    in header.jsp
    <%
    String mimeUrl = componentRequest.getWebResourcePath();
    %>
    4) more info for creating the hover menu read this blog
    https://www.sdn.sap.com/irj/scn/weblogs?blog=/pub/wlg/4913
    Hope this will help you.

  • Runtime.exec() - how to open new window for new program?

    Hi,
    I have searched through the forums but haven't found an answer to this one yet. I am using runtime.exec() to start up a new java program. At first I thought it wasn't running properly but, after checking task manager, I have discovered that the new program I open runs, it is just completely invisible to me. I am wondering how I can get the new program to run in a command window or something where I can monitor it.
    Thank you for your help,
    Drew

    Thank you all. After trying to figure out why the start command wouldn't work in the runtime.exec() call(not an executable - I am a dolt), I tried putting it in a batch file and it worked perfectly. Thanks for your help,
    Drew

  • How can I start Windows XP Mode when there is no startup link in the Start Menu?

    I have installed and had to uninstall and reinstall Windows XP Mode numerous times on my Dell desktop running Windows 7 Professional and now I cannot start it because there is no startup link in the Program Files folder. When i try to reinstal XP Mode
    it tells me it's already installed, but I can't find the startup link. 
    Martin Willcocks

    Hi,
    Could you find XP mode in Start Menu?
    How about using Windows Search feature to search Windows XP Mode?
    Please remember to mark the replies as answers if they help, and unmark the answers if they provide no help. If you have feedback for TechNet Support, contact [email protected]

  • How to add a 3D image / layer to a flat image

    I'm new to 3D and have been given an assignment to add a 3D object to the flat image of a building facade. The building is a three story medical centre and the 3D object needs to demonstrate what a new elevator with advertising on three sides would potentially look like.
    Any suggestions or help in this regard would be greatly appreciated.
    I was trying to do this with CS4 extended, but have downloaded the CS6 Extended Trial version, if this can be done in CS6 then I can motivate to purchase the upgrade.
    Thanks
    Robin

    The elevator is nothing more than a box. So your job is quite easy in that you have the choice of using a true 3d object or fake it by skewing the 2d objects until it looks like it is a 3d box.
    Either way applying textures to a 3d object or clipping an image to the 2d object will result in the same illusion.
    Its up to you to decide on how much detail is needed and what will you need to learn to get that result. If you go the extra step and go the 3d route, you will find that the end result is much quicker minus the learning curve because it is much easier to align object to make it look correct.
    CS6's 3d tools now include extrusion so the handle for the elevator is easier to create since it starts with a 2d ellipse.
    Where you will have trouble is the mounts for the handle. Because photoshop does not have a way to manipulate the mesh to form it's shape.
    This can be done using a 3rd party app. There are some free ones available on the net. The most popular for free at the moment is Blender. It will do anything you need for your project. Including esporting it as an obj file which can then be imported into photoshop.
    If all you need is a box with the ads on the inside then photoshop CS6 can do it. Just slice the front so it does not show then replace the textures for each side. Done.

  • How to add link and image in oaf iprocurement stores page?

    Hi Every1,
    I have requirement to in iprocurement stores page. Already there are certain links ( a meaning full image+link ), by click on image or link it will take you to the
    required page.
    I need to add one more like that.
    How can i do this ?
    I know thru personalizations we can add links to the page, but how can i add image to that link. so that click of anyone will take to the req page.
    Thanks,
    Arun Peddi

    Hi,
    Here is one way of putting an image in the header:
    <fo:layout-master-set>
        <fo:simple-page-master master-name="my-page">     
          <fo:region-body margin="1in"/>
          <fo:region-before extent="1in" background-color="silver" />
        </fo:simple-page-master>
      </fo:layout-master-set>
      <fo:page-sequence master-reference="my-page">
         <fo:static-content flow-name="xsl-region-before">
             <fo:block height="150px" width="1024px" background-color="white" >
                 <fo:external-graphic src="http://localhost:9000/web-determinations9000/images/Header.jpg">
                 </fo:external-graphic>
            </fo:block>
        </fo:static-content>
        <fo:flow flow-name="xsl-region-body">
        </fo:flow>
      </fo:page-sequence>One good XSL:FO refernce: http://www.learn-xsl-fo-tutorial.com
    Hope this helps.
    Thanks,
    Aakarsh
    Edited by: aakarsh on Apr 6, 2011 6:40 AM

Maybe you are looking for

  • Pdf attachments open in body of e-mail

    Using my mac mail program, when I click (on the paper clip) to attach a PDF - instead of an icon, it opens up in the body of the e-mail. Please advise. Thanks, Iza

  • Latest Support Pack for ECC 6.0

    hi friends.., What is the latest support pack for ECC 6.0? if known what is the Path in service market? Is there any way to upload the support pack in less downtime? Plz reply as soon as possible... Regards varun

  • Export problem: The file is split four ways!

    Hi, I've been trying to export my 40 min long movie into the normal export, just by clicking export>quicktime movie and export it to a external hard drive. I usually do this and then compress it outside. But this time, I ended up with Four files: 1 2

  • Set up BigPond Email on Outlook Express (5.5 or 6.0)

    This page will help you set up your BigPond® Email on Outlook Express version 5.5 or 6.0. Outlook is a registered trademark of Microsoft Corporation in the United States and/or other countries. Before you start You'll need your Telstra email username

  • Snow Leopard - Original MacBook Pro

    Will Snow Leopard work with the original MacBook Pro? If so, will all the new features of the operating system work with the equipment that the original MacBook Pro has (i.e. Intel Core 2 Duo, NVIDIA 8600, etc...)? Thank! Message was edited by: Micha