Games/apps to help me learn how to scroll, click, etc?

I'm a long time PC user but work has switched to MacBook Pros for everyone. I use a lot of keyboard short cuts and other things that either don't work or cause problems. I'm struggling to remember when I click with two fingers vs. swiping, how far apart my fingers should be, and so on. I know it's supposed to be intuitive but for me it's just frustrating. More often than not if I need to get something done, I return to my ancient PC.
Is there any game or training software that will help me learn all the keyboard shortcuts and correct finger motions for my new MacBook Pro? All IT will tell me is 'use it to learn it' which doesn't help when I can't get through a simple web page or document.

I've helped some users to learn how to become more proficient with the tap/swipe interface, and you know it takes some getting used to.
The IT people who tell you "use it and learn in" are exactly right. Otherwise, you spend your time referrng to lists of procedures and commands, and learning comes even more slowly.
Cheat Sheet http://www.cheatsheetapp.com/CheatSheet/ is a free application that will remind you of the most common hints that are available to you, given your system; tap on the action, and it will automatically launch the command.
Apple has video and textual tutorials http://www.apple.com/findouthow/mac/ to jump-start your learning.
Concentrate on the things you like to do (like web browsing or entering text) and build your competency bit by bit. For beginners, it's best to get help from a fellow user, if you can.
Among the most important information: Learn it automatically, like a language, as if it's second nature.

Similar Messages

  • HT4527 I am a beginner, and could anybody help me learn how to upload my iphone itunes music to my computer so i can get an iphone update?

    I am a beginner, and could anybody help me learn how to upload my iphone itunes music to my computer so i can get an iphone update?

    Transfer Purchases
    File > Devices > Transfer Purchases
    More Info Here  >  http://support.apple.com/kb/HT1848
    How to BackUp
    http://support.apple.com/kb/ht1766
    How to update your iPhone, iPad, or iPod touch

  • Need help for learning how to develop interfaces for Oracle R12 EBS

    Hi all,
    I need to learn how to create interfaces in PL/SQL for Oracle R12 EBS Financials. I cannot find a good starting point for the documentation and examples to help me get started in this area. Would appreciate tips
    for this area.

    Hi,
    What kind of interfaces you are planning to develop?
    Oracle already provides list of APIs that can be used (in R12, it is responsibility).
    Oracle Integration Repository Documentation Resources Release 12 [ID 396116.1]
    Oracle Integration Repository
    http://irep.oracle.com/index.html
    If those APIs do not satisfy your requirements, you can refer to "Oracle Applications Developer" guide as well as SQL-PL/SQL guides.
    Applications Releases 11i and 12
    http://www.oracle.com/technetwork/documentation/applications-167706.html
    Database Documentation -- SQL-PL/SQL
    http://www.oracle.com/technetwork/database/enterprise-edition/documentation/index.html
    Thanks,
    Hussein

  • When I updated to IOS5 I lost two in game app purchases (the mighty eagle), how do I get those back, when I updated to IOS5 I lost two in game app purchases (the mighty eagle), how do I get those back

    when I updated to IOS5 I lost two in game app purchases (the mighty eagle for angry birds and angry birds seasons), how do I get those back? They are not in my app purchased list in Itunes. 

    Contact iTunes Store support staff through the report a problem links in your account history or,
    iTunes Customer Service Contact - http://www.apple.com/support/itunes/contact.html > Get iTunes support via Express Lane > iTunes > iTunes Store

  • HT4783 I'm trying to learn how to use Airdrop between my wife's Mac and mine. We both have it, but this article did not help us learn HOW to share files.  Yippeee that we can...but HOW?

    My wife and I are trying to learn how to use Air Drop.  The "tutorial" showed us where it is.  It came up.  I saw hers (Mac).  She saw mine (Mac). But where to go after that is, apparently, in the cloud somewhere.  The description says we can share files...which is nice...but nothing tells us HOW to share those files. 
    Thanks for your help out there...
    Dennis

    1. Open a new Finder window or use one that's already open
    2. Click on Airdrop, press Shift+Command+R, or find "Airdrop" in the "Go" menu
    3. Drag your file to the icon of the person you want to send the file to (if you have mountain lion, you can use the share button).
    4. The other person has to click "save"
    5. The file will send and appear in the receiver's downloads folder
    In Mountain Lion, a new feature was added: the share button. It's a button with a picture of a box and an arrow jumping out of it. Click on it and the third (and last) option is "Airdrop" and clicking on it will allow you to send files over Airdrop without opening it in Finder.

  • Java game app - need help on creating more adversaries

    HI all, this app is a simple game where the objective is to avoid incoming balls (adversaries) however at present I can only figure out how to get one ball on screen at a time. What I'd really like is, when a player hits 100 points, a second ball is spawned (thus making the game harder) I would like the same to occur at 200 points (3 balls), 400 pts (4 balls) and so forth. I am sure there is a simple way of doing this. what I have tried is creatin new instances of Ball, but to no avail.any help would be greatly appreciated.
    cheers
    /* A game that is Saucer-like
    * Phillip Wells
    //to do - make more balls when 100 points met
    import java.awt.*;
    import java.awt.Toolkit.*;
    import java.awt.event.*;
    import javax.swing.*;
    import java.awt.geom.*;
    import java.util.concurrent.*;
    public class Saucer extends JFrame {
        public static final int WIDTH = 400;
        public static final int HEIGHT = 400;
        Image img;
        private PaintSurface canvas;
        public void init() {
            this.setSize(WIDTH, HEIGHT);
            this.setTitle("Saucer");
            canvas = new PaintSurface();
           img = Toolkit.getDefaultToolkit().getImage("space.gif");
            this.getContentPane().add(canvas, BorderLayout.CENTER);
            ScheduledThreadPoolExecutor executor =
                    new ScheduledThreadPoolExecutor(3);
            executor.scheduleAtFixedRate(new AnimationThread(this),
                    0L, 20L, TimeUnit.MILLISECONDS);
            setVisible(true);
        class AnimationThread implements Runnable {
            JFrame c;
            public AnimationThread(JFrame c) {
                this.c = c;
            public void run() {
                c.repaint();
        class PaintSurface extends JComponent {
            int saucer_x = 0; // start position of saucer
            int saucer_y = 180;
            int score = 0;
            Ball Ball;
            Color[] color = {Color.RED, Color.ORANGE,
            Color.MAGENTA, Color.ORANGE,
            Color.CYAN, Color.BLUE};
            int colorIndex;
            public PaintSurface() {
                addMouseMotionListener(new MouseMotionAdapter() {
                    public void mouseMoved(MouseEvent e) {
                        saucer_x = e.getX() -30;
                        saucer_y = e.getY() -0;
                Ball = new Ball(30);
            public void paint(Graphics g) {
                Graphics2D g2 = (Graphics2D)g;
                g2.setRenderingHint(
                        RenderingHints.KEY_ANTIALIASING,
                        RenderingHints.VALUE_ANTIALIAS_ON);
                        Shape saucer = new Ellipse2D.Float(
                        saucer_x, saucer_y, 60, 10); // saucer dimensions
                g2.drawImage(img, 0, 0, this);
                g2.setColor(color[colorIndex % 6]);
                if (Ball.intersects(saucer_x, saucer_y, 60, 10)
                && Ball.y_speed > 0) {
                    Ball = new Ball(20);
                    score -= 100;
                    colorIndex = 0;
                else if (Ball.getY() + Ball.getHeight() >= Saucer.HEIGHT)
                    Ball = new Ball(20);
                    score += 10;
                    colorIndex = 0;
                Ball.move();
                g2.fill(Ball);
                g2.setColor(Color.GREEN);
                g2.fill(saucer);
                g2.drawString("Score: " + score, 250, 20);      
                if (score == 20)
        class Ball extends Ellipse2D.Float {
            public int x_speed, y_speed;
            private int d;
            private int width = Saucer.WIDTH;
            private int height = Saucer.HEIGHT;
            public Ball(int diameter) {
                super((int)(Math.random() * (Saucer.WIDTH - 20) + 1),
                        0, diameter, diameter);
                this.d = diameter;
                this.x_speed = (int)(Math.random() * 5 + 5);
                this.y_speed = (int)(Math.random() * 5 + 5);
            public void move() {
                if (super.x < 0 || super.x > width - d)
                    x_speed = -x_speed;
                if (super.y < 0 || super.y > height - d)
                    y_speed = -y_speed;
                super.x += x_speed;
                super.y += y_speed;
    }

    On an off note, there are some things you can do here to make multiple balls much easier to create, track, and manage. One thing is that your Ball class should have a record of all properties that are in anyway related to a Ball object.
    I notice that you handle Ball color within your paint method. Your Ball class should have a Color field so every instance of Ball is aware of its color, and then your paint method can grab the necessary color from the object itself that it is painting. You wont need to keep a color index and color collection.
    Secondly, to track multiple balls you will need a collection object that holds multiple Ball objects. Everything in your paint method right now is looking at one instance of Ball because there is only one reference of Ball. Instead of doing it this way you can keep a number of Ball objects in an ArrayList lets say, and then create a for loop that iterates through element of the List, and performs operations on that ball, like grabbing its color, filling the shape, calling the Ball's move method.

  • Help me learn how to back up and set up a recovery on new MacBook please?

    Please bear with me if I come across not knowing anything about this topic....but that's why i'm asking for help.
    mentioned before that my brother set up my PC laptop for me years ago. And a friend set up my Western Digital External Hard Drive (My Book Essential Edition - i got it super cheap after rebates) and I know he downloaded Syncback from 2Brightsparks since the WD didn't come with software.
    My new Macbook is charging up. I want to know if I should do a backup and recovery? Basically I want to prepare for in case I totally eff up my new Mac and have restore from scratch. I am so confused when I read forums and google stuff. I know it came with the Mac OS X, but what happens to some of the preinstalled software....will it come back up if I use the Mac OS cds? Also, I've read that some say I can backup on CD/DVD but they won't be bootable but if I use external HD it's bootable - what the heck does this all mean?
    Will I have to download a software to use with the WD HD or will the preinstalled Time Machine work? (Step by Step directions on how to make a bootable restore and back up would be greatly appreciated)
    and when I add other software, can I back up the computer so that if I ever have to do a system restore I can still get those software back on my Mac without having to go get the software disc or pay online again for the download?
    thanks a bunch!

    Hey Knotty,
    If you are close to an Apple Store, you would do yourself a world of good if you purchased One-to-One Membership. The Creatives at the Apple Store can teach you how to do all of this and so much more, for a full year.
    Time Machine is an automatic backup system that is pre-installed on your Mac. It is very easy to use. Since you already have the WD, you could use that for this purpose. There is no other software you would have to purchase. If there are files and such on your WD, I would first back those up to some other media, DVD or CD, then let Time Machine reformat it and use it. It will not use the same format as your old PC, which is why you will need to backup those files you need off of it.
    Good Luck.
    Adam

  • Is there a site or dvd to help me learn how to use firefox 6???

    i am an idiot about computers and i need help on installing and understanding how to use firefox..from setting it up to everyday use. like how to add roboform to the tool bar and for that matter how to get a toolbar..so is there a dvd or something to walk me thru installation please

    It's impossible to make certain modification to the content on your iPod if it is not connected to a computer. In fact, just about the only thing you can do from the iPod is rate your music.
    If you want complete control, just tell the iPod to manage music manually and you can move things in and delete them as you please.
    The reason the iPod works like this is pretty simple, Apple figures that allowing the user to delete music from the iPod all willy-nilly would make the iPod more complex, and therefore more confusing.
    But honestly, do you need to delete the podcasts from your iPod RIGHT AFTER you've listened to them? What's the deal with the urgent need to make more space? Unless you're doing transfers from a camera (and I seriously doubt you are) you can just delete them the next time you plug the iPod into your computer.

  • HELP !! I keep changing my zoom and I don't know how I did it. Can you help me learn how to fix it ?

    I am trying to leave IE for Firefox, but am having some problems. This issue is that I keep changing my zoom and I'm not sure how I've done it OR how to undo it.
    I also have secondary issue on bookmarks.

    See also:
    *https://support.mozilla.com/kb/how-do-i-use-zoom
    *http://kb.mozillazine.org/Zoom_text_of_web_pages

  • HELP-40GB i-pod with scrolling click wheel

    ok first of all, i got this new computer. I dowloaded itunes onto it. I want to plug in my i-pod into my new comp but im afraid that all my songs will be deleted. I have all my songs on my other computer, but the other computer isnt working. I also need to plug it into the new comp because a little folder with the ! comes up every once and a while. Also, my i-pod begins to play a song then it stops and it goes to the next song, this is related with the menu icon and the !. Now all of a sudden i press the MENU button and the apple logo pops up then it just turns back off. WHAT DO I DO? i want to keep all my songs, but at the same time im afraid that if i plug it into the new comp all my songs will disappear. Also why is my i-pod just shutting off when i turn it on?
    I-pod with the scrolling click wheel   Windows XP  

    The first thing that anyone is going to suggest to you in respect of the folder and ! error is to reset your iPod and/or restore it. Restoring the iPod will erase anything that's stored on it and return it to factory settings. You may not have any choice but to do this.
    http://docs.info.apple.com/article.html?artnum=61003

  • I have a new iPad Air and I don't want all my game apps to download, how do I pick specific games to download?

    I have a new iPad Air and I dont want all my game apps to download (from iTunes), how do I pick specific apps to download

    Don't restore from your backup and in the app store app go to Purchased then click on the ones you want.

  • Help on learning Forms 6i

    Hi everyone !!! I'm a newbie
    Need help on learning how to build applications using Forms 6i.
    Any link to a site or guide step by step on converting the typical activities of developer.
    Thanks.

    There are many books out there just buy one:
    http://www.oracle-books.com/development/developer.html
    Also you can check the quick tour and cue cards in the Forms online help. And there is the documentation link on OTN too.

  • Learn how to use Powershell with AD, Exchange and Excel

    Hi.
    I want to learn how to script in Powershell to make my life easier at work.
    Now, I'm creating Distribution Lists with cmdlets, and other simple moves, but I'd like understand and use scripts with Excel to make it easier in AD and Exchange.
    Can anyone help me find out where I can learn Powershell with those tools? I've searched google and youtube, and bought books, but I'd like to learn especially about AD and Exchange through Excel.
    I also have another question, I'm trying to collect the telephonenumbers in one OU in AD, and found this cmdlet:
    Get-AdUser -Filter * -Properties OfficePhone | FT OfficePhone,UserPrincipalName
    I lined ut the OU path before -Filter, and used * -Properties Telephones Mobile to find the phonenumber in Properties-Telephones-Mobile in Active Directory. But I'm obviously doing something wrong.
    Could anyone please help me? 

    Hi Wezcomp,
    first of all, you can use Get-Help to learn how to use Cmdlets, by asking them what it is they do:
    Get-Help Get-ADUser -Detailed
    By Adding the -Detailed Parameter, it will explain each Parameter of Get-ADUser and what it does. Then it will show you examples on how to use the cmdlet. Very useful tool,
    Get-Help, learning to use it fully ought to be your first step, as this unlocks your access all other aspects of PowerShell. With that tool in hand, you could theoretically do the rest fully autodidactically (would be frustrating though, since you'd
    like to be able to do something specific right now. Don't worry, we'll gladly help anyone truly trying to learn.).
    There are lots of tutorials out there that can be useful in a general way (I added my own here). But regarding Excel:
    As Fausto said, CSVs are the simple most way to do this. I'd advice against delving too deep into Excel manipulation right now (lots of frustration, little immediate rewards), Csv is your friend. Notable Commands:
    Import-Csv
    Export-Csv
    For example, if you want to create a csv list with user data in it, using your previous example, you can do this:
    Get-ADUser -Filter "*" -Properties OfficePhone | Export-Csv "C:\example\users.csv" -NoTypeInformation
    By the way: FT (Format-Table) is a treacherous command: It displays objects to the console, but it is a dead end where data is concerned! Only use it when you want to check something quick on the console (like whether you got the right data), before
    continuing on without using a Format command.
    Cheers,
    Fred
    There's no place like 127.0.0.1

  • Learning how to use Layout Managers

    The code that is included in this post is public code from the SUN tutorials. I am trying to learn how to use the layouts and add individual programs that were created to each component in the layouts.
    This is what I am exploring:
    I want to have a tabbed layout like the example TabbedPaneDemo located at http://java.sun.com/docs/books/tutorial/uiswing/examples/components/index.html#TabbedPaneDemo. Below is the code.
    In one of the tabs, I want to place a button and report in it. When the button is clicked, I want the report refreshed. Eventually I will be populating an array with data. The report I want to use the example SimpleTableDemo located at http://java.sun.com/docs/books/tutorial/uiswing/examples/components/SimpleTableDemoProject/src/components/SimpleTableDemo.java. Below is the code.
    From what I have learned, you can place a container inside a container. So I should be able to place the SimpleTableDemo inside the tab 4 of the TabbedPaneDemo.
    If this is indeed correct, then how do I put these two things together? I am getting a little lost in all the code.
    Any assistance in helping me learn how to create and use layout managers would be appreciated.
    package components;
    * TabbedPaneDemo.java requires one additional file:
    *   images/middle.gif.
    import javax.swing.JTabbedPane;
    import javax.swing.ImageIcon;
    import javax.swing.JLabel;
    import javax.swing.JPanel;
    import javax.swing.JFrame;
    import javax.swing.JComponent;
    import javax.swing.SwingUtilities;
    import javax.swing.UIManager;
    import java.awt.BorderLayout;
    import java.awt.Dimension;
    import java.awt.GridLayout;
    import java.awt.event.KeyEvent;
    public class TabbedPaneDemo extends JPanel {
        public TabbedPaneDemo() {
            super(new GridLayout(1, 1));
            JTabbedPane tabbedPane = new JTabbedPane();
            ImageIcon icon = createImageIcon("images/middle.gif");
            JComponent panel1 = makeTextPanel("Panel #1");
            tabbedPane.addTab("Tab 1", icon, panel1,
                    "Does nothing");
            tabbedPane.setMnemonicAt(0, KeyEvent.VK_1);
            JComponent panel2 = makeTextPanel("Panel #2");
            tabbedPane.addTab("Tab 2", icon, panel2,
                    "Does twice as much nothing");
            tabbedPane.setMnemonicAt(1, KeyEvent.VK_2);
            JComponent panel3 = makeTextPanel("Panel #3");
            tabbedPane.addTab("Tab 3", icon, panel3,
                    "Still does nothing");
            tabbedPane.setMnemonicAt(2, KeyEvent.VK_3);
            JComponent panel4 = makeTextPanel(
                    "Panel #4 (has a preferred size of 410 x 50).");
            panel4.setPreferredSize(new Dimension(410, 50));
            tabbedPane.addTab("Tab 4", icon, panel4,
                    "Does nothing at all");
            tabbedPane.setMnemonicAt(3, KeyEvent.VK_4);
            //Add the tabbed pane to this panel.
            add(tabbedPane);
            //The following line enables to use scrolling tabs.
            tabbedPane.setTabLayoutPolicy(JTabbedPane.SCROLL_TAB_LAYOUT);
        protected JComponent makeTextPanel(String text) {
            JPanel panel = new JPanel(false);
            JLabel filler = new JLabel(text);
            filler.setHorizontalAlignment(JLabel.CENTER);
            panel.setLayout(new GridLayout(1, 1));
            panel.add(filler);
            return panel;
        /** Returns an ImageIcon, or null if the path was invalid. */
        protected static ImageIcon createImageIcon(String path) {
            java.net.URL imgURL = TabbedPaneDemo.class.getResource(path);
            if (imgURL != null) {
                return new ImageIcon(imgURL);
            } else {
                System.err.println("Couldn't find file: " + path);
                return null;
         * Create the GUI and show it.  For thread safety,
         * this method should be invoked from
         * the event dispatch thread.
        private static void createAndShowGUI() {
            //Create and set up the window.
            JFrame frame = new JFrame("TabbedPaneDemo");
            frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
            //Add content to the window.
            frame.add(new TabbedPaneDemo(), BorderLayout.CENTER);
            //Display the window.
            frame.pack();
            frame.setVisible(true);
        public static void main(String[] args) {
            //Schedule a job for the event dispatch thread:
            //creating and showing this application's GUI.
            SwingUtilities.invokeLater(new Runnable() {
                public void run() {
                    //Turn off metal's use of bold fonts
              UIManager.put("swing.boldMetal", Boolean.FALSE);
              createAndShowGUI();
    package components;
    * SimpleTableDemo.java requires no other files.
    import javax.swing.JFrame;
    import javax.swing.JPanel;
    import javax.swing.JScrollPane;
    import javax.swing.JTable;
    import java.awt.Dimension;
    import java.awt.GridLayout;
    import java.awt.event.MouseAdapter;
    import java.awt.event.MouseEvent;
    public class SimpleTableDemo extends JPanel {
        private boolean DEBUG = false;
        public SimpleTableDemo() {
            super(new GridLayout(1,0));
            String[] columnNames = {"First Name",
                                    "Last Name",
                                    "Sport",
                                    "# of Years",
                                    "Vegetarian"};
            Object[][] data = {
                {"Mary", "Campione",
                 "Snowboarding", new Integer(5), new Boolean(false)},
                {"Alison", "Huml",
                 "Rowing", new Integer(3), new Boolean(true)},
                {"Kathy", "Walrath",
                 "Knitting", new Integer(2), new Boolean(false)},
                {"Sharon", "Zakhour",
                 "Speed reading", new Integer(20), new Boolean(true)},
                {"Philip", "Milne",
                 "Pool", new Integer(10), new Boolean(false)}
            final JTable table = new JTable(data, columnNames);
            table.setPreferredScrollableViewportSize(new Dimension(500, 70));
            table.setFillsViewportHeight(true);
            if (DEBUG) {
                table.addMouseListener(new MouseAdapter() {
                    public void mouseClicked(MouseEvent e) {
                        printDebugData(table);
            //Create the scroll pane and add the table to it.
            JScrollPane scrollPane = new JScrollPane(table);
            //Add the scroll pane to this panel.
            add(scrollPane);
        private void printDebugData(JTable table) {
            int numRows = table.getRowCount();
            int numCols = table.getColumnCount();
            javax.swing.table.TableModel model = table.getModel();
            System.out.println("Value of data: ");
            for (int i=0; i < numRows; i++) {
                System.out.print("    row " + i + ":");
                for (int j=0; j < numCols; j++) {
                    System.out.print("  " + model.getValueAt(i, j));
                System.out.println();
            System.out.println("--------------------------");
         * Create the GUI and show it.  For thread safety,
         * this method should be invoked from the
         * event-dispatching thread.
        private static void createAndShowGUI() {
            //Create and set up the window.
            JFrame frame = new JFrame("SimpleTableDemo");
            frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
            //Create and set up the content pane.
            SimpleTableDemo newContentPane = new SimpleTableDemo();
            newContentPane.setOpaque(true); //content panes must be opaque
            frame.setContentPane(newContentPane);
            //Display the window.
            frame.pack();
            frame.setVisible(true);
        public static void main(String[] args) {
            //Schedule a job for the event-dispatching thread:
            //creating and showing this application's GUI.
            javax.swing.SwingUtilities.invokeLater(new Runnable() {
                public void run() {
                    createAndShowGUI();
    }

    Before I did what you suggested, which I appreciate your input, I wanted to run the code first.
    I tried to run the SimpleTableDemo and received the following error:
    Exception in thread "main" java.lang.NoClassDefFoundError: SimpleTableDemo (wrong name: componets/SimpleTableDemo)
    at java.lang.ClassLoader.defineClass1(Native Method)
    at java.security.SecureClassLoader.defineClass(Unknown Source)
    at java.net.URLClassLoader...
    there are several more lines but as I was typing them out I thought that maybe the code is not written to run it in the command window. The errors seem to be around the ClassLoader. Is that correct? On the SUN example page when you launch the program a Java Web Start runs. So does this mean that the code is designed to only run in WebStart?

  • I have an iPhone 3GS and there is no sound at all on my game Apps

    I'm having trouble trying to get sound on my game apps, the volume on the phone is fine but the game apps have no sound and I cant hear alerts etc.
    Can anyone advise me on what I can do to restore the sound. The Apps only have sound through my earphones.

    Try switching the Ring / Slient switch on the side of the iPhone.
    Some games will go into silent mode when you toggle that switch.

Maybe you are looking for

  • In Purchasing A/P - A/P Credit Memo -- how to correct entry??

    Hi guys! Please advise me how to delete a double entry: by error an A/P Credit memo was entered twice, the same amount, the same date.. How can I correct it and what type of reconciliation I would need afterwards? Thank you! Message was edited by: An

  • Lost my Final Cut Pro disc, but I have the serial/license number

    So basically I want to take my final cut pro off of one computer and put it on another. But I don't have my disc, I do have the serial/license number so is there anyway I can install it on my other computer without the disc? Or is there anyway to get

  • Java - best practice for getting values from complex dialogs

    Hi, Java is a language I use quite a bit, but much of my work hasn't required GUIs. Now, I'm developing an app which will contain a number of custom-made dialogs (which will obviously extend JDialog). Take a typical Options dialog which typically sto

  • Blank cdr and dvdr not being "detected"

    I can insert a DVD or CD with data on it, But when I put in a cd/dvd with nothing on it none of my burning applications detect that its in there. Also, nothing in thunar is shown about it. I have not been able to find anything on the forums about thi

  • Multilingual Support

    I want to Use a single Oracle database to store Data in Different asian languages like Japanese,Korean and chinese i want to display the data in a particular local language depending upon the locale (e.g) in china diaplay the name in chinese how to d