JScrollPane is not appeared.

Hi,
I want to use JScrollPane.
However in my program scrollbar is not appeared.
What is wrong?
Thanks.
import java.awt.*;
import java.awt.event.*;
import javax.swing.*;
public class ImageViewFrame extends JFrame {
public static void main(String[] args) {
     ImageViewFrame frame = new ImageViewFrame();
     frame.show();
ImageViewFrame() {
     setSize(300, 300);
     addWindowListener(new WindowAdapter() {
          public void windowClosing(WindowEvent evt) {
          System.exit(0);
     JPanel panel = new JPanel();
     panel.setSize(1000, 1000);
     JScrollPane scrollPane = new JScrollPane(panel);
     getContentPane().add(scrollPane, BorderLayout.CENTER);

I add a line, "panel.setPreferredSize(new Dimension(1000, 1000));"
It works well.
import java.awt.*;
import java.awt.event.*;
import javax.swing.*;
public class ImageViewFrame extends JFrame {
public static void main(String[] args) {
     ImageViewFrame frame = new ImageViewFrame();
     frame.show();
ImageViewFrame() {
     setSize(300, 300);
     addWindowListener(new WindowAdapter() {
          public void windowClosing(WindowEvent evt) {
          System.exit(0);
     JPanel panel = new JPanel();
     panel.setSize(1000, 1000);
     panel.setPreferredSize(new Dimension(1000, 1000));
     JScrollPane scrollPane = new JScrollPane(panel);
     getContentPane().add(scrollPane, BorderLayout.CENTER);

Similar Messages

  • JScrollPane will not appear

    I'm trying to add a scroll bar to a JTextArea. The textarea appears but there is no scroll bar.
    Here's what I'm doing. I've included the whole class in case there is something relevant that I don't realise. Any ideas on what I'm doing wrong?
    import javax.swing.*;
    import java.awt.*;
    import java.awt.event.*;
    public class Basic extends JFrame
    JTextArea output;
         public Basic()
              super( "Diagram" );
              setSize( 800, 600 );
              Container c = getContentPane();
              JMenuBar bar = new JMenuBar();          
              JMenu fileMenu = new JMenu( "File" );
              JMenuItem n = new JMenuItem( "New" );
              JMenuItem open = new JMenuItem( "Open" );
              JMenuItem close = new JMenuItem( "Close" );
              JMenuItem save = new JMenuItem( "Save" );
              JMenuItem create = new JMenuItem( "Create Diagram" );     
              fileMenu.add(n);
              fileMenu.add(open);
              fileMenu.add(close);
              fileMenu.add(save);
              fileMenu.add(create);
              bar.add(fileMenu);
              output = new JTextArea();
              JScrollPane scroll = new JScrollPane(output);
              n.addActionListener(
                   new ActionListener()
                   {public void actionPerformed( ActionEvent e)
                        OpenUI o = new OpenUI();
                        TokenTest t = new TokenTest(o.fileText, output);
              c.add(bar, BorderLayout.NORTH);
              c.add(scroll);
              show();          
    }

    Use the methods SetVerticalScrollbarPolicy(JScrollPane.VERTICAL_SCROLLBAR_ALWAYS) and
    SetHorizontalScrollbarPolicy(HORIZONTAl_SCROLLBAR_ALWAYS) so the scrollbars will appear whether they are needed or not.
    OR
    use new JTextArea(40,100) to set the minimum rows and columns of the textarea.

  • Vertical scrollbar does not appear

    Hi all!
    Here is my problem.
    I have a JPanel on a JScrollPane (called: container).
    I have an other class which extends JPanel (called: component).
    I have a JButton which adds a new from component to container on every click. (container's layout is null, and I use the setBounds method on component).
    After every adding I've just set a new height to the container (setSize(container.getWidth(), container.getHeigth()+100)), but vertical scrollBars of JScrollPane does not appear.
    I tried to call the revalidate, repaint methods on the container but it did not work.
    Please help me!

    Which JScrollPane constructor are you using? If you're using one that does not specify scrollbar policy parameters, horizontal and vertical scrollbars only appear if the component's contents are larger than the view. You can of course set a JScrollPane's scollbar policies by calling the appropriate mutator methods: setVerticalScrollBarPolicy and setHorizontalScrollBarPolicy.

  • ScrollBars are not appearing on my JScrollPane

    I have a JPanel which I add a JScrollPane to -
    controlPanel = new JPanel();
    controlPanel.setPreferredSize(new Dimension(900, 100));
    JScrollPane cpScroll = new JScrollPane(controlPanel);I have added this JScrollPane to my Frame -
    frame.add(cpScroll, BorderLayout.SOUTH);I add a few JLabels to my Jpanel and increase the height of my JPanel as I add labels.
    The problem I am having is that the scroll pane is not appearing even if I make the height of the panel huge. However the strange thing is that it will appear if I make the Panel very wide.
    Does anyone know what could be causing the problem or how I could solve it. Thanks.

    compare yours to this, see if there's anything different
    import javax.swing.*;
    import java.awt.*;
    class Testing extends JFrame
      public Testing()
        setLocation(400,300);
        setDefaultCloseOperation(EXIT_ON_CLOSE);
        JPanel controlPanel = new JPanel(new GridLayout(10,1));
        for(int x = 0; x < 10; x++) controlPanel.add(new JLabel(""+x));
        controlPanel.setPreferredSize(new Dimension(400, 300));
        JScrollPane cpScroll = new JScrollPane(controlPanel);
        cpScroll.setPreferredSize(new Dimension(300, 150));
        getContentPane().add(cpScroll, BorderLayout.SOUTH);
        pack();
      public static void main(String[] args){new Testing().setVisible(true);}
    }

  • Buttons not  appearing (setVisible used)

    I have four buttons.
    This is what i want:
    1)At the begining run=debug=visible
    next=exit2=not visible
    2)When i click debug run=debug=invisible
    next=exit2=visible
    But it's not doing (2)correctly.
    instead it does debug run=debug=invisible
    next and exit2 do not appear.
    Any idea why?
    Here is the code:
    public class PC extends JApplet
    { public void init()
      { Executionionhandler a=new Executionionhandler();
        run=new JButton("Run");
        run.setEnabled(false);
        run.setMinimumSize(new Dimension(110,40));
        run.setPreferredSize(new Dimension(110,40));
        run.setMaximumSize(new Dimension(110,40));
        run.addActionListener(a);
        Debughandler b=new Debughandler();
        debug=new JButton("Debug");
        debug.setMinimumSize(new Dimension(100,40));
        debug.setPreferredSize(new Dimension(100,40));
        debug.setMaximumSize(new Dimension(100,40));
        debug.addActionListener(b);
        Right2=new JPanel();
        Right2.setBackground(Color.cyan);
        Right2.setMinimumSize(new Dimension(395,40));
        Right2.setPreferredSize(new Dimension(395,40));
        Right2.setMaximumSize(new Dimension(395,40));
        Right2.setLayout(new BoxLayout(Right2,BoxLayout.X_AXIS));
        Right2.add(run);
        Right2.add(debug);
        Nexthandler Ne=new Nexthandler();
        next=new JButton("NEXT");
        next.setVisible(false);
        next.addActionListener(Ne);
        Exithandler2 EX2=new Exithandler2();
        exit2=new JButton("EXIT DEBUG");
        exit2.setVisible(false);
        exit2.addActionListener(EX2);
        Right3=new JPanel();
        Right3.setBackground(Color.cyan);
        Right3.setMinimumSize(new Dimension(210,40));
        Right3.setPreferredSize(new Dimension(210,40));
        Right3.setMaximumSize(new Dimension(210,40));
        Right3.setLayout(new FlowLayout());
        Right3.add(next);
        Right3.add(exit2);
      private class Debughandler implements ActionListener
      { public void actionPerformed(ActionEvent event)
        { next.setVisible(true);
          exit2.setVisible(true);
          run.setVisible(false);
          debug.setVisible(false);
          boolean check2=false;
          for(int i=0;i<MemorySize&& check2==false ;i++)
          { if(MemoryContent.getText().length()>0)
    { start2=i;
    check2=true;
    private class Exithandler2 implements ActionListener
    { public void actionPerformed(ActionEvent event)
    { next.setVisible(false);
    exit2.setVisible(false);
    run.setVisible(true);
    debug.setVisible(true);

    Here they are
    import javax.swing.*;
    //import javax.swing.table.AbstractTableModel;
    import javax.swing.event.*;
    import java.awt.*;
    import java.awt.event.*;
    import java.io.*;
    import java.util.*;
    //import javax.swing.JTable;
    //import javax.swing.table.TableColumn;
    //import javax.swing.DefaultCellEditor;
    //import javax.swing.table.TableCellRenderer;
    //import javax.swing.table.DefaultTableCellRenderer;
    //import javax.swing.JScrollPane;
    //import javax.swing.JComboBox;
    //import javax.swing.JFrame;
    //import javax.swing.SwingUtilities;
    //import javax.swing.JOptionPane;
    public class PC extends JApplet
    { private int MemorySize=100,km,Limit,copy92,m,start1,start2;
      private boolean Stop=false;
      private JTextField MemoryContent[];
      private JLabel MemoryAddress[],MemoryAdd1,MemoryAdd2,calculator1,calculator2;
      private JPanel Memory1,Memory2,Memory3,Memory,Right,Right1,Right2,
              Right3,mainpane;
      private JScrollPane scrollPane1;
      private JButton load,save,clear,exit,run,debug,next,exit2;
      private File fileName;
      public void init()
      { Executionionhandler a=new Executionionhandler();
        run=new JButton("Run");
        run.setEnabled(false);
        run.setMinimumSize(new Dimension(110,40));
        run.setPreferredSize(new Dimension(110,40));
        run.setMaximumSize(new Dimension(110,40));
        run.addActionListener(a);
        Debughandler b=new Debughandler();
        debug=new JButton("Debug");
        debug.setMinimumSize(new Dimension(100,40));
        debug.setPreferredSize(new Dimension(100,40));
        debug.setMaximumSize(new Dimension(100,40));
        debug.addActionListener(b);
        Right2=new JPanel();
        Right2.setBackground(Color.cyan);
        Right2.setMinimumSize(new Dimension(395,40));
        Right2.setPreferredSize(new Dimension(395,40));
        Right2.setMaximumSize(new Dimension(395,40));
        Right2.setLayout(new BoxLayout(Right2,BoxLayout.X_AXIS));
        Right2.add(run);
        Right2.add(debug);
        Nexthandler Ne=new Nexthandler();
        next=new JButton("NEXT");
        next.setVisible(false);
        next.addActionListener(Ne);
        Exithandler2 EX2=new Exithandler2();
        exit2=new JButton("EXIT DEBUG");
        exit2.setVisible(false);
        exit2.addActionListener(EX2);
        Right3=new JPanel();
        Right3.setBackground(Color.cyan);
        Right3.setMinimumSize(new Dimension(210,40));
        Right3.setPreferredSize(new Dimension(210,40));
        Right3.setMaximumSize(new Dimension(210,40));
        Right3.setLayout(new FlowLayout());
        Right3.add(next);
        Right3.add(exit2);
        private class Debughandler implements ActionListener
      { public void actionPerformed(ActionEvent event)
        { next.setVisible(true);
          exit2.setVisible(true);
          run.setVisible(false);
          debug.setVisible(false);
          boolean check2=false;
          for(int i=0;i<MemorySize&& check2==false ;i++)
          { if(MemoryContent.getText().length()>0)
    { start2=i;
    check2=true;
    private class Exithandler2 implements ActionListener
    { public void actionPerformed(ActionEvent event)
    { next.setVisible(false);
    exit2.setVisible(false);
    run.setVisible(true);
    debug.setVisible(true);

  • Html page does not appear???

    I am designin a hepl page.I've written the code as follows
    but the html does not appear.Instead the panel holding the
    html is plain white.Why is this so?
    P.S: i am able to view the html in a explorer.
    Font demoFont = new Font("Serif", Font.PLAIN, 14);
        quotePane = null;
        scrollPane3 = null;
        s=null;
           try
        { s="file:\\myjava\\HELP.html";
          URL url = new URL(s);
             quotePane = new JEditorPane(url);
             quotePane.setEditable(false);
          scrollPane3 = new JScrollPane(quotePane);
             scrollPane3.setMinimumSize(new Dimension(390,490));
          scrollPane3.setPreferredSize(new Dimension(390,490));
          scrollPane3.setMaximumSize(new Dimension(390,490));
             if (DEBUG)
          { System.out.println(quotePane.getText());
               quotePane.setText(quotePane.getText());
        catch (java.io.IOException e)
        { scrollPane3 = new JScrollPane(new JTextArea("Can't find HTML file."));
             scrollPane3.setFont(demoFont);
        htmlTextPane = new JPanel();
         htmlTextPane.add(scrollPane3);
            /*htmlTextPane.setBorder(BorderFactory.createCompoundBorder(
                          BorderFactory.createTitledBorder("HTML Text"),
                          BorderFactory.createEmptyBorder(0, 5, 5, 5)
        //helppane=new JPanel();
        //htmlTextPane.setBackground(Color.magenta);
        HelpFrame=new JFrame("Help Index");
        HelpFrame.addWindowListener(new WindowAdapter()
                                 public void windowClosing(WindowEvent e)
                                   HelpFrame.setVisible(false);
        HelpFrame.getContentPane().add(htmlTextPane);
        HelpFrame.pack();
        HelpFrame.setSize(400,500);
        Container c=getContentPane();
        c.add(mainpane);

    More info ...
    Can we see the whole program please.

  • I am trying to set up Sharing amongst several computers on my home network.  I have followed all the setup instructions but after completion Sharing does not appear in my iTunes window (on any of the computers I've set up).  There is no explanation why.

    I have been trying to set up Sharing between two computers on my network. I did this once and it worked.  However, when I try to set this up now the Sharing feature does not appear on the left side of the iTunes window (on either computer).  There is no explanation as to why not.  Is this a configuration problem, a network problem or what?   Can it be fixed?  I have tried turning sharing off and back on on both computers but to no avail.  What am I missing?  Thanks for any help you can provide.

    Hey innerev2003,
    Thanks for the question, and welcome to Apple Support Communities.
    If, while searching through your past purchases, items are unavailable to download and show a "Purchased" button, they are still on your computer. It may be best to search your iTunes library by clicking Music, then use the search bar at the top right.
    If you are completely sure the items are no longer in your library, try signing out of the iTunes Store, and then back in.
    iTunes 11 for Windows: Manage your iTunes Store account
    http://support.apple.com/kb/PH12507
    Thanks,
    Matt M.

  • Hi all, I upgraded my MBP to Lion , but on the screen where i need to type my password, click  on my photo and it does not appear the place for me to type my password and it stay stuck there. Can anyone solve this problem for me?

    Hi all, I upgraded my MBP to Lion , but on the screen where i need to type my password, click  on my photo and it does not appear the place for me to type my password and it stay stuck there. Can anyone solve this problem for me?

    Reboot the machine holding Command and r keys down, you'll boot into Lion Recovery Partition
    In there will be Disk Utility, use that to select your Lion OS X Partition and Repair Permissions.
    After that is done reboot the machine and see if you can log in.
    If not repeat the above steps to get into Lion Recovery, get online and reinstall Lion again, it will overwrite the installed version and hopefully after that it wil work.
    Reboot and try again.
    If not follow my steps to create a Snow Leopard Data Recovery drive, then option boot from it and grab a copy of your files off the machine.
    Then reinstall all your programs onto the external drive like setting up a new machine, then use Disk Utility to erase the entire internal boot drive (select the drive media on the far left, not the partiton slightly indented) format Option: GUID , 1 partition OS X Extended and then use Carbon Copy Cloner to clone the external to the newly formatted internal drive. Once that is finished reboot and disconnect the external drive.
    Once you go that, boot into Snow Leopard and update to 10.6.8, use the AppStore and option click on Purchases and download Lion again and install.
    Lots of work, but there is no Lion disks.
    https://discussions.apple.com/message/16276201#16276201

  • External Hard Drive does not appear in finder

    We purchased a 1 TB G Drive Q from the Apple Store. It is connected to my wife's iMac running the most current update of Leopard by 800 firewire and appears on her desktop and works flawlessly with time machine. I am connected to the same drive intermittently with my MacBookPro also running the most current update of Leopard. i connect with 400 firewire. Initially the drive would not appear in the finder. for the initial backup, i turned the hard drive off and on and then it would appear and i did the backup but now when i connect to the 400 firewire port, it still doesn't appear in the finder. i would much prefer not to need to turn my back up drive off and on each time i want to use time machine. i should also mention that when i connect any of my garmin training devices or my power meter by USB it is recognized very quickly as a device in finder. any ideas? i understand this may be one of the problems fixed with SnowLeopard. thanks.

    I am not sure what you are attempting to do. I assume that you are not trying to connect two computers to the same external drive at the same time. That will definitely be problematic. In order to effectively use Time Machine with two Macs, you should partition the drive into two partitions. Also make sure that the drive is using a GUID partition scheme.
    bd

  • BPM Application Link does not appear in BPM Workspace (11.1.1.7)

    I spent huge amount of time to reveal why does that happens.
    All that follows further is valid for BPM Suite 11.1.1.7.
    The scenario.
    You developed a simple BPM process with Initiator pattern (maybe by following the "Quote Request" tutorial).
    But the application link did not appear in BPM Workspace.
    Here i'm skipping any kind of mistakes as "oh, incorrect swimlane", "oh, i did not include the user to the app role" and so on.
    At first, you should know about the "feature" - You have to attach task form to the Initiator Human Task to see the App Link.
    The simplest way to do that is to AutoGenerate task form (and deploy it, of course).
    Else the Appication Link will not appear.
    One exception to this rule - If your Task HAS NO PAYLOAD (no parameters) the Task Form is not required (to appearing of the Application Link).
    The second find is a bug (is think so).
    If you edited the Role that Attached to the swimlane of Initiator Task, you will not see the Application Link.
    If you look to organization.xml you will see something like this:
            <ns1:applicationRole id="StartTask.InitRole" isProcessRole="true">
                <ns5:name>StartTask.InitRole1</ns5:name>
                <ns1:processRole id="InitRole" name="InitRole1"/>
            </ns1:applicationRole>
    The Application Link will appear ONLY IF THE "applicationRole id", "applicationRole name" and "processRole id" have the same value.
    When you edit name of the application role in Organization Editor you change "applicationRole name" and "processRole name" values.
    After that "applicationRole id" != "applicationRole name" and the Link does not appear.
    How to fix?
    Just edit organization.xml (with external editor) - change the "applicationRole name" to the value of "applicationRole id".
    That allows to have value of "processRole name" something like "The Initiator Role" - that value appears in the BPMN diagram of process.
    Also you can edit organization.xml with Organization Editor and set the Name to the value of "applicationRole id".
    In that case the associated swimlane will have the same name as the "applicationRole id".
    Hope this helps somebody
    Oleg

    Flash Player is a browser add-on, not an executable program.
    If you need to open a local SWF file you will need the standalone player (Projector) from http://www.adobe.com/support/flashplayer/downloads.html
    Note that the download is the player, not an installer, so you will need to make the file association manually.

  • Tab Strips are not appearing correctly

    Hi all,
    We are using SAP Portal 7.3 and we are using Custom theme. The tabstrips are not appearing properly (half broken).
    I have tried changing the properties "Background color of selected tab" , "Background color of non-selected tab" and others in theme editor but this is not solving my issue.
    Any help would be highly appreciated.
    Thanks
    Harshmeet

    Hey,
    Thanks for the reply. PFA the screen shot
    This is how it is appearing, somewhat broken and some space below the tabs.
    Thanks
    Harshmeet

  • File Place does not appear on my menu. Neither does Tools Photoshop Image processor.

    In Bridge File>Place is grayed out on my menu. Tools>Photoshop>Image processor does not appear at all.  I have reset the preferences numerous times and am good to go until I shut down my computer.  When I reboot they are gone again.  I have a Mac with OS 10.10.2 (Yosemite) and CC. 

    Mardi Carter wrote:
    I shut down using "Shut Down" under the Apple menu.....always…
    Well, that's fine for the OS, but sometimes not so great for Photoshop.  Try QUITTING Photoshop from the Photoshop menu, or by Command Q, before you get anywhere near your Apple menu .
    Gene gave you sound advice, but don't forget to run Repair Permissions with Apple's Disk Utility before and after any installation, upgrade or update of the OS or any application.
    You'd think that shouldn't be necessary, but it is indeed vital, indispensable routine maintenance.
    Forget about "it had never happened before", Yosemite is a work in progress.  Apple never gets a major OS X release right until about the dot four or five release, so Yosemite has a way to go before it's at 10.10.4 or 10.10.5.  That has proven to be the nature of the beast.

  • Crystal Reports - Charts do not appear on reports in some cases

    We have a few reports that include charts on them (created with Crystal 2008 Designer).  These reports have run fine for quite a while but this morning we got a support call with a client reporting that though the reports process and appear correctly, the charts do not appear - instead the client can see a box where the charts should be - but no charts appear.
    Wait...  This has a curve ball...
    The same client then ran our application on the SAME machine, but in a VM (virtual machine) on that machine, and now, the charts appear! 
    I can understand that if a machine is low on memory, charts might not appear - but then why when a VM is used on the same machine do charts suddenly appear?
    Is there any way, any suggestion someone can offer by which I can 'trap' this situation in code, PRIOR to producing a report that is going to have a big blank spot where a chart normally appears?
    Thanks for any help - much appreciated.

    Nope...  Not video corruption...  We finally figured it out...
    Its the 12_0 runtime.  Run it, and you dont see any charts, no errors, no warnings, just no charts - update to the 12_1 runtime and voila, charts are suddenly present.
    Just to be sure we were not going nuts we uninstalled, reinstalled the 12_0 and no charts again - put in the 12_1 runtime and there they are again.
    Problem solved.
    Edited by: Bruce Landry on Mar 9, 2010 7:50 PM

  • Adobe Creative Cloud (Desktop) does not work properly. The application is blocked : it could not be launch neither stopped. I'm on MAC Yosemite OS, does anyone know how to remove it properly or to force its stop. It does not appear in the launched applica

    Adobe Creative Cloud (Desktop) does not work properly. The application is blocked : it could not be launch neither stopped. I'm on MAC Yosemite OS, does anyone know how to remove it properly or to force its stop. It does not appear in the launched applications.

    I received no error message. The application was just trying to find applications unsuccessfully.
    I am using MAC OS 10.10.1
    I tried to uninstall the application  but it seems that a kind of deamon is still installed thus providing me to reinstall properly. Do you know where are the elements to remove in order to get my machine just like before ?
    Otherwise I would have to reinstall everything and this would be a pain.
    Thanks for your help.

  • Deployed KM Scheduler Task Does Not Appear in Global Services / Scheduler T

    Hi All,
    I've deployed a portal service and a KM scheduler task in the same DC but cannot see the scheduler task listed under System Admin -> System Config -> Knowledge Management -> Content Management -> Global Services -> Scheduler Tasks.
    The service works correctly and performs its periodic processing once on initialisation of the service, and I can see the resulting log statements to make sure it has worked.
    Both the service and the scheduler task are packed inside the same DC, which builds and deploys without any errors.
    There are no errors in the log regarding the deployment of the DC, or the scheduler task.
    There is a log statement about registering the classloader for the DC, which I assume is the statement in the IRFServiceWrapper init() that goes:
    CrtClassLoaderRegistry.addClassLoader(this.getKey(), this.getClass().getClassLoader());
    But I still dont see the task listed in Global Services -> Scheduler Tasks.
    Does anyone know what might be causing this or how to diagnose the problem further?
    Cheers,
    Steve

    Hi Srini,
    No it doesn't it just has the run method which is generated automatically.
    I have created a local Portal Application project, which is not in a DC, and this also does not have a default constructor ether but appears in the Scheduler Tasks list as soon as it is deployed.
    I also tried to create a Portal Applicaiton DC and Portal Applicaiton (Packaged as SDA) DC and despite the scheduler task being the same, both the DC tasks do not appear in the Scheduler Tasks.
    The only one I can get to work is the local Portal Application project. This is no use as we cant store this in DTR (unless someone can explain how to do this???).
    The Portal Application project packages up the RF Framework JARS inside its PAR file, but the DC and SDA projects dont, so I tried including them via an Assembly Public Part to an External Library DC, which does include the JARs in the deployment files but they still dont appear in the Scheduler Tasks.
    Has anyone out there got a working Scheduler Task in a Portal Application DC?
    Cheers,
    Steve

Maybe you are looking for

  • Dunning Letters Variable

    Hi! SAP Community Can you please help me to know what are the system variables for PLD for dunning letters. I want to know right now the variable number for the NumatCard column and Series Name in Dunning Regards, Lorena

  • Opened Firefox this morning and it was like I had just installed it for the first time

    What is going on with Firefox. Everything was fine last night. This morning I opened it to check the weather and what opened was a new Firefox asking me if I wanted to make it my default browser. All my bookmarks were there. All the add-ons were ther

  • I help on this one.

    I have a WRT54G and I can't connect it to the modem without losing the internet connection.  I have a Qwest ARESCOM 800 modem.  I've connected everything correctly.  Any Ideas?

  • How to find a vi path in vi.lib?

    Does anyone know how I can find a VI in vi.lib for a TestStand step? I want to call the "Spreadsheet String to Array" VI from a TestStand step. But how do I find out where it is? How about a context menu on the block diagram which tells the exact pat

  • Error code message

    hello im having trouble downloading and installing Photoshop Extended version 6the current one seems to be corrupt.  Can you help me to understand what I am doing wrong?