Get problem

Hello

I added a get to hold a container in which a selection of buttons will be added dynamically depending on how many times the method is called.
Everything works fine until the number of buttons exceeds the size of the viewport get. So instead of scrolling in the scrollpane the scroll buttons to the top on top of the surrounding elements.
I have tried everything and can't see what I'm doing wrong. Any help would be appreciated.

-The class of ModelFrame shown first is an action event called getArcGrid(); who initilises the container to go in the get
-The FileMenu class makes the creation of buttons and adding them to the container

Code for the creation of the framework and the majority of the components - products with netbeans
package modelgui;

import javax.swing.*;
import javax.swing.tree.*;
import java.io.*;
import java.awt.*;
import java.awt.event.*;


public class ModelFrame extends javax.swing.JFrame {
    
    private String wDir = null;
    private boolean isWorkspace = false;
    CurrentFileStore fileStore = new CurrentFileStore();
    FileMenu gridDisplay;
    Events events = new Events();
    private Component[] compA;
    private Container gridNameContainer;
    
    /** Creates new form ModelFrame */
    public ModelFrame() {
        
        initComponents();
        java.awt.EventQueue.invokeLater(new Runnable() {            
            public void run() {  
                
            }
        });
    }
    
    /** This method is called from within the constructor to
     * initialize the form.
     * WARNING: Do NOT modify this code. The content of this method is
     * always regenerated by the Form Editor.
     */
    // <editor-fold defaultstate="collapsed" desc="Generated Code">
    private void initComponents() {

        jPanel1 = new javax.swing.JPanel();
        sideTabs = new javax.swing.JTabbedPane();
        tabOnePanel = new javax.swing.JPanel();
        jScrollPane1 = new javax.swing.JScrollPane();
        tabTwoPanel = new javax.swing.JPanel();
        jMenuBar1 = new javax.swing.JMenuBar();
        FileMenu = new javax.swing.JMenu();
        setWorkspace = new javax.swing.JMenuItem();
        importItem = new javax.swing.JMenu();
        importArc = new javax.swing.JMenuItem();
        Save = new javax.swing.JMenu();
        saveProj = new javax.swing.JMenuItem();
        saveGrid = new javax.swing.JMenuItem();
        EditMenu = new javax.swing.JMenu();

        setDefaultCloseOperation(javax.swing.WindowConstants.EXIT_ON_CLOSE);

        jPanel1.setBorder(new javax.swing.border.LineBorder(new java.awt.Color(0, 0, 0), 1, true));

        javax.swing.GroupLayout jPanel1Layout = new javax.swing.GroupLayout(jPanel1);
        jPanel1.setLayout(jPanel1Layout);
        jPanel1Layout.setHorizontalGroup(
            jPanel1Layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING)
            .addGap(0, 511, Short.MAX_VALUE)
        );
        jPanel1Layout.setVerticalGroup(
            jPanel1Layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING)
            .addGap(0, 388, Short.MAX_VALUE)
        );

        sideTabs.setBorder(new javax.swing.border.LineBorder(new java.awt.Color(0, 0, 0), 1, true));

        javax.swing.GroupLayout tabOnePanelLayout = new javax.swing.GroupLayout(tabOnePanel);
        tabOnePanel.setLayout(tabOnePanelLayout);
        tabOnePanelLayout.setHorizontalGroup(
            tabOnePanelLayout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING)
            .addComponent(jScrollPane1, javax.swing.GroupLayout.DEFAULT_SIZE, 186, Short.MAX_VALUE)
        );
        tabOnePanelLayout.setVerticalGroup(
            tabOnePanelLayout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING)
            .addGroup(tabOnePanelLayout.createSequentialGroup()
                .addContainerGap()
                .addComponent(jScrollPane1, javax.swing.GroupLayout.DEFAULT_SIZE, 349, Short.MAX_VALUE))
        );

        sideTabs.addTab("tab1", tabOnePanel);

        javax.swing.GroupLayout tabTwoPanelLayout = new javax.swing.GroupLayout(tabTwoPanel);
        tabTwoPanel.setLayout(tabTwoPanelLayout);
        tabTwoPanelLayout.setHorizontalGroup(
            tabTwoPanelLayout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING)
            .addGap(0, 186, Short.MAX_VALUE)
        );
        tabTwoPanelLayout.setVerticalGroup(
            tabTwoPanelLayout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING)
            .addGap(0, 360, Short.MAX_VALUE)
        );

        sideTabs.addTab("tab2", tabTwoPanel);

        FileMenu.setText("File");

        setWorkspace.setText("Set Workspace");
        setWorkspace.addActionListener(new java.awt.event.ActionListener() {
            public void actionPerformed(java.awt.event.ActionEvent evt) {
                workspaceLocation(evt);
            }
        });
        FileMenu.add(setWorkspace);

        importItem.setText("Import");

        importArc.setText("Arc Grid");
        importArc.addActionListener(new java.awt.event.ActionListener() {
            public void actionPerformed(java.awt.event.ActionEvent evt) {
                getArcGrid(evt);
            }
        });
        importItem.add(importArc);

        FileMenu.add(importItem);

        Save.setText("Save As");

        saveProj.setText("Save Project");
        Save.add(saveProj);

        saveGrid.setText("Save Grid");
        Save.add(saveGrid);

        FileMenu.add(Save);

        jMenuBar1.add(FileMenu);

        EditMenu.setText("Edit");
        jMenuBar1.add(EditMenu);

        setJMenuBar(jMenuBar1);

        javax.swing.GroupLayout layout = new javax.swing.GroupLayout(getContentPane());
        getContentPane().setLayout(layout);
        layout.setHorizontalGroup(
            layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING)
            .addGroup(javax.swing.GroupLayout.Alignment.TRAILING, layout.createSequentialGroup()
                .addComponent(jPanel1, javax.swing.GroupLayout.DEFAULT_SIZE, javax.swing.GroupLayout.DEFAULT_SIZE, Short.MAX_VALUE)
                .addPreferredGap(javax.swing.LayoutStyle.ComponentPlacement.RELATED)
                .addComponent(sideTabs, javax.swing.GroupLayout.PREFERRED_SIZE, 193, javax.swing.GroupLayout.PREFERRED_SIZE)
                .addContainerGap())
        );
        layout.setVerticalGroup(
            layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING)
            .addGroup(javax.swing.GroupLayout.Alignment.TRAILING, layout.createSequentialGroup()
                .addGroup(layout.createParallelGroup(javax.swing.GroupLayout.Alignment.TRAILING)
                    .addComponent(jPanel1, javax.swing.GroupLayout.DEFAULT_SIZE, javax.swing.GroupLayout.DEFAULT_SIZE, Short.MAX_VALUE)
                    .addComponent(sideTabs, javax.swing.GroupLayout.DEFAULT_SIZE, 390, Short.MAX_VALUE))
                .addContainerGap())
        );

        pack();
    }// </editor-fold>

    private void workspaceLocation(java.awt.event.ActionEvent evt) {                                   
         events.setWorkspace();
         isWorkspace = events.workspace();
         if (isWorkspace == true) {
            wDir = events.getWorkspace();
         }
         
    }                                  

    //********************************
    //********************************

   //Routine countaining addition of container to jScrollPane
   //The ArcGridImporter class just imports an ArcAscii grid puts some details in an array and provides getter methods for retrieving the file and its details.

   //*********************************
   //*********************************

    private void getArcGrid(java.awt.event.ActionEvent evt) {                            
        ArcGridImporter gridGetter = new ArcGridImporter();
        gridGetter.fileGrab();
        if (gridGetter.getGridThere() == false) {
            gridGetter.importFile(); 
            fileStore.setFileOne(gridGetter.getFile());
            fileStore.setDetails(gridGetter.getDetails());
            fileStore.setFileStorage();
            gridNameContainer = new Container();
            gridNameContainer.setLayout(new FlowLayout(FlowLayout.CENTER));
            gridNameContainer.setSize(jScrollPane1.getSize());
            
            compA = gridNameContainer.getComponents();
            for(int i=0;i<compA.length;i++) {
                gridNameContainer.remove(compA);
}
gridDisplay = new FileMenu(gridNameContainer, fileStore);
jScrollPane1.setViewportView(gridNameContainer);


}
this.repaint();

}

public void addToScrollPane(JTree tree) {
// jScrollPane1.add(tree);
//tabOnePanel.repaint();
System.out.println("MADE IT: panel");
}


// Variables declaration - do not modify
private javax.swing.JMenu EditMenu;
private javax.swing.JMenu FileMenu;
private javax.swing.JMenu Save;
private javax.swing.JMenuItem importArc;
private javax.swing.JMenu importItem;
private javax.swing.JMenuBar jMenuBar1;
private javax.swing.JPanel jPanel1;
private javax.swing.JScrollPane jScrollPane1;
private javax.swing.JMenuItem saveGrid;
private javax.swing.JMenuItem saveProj;
private javax.swing.JMenuItem setWorkspace;
private javax.swing.JTabbedPane sideTabs;
private javax.swing.JPanel tabOnePanel;
private javax.swing.JPanel tabTwoPanel;
// End of variables declaration


}
Code for the Creation of buttons and adding to the container held within the scrollpane
package modelgui;

import java.awt.*. *;
java.awt.event import. *;
Javax.swing import. *;
Javax.swing.tree import. *;


SerializableAttribute public class FileMenu extends JPanel {}

Container gridNameContainer;
CurrentFileStore fileStore;
Dimension butDim = new size (120, 70);

public FileMenu (gridNameContainer, fileStore CurrentFileStore container) {}
this.gridNameContainer = gridNameContainer;
gridNameContainer.repaint ();
this.fileStore = fileStore;
Object [Details] = fileStore.getDetailsStore ();
int counter = 0;

While (details [meter]! = null) {}
List of strings [] = (String []) details [counter];
String gridName = list [0];

addButtons (gridName);
counter ++;
width int = gridNameContainer.getWidth ();
int height = (int) (butDim.getHeight () + 30);
Dimension panDim = new size (width, (height * meter));
gridNameContainer.setPreferredSize (panDim);

}

}

{} private void addButtons (String gName)

The button but = new Button();
but.setLabel (gName);
but.setBackground (Color.lightGray);
but.setForeground (Color.BLACK);
but.setPreferredSize (butDim);
gridNameContainer.add (purpose);

}

}
Edited by: 801531 on 11-Oct-2010 08:57                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        

Forward Swing related questions should be posted in the forum of Swing.

Button but = new Button();

The AWT components are painted on top of Swing components. "Button" is a component AWT. The button "J" is a Swing component. "."

Tags: Java

Similar Questions

  • Why do I get problems with the challenges of poker Facebook poker?

    Why do I get problems with the challenges on facebook poker? have reloaded JAVA.didn't work

    URL of affected sites

    http://

    I'm not sure what that requires the application of poker, but perhaps solutions in the article of problems with some Facebook games, cat and more will help

  • I upgraded to FF 32.0.2 and just get "Problem loading Page" all the site not working in Internet Explorer. Tried to reboot &amp; download again - no luck

    Any Web page, I try to access since I downloaded the latest version of FF, they do not load. All I get is the error message "problem loading Page connection has expired.

    The server to smile.amazon.com takes too long to respond.

       The site could be temporarily unavailable or too busy. Try again in a few moments.
       If you are unable to load any pages, check your computer's network connection.
       If your computer or network is protected by a firewall or proxy, make sure that Firefox is permitted to access the Web.
    

    I cannot access these pages in IE - just FF - and immediately after that I installed FF 32.0.2

    I have tried to reboot and same reinstall - but can't access anything on FF.

    Hello, normally these problems are caused by a security/firewall software which does not recognize and therefore blocks the new versions of firefox. If please delete all the rules of the program for firefox to your firewall and let it detect the new version of the browser again.

    Difficulty of problems connecting to websites after Firefox update

  • When I click for + new faucet I get problem loading page?

    Whenever I click on the + on a new faucet, I get an error message "problem loading Page". I just installed FireFox 30 for the 1st time, I had been using Chrome! -Tks for any help David

    I decided to re download and then reinstall FireFox and everything seems to work fine now! TKS for any help, David

  • On Firefox only, I get problems with a few Joomla sites using the JA_purity template. Error: has not been loaded because its MIME type "text/html", is not "text /".

    Hello

    I updated Firefox on my computer for 13.01. Now, he struggles to read about 2 sites - both are Joomla and based on the model of JA-purity. What happens is that it fails to load the CSS files to do with the side and the top of the Joomla site menus. The file comes up with this:

    because its MIME type "text/html", is not "text/css".
    Source file: http://extensions.joomla.org/
    Line: 0

    This error does not appear with other browsers and it displays perfectly in fact in all other browsers.

    I'm new on this but I read the following article and think it could be my problem

    https://developer.Mozilla.org/en/Incorrect_MIME_Type_for_CSS_Files

    Where Im stuck, it's that I did not fully understand what to make of this article, if I could get a step by step guide to fix this problem that would be greatly appreciated.

    I apologize in advance if the answer lies somewhere here - I have had a look and couldn't get out.

    Thank you
    Alex

    I don't see that the error and all style sheets seem to load.

    Reload Web pages, and ignore the cache.

    • Hold SHIFT and click reload.
    • Press 'Ctrl + F5' or 'Ctrl + Shift + R' (Windows, Linux)
    • Press 'Cmd + Shift + R' (MAC)

    Clear the cache and cookies from sites that cause problems.

    "Clear the Cache":

    • Tools > Options > advanced > network > storage (Cache) offline: 'clear now '.

    'Delete Cookies' sites causing problems:

    • Tools > Options > privacy > Cookies: "show the Cookies".
  • HP all-in-one 4620: uninstalled 4620 printer but getting 'problem starting HPStatusBl.dll' notice at startup.

    I uninstalled the printer software HP 4620 on my HP computer running Windows 8.1. When you start the computer, I get the message "error loading c:\programfiles\hp\hpofficejet4620series\bin\hpstatusbl.dll" window message

    Hey @SteveJG,

    I would like to help you today to solve the 'problem starting HPStatusBL.dll' message that you get on your computer Windows 8.1. I understand that the uninstall your HP Officejet 4620 e-all-in-one printer has not made a difference. Just so you know, this error message is for a 'service' that Windows is trying to start it's related to the HP device. I just go and delete this file manually. Please follow the steps below.

    1. Open the Start screen by selecting the Windows button in the bottom left of your computer screen, or by clicking the Windows button in the bottom left of the keyboard, to the right of the Ctrl key.
    2. When the splash screen opens, type computer (can show that This PC)
    3. Click on the computer (or PC) to start the window
    4. When the computer window opens, click on the Drive C
    5. Click on users
    6. Click on your user name
    7. Select AppData
    8. Select roaming
    9. Select Microsoft
    10. Select Windows
    11. Select the Start Menu
    12. Select programs
    13. Finally, click Start
    14. You will see a shortcut here to monitor alerts - ink HP xxxxx. Right click on this and 'Remove' it.

    Once the file monitor ink Alters has been removed, restart your computer to verify that the problem has been resolved.

    Please reply to this message with the result of your troubleshooting. Good luck!

  • I m get problem when running IE, Chrome or firefox

    Signature of the problem:
    Problem event name: APPCRASH
    Application name: rundll32.exe
    Application version: 6.0.6000.16386
    Application timestamp: 4549b0e1
    Fault Module name: sprote ~ 1.dll
    Fault Module Version: 0.0.0.0
    Timestamp of Module error: 50212e17
    Exception code: c0000005
    Exception offset: 00079aed
    The system version: 6.0.6002.2.2.0.768.3
    Locale ID: 16393
    Additional information 1 c: 649
    More information 2: 2d993315539d1b4488dfdd4c43482412
    3 more information: bde9
    Additional information 4: e8c962f1cadf8af02e768e3862dcb56c
    Read our privacy statement:
    http://go.Microsoft.com/fwlink/?LinkId=50163&clcid=0x0409

    Signature of the problem:
    Problem event name: APPCRASH
    Application name: iexplore.exe
    Application version: 9.0.8112.16450
    Application timestamp: 503723f6
    Fault Module name: ntdll.dll
    Fault Module Version: 6.0.6002.18541
    Timestamp of Module error: 4ec3e3d5
    Exception code: c0000005
    Exception offset: 00039487
    The system version: 6.0.6002.2.2.0.768.3
    Locale ID: 16393
    Additional information 1: c453
    More information 2: abcc8f7853b48d9807d6d51eb1fa5df9
    Additional information 3: c453
    Additional information 4: abcc8f7853b48d9807d6d51eb1fa5df9
    Read our privacy statement:
    http://go.Microsoft.com/fwlink/?LinkId=50163&clcid=0x0409
     

    Signature of the problem:
    Problem event name: BEX
    Application name: chrome.exe
    Application version: 21.0.1180.89
    Application timestamp: 503ebf10
    Fault Module name: StackHash_2d77
    Fault Module Version: 0.0.0.0
    Fault Module Timestamp: 00000000
    Exception offset: 2028ad6b
    Exception code: c0000005
    Exception data: 00000008
    The system version: 6.0.6002.2.2.0.768.3
    Locale ID: 16393
    Additional information 1 / 2d 77
    More information 2: 0f87f8924e80c4cc111b410bf65df663
    Information has additional 3: 408
    Additional information 4: a747d84ca122d3999f6adb84ba0cb3d8
    Read our privacy statement:
    http://go.Microsoft.com/fwlink/?LinkId=50163&clcid=0x0409

    These are the messages of problem I m get... Please help me what I have to do...
    Thank you

    Hi Raja DSP,

    1. what version of IE are you using?

    2 did you do changes on the computer before the show?

    Follow the suggestions below for a possible patch with Internet Explorer:

    Method 1: I suggest you to run the fix - it and check if the problem still persists.

    Troubleshoot Internet Explorer to IE quick, safe and stable

    http://support.Microsoft.com/mats/ie_performance_and_safety/

     

    Method 2: If the method above is not enough you can follow the steps in the article mentioned below and check.

     

    Tips for solving problems when Internet Explorer hangs or stops working

    http://Windows.Microsoft.com/en-us/Windows-Vista/tips-for-solving-problems-with-Internet-Explorer

    Warning: Please note that the reset Internet Explorer (IE) resets all of the settings defined by the user, including those established by the installed extensions, toolbars and other add-ons for IE by default. This includes all the security, privacy and settings area. Also this will erase browsing history, delete all temporary Internet, cookies, form data files and especially all the passwords.

    If you have problems with Google Chrome and Mozilla Firefox, you see the following link for their respective forums:

    Google Chrome

    http://www.Google.com/support/chrome/

     

    Mozilla Firefox

    http://support.Mozilla.com/en-us/home

    Let us know if that helps.

  • PowerCLI getting problem of batch file args

    Hello

    I'm stuck.

    I am trying to create a .cmd file to remove a VMDK file.

    ex: vm viserver delete.cmd ' SEQDEV9/SEQDEV9_1.vmdk [TEST_Sequence_Dev] '.

    Delete.cmd

    off @echo
    VCENTER REM = %1
    REM VM = %2 = name of the VM
    Hard disk REM = %3 = path and name of the disk

    PowerShell.exe - command "&"C:\Users\malabelle\Desktop\tests\delete-vmdk\delete-vmdk.ps1"%1 %2 %3.

    Remove - vmdk.ps1

    Add-PSSnapin "Vmware.VimAutomation.Core".

    $Vcenter = $args [0]
    SE connect-VIserver $Vcenter | Out-Null

    $VM = $args [1]
    $HardDisk = $args [2]
    $status is (get - VM $VM). PowerState

    If ($status - eq "PoweredOff")
    {Get-disk hard - VM $VM |} Where {$_.} Filename - eq $HardDisk} | {Remove-disk hard - DeletePermanently-confirm: $false}
    else {"Please close the machine to proceed"}

    When I run it manually:

    Get-disk hard - VM SEQDEV9 | Where {$_.} {Filename - eq ' [TEST_Sequence_Dev] SEQDEV9/SEQDEV9_1.vmdk "} | Remove-disk hard - DeletePermanently-confirm: $false

    This works.

    When I run with the batch file, it connects to the viserver, take 3 seconds and nothing (return to the command prompt)

    Any idea?

    The problem is caused by the test to white in the vmdk file name.

    Try calling your cmd like this (apostrophes inside the double qoutes for the third argument).

    VM viserver Delete.cmd "" SEQDEV9/SEQDEV9_1.vmdk [TEST_Sequence_Dev]»"

  • When I try to copy something to my CD, I get problem with the copy.

    I have a small pop-up that says problem, cannot copy and options retry or cancel. can anyone help?

    I have a small pop-up that says problem, cannot copy and options retry or cancel. can anyone help?

    ======================================
    I guess you are trying to add extra files on the CD?

    What type of CD you use and how it is formatted?

    Personally, I find the following useful freeware
    to create data CDs and he works for several sessions.

    (FWIW... it's always a good idea to create a system)
    Restore point before installing software or updates)

    DeepBurner Free
    http://www.DeepBurner.com/index.php also... the following links may offer a few ideas:

    (982116) your CD or DVD drive is missing
    or is not recognized by Windows or other programs
    http://support.Microsoft.com/kb/982116
    (Windows XP / Windows Vista / Windows 7)

    Your CD or DVD drive cannot read or write media
    http://support.Microsoft.com/mats/cd_dvd_drive_problems/en-us

    If you continue to experience errors... There is a possibility
    that drive a need for maintenance or replacement.

  • I can't get windows vista at startup I get problem event startupRepair in offline mode and will not let me get on the computer

    When I try to turn on the computer it gives me a message of startup repair. There are a few problem signatures read like this

    The problem StartupRepairOffline event name

    Hi GwenBenson,

    1 have you tried running the Startup Repair tool?

    2. when the problem started?

    3. did you of recent changes to the computer?

    4. are you able to boot in safe mode?

    Method 1:

    Step 1: You can check if you can boot into safe mode.

    Start your computer in safe mode

    Step 2:

    If you can boot into safe mode without any problem, then you can try to perform a restore of the system to a restore point before you have been affected by the problem and check.

    Note: When you perform the system restore to restore the computer to a previous state, programs and updates that you have installed are removed.

    To run the system restore, you can consult the following link:

    System restore

    System Restore: frequently asked questions

    Method 2:

    Alternatively, you can try using the last known good configuration and check. It's a Windows startup option that uses the most recent system settings that worked correctly.

    For more information, you can consult the following article:

    Using the last good known Configuration

    Hope this information is useful.

  • Anyone having problems to install the Windows 10? I keep getting problems with the "write privileges.

    I try to install CS6 on my new laptop (windows 10) and I downloaded the installation from Adobe (MasterCollection_CS6_LS16 and a MasterCollection_CS6_LS16) files.

    However when I click the .exe to start the installation, it keeps prompting me that she struggles with write rights and it cannot even unpack and install file... Help!

    Cloud & Win10 https://helpx.adobe.com/creative-cloud/kb/Windows_10_compatibility_FAQ.html

    -In addition, only CURRENT products will be tested and updated for compatibility with Windows 10

    - so if you have an older program, update you to Windows 10 at YOUR risk of problems

    An idea that MAY work to install or run some programs in Windows 10 old... works for some, not for others

    -http://www.tenforums.com/tutorials/15523-compatibility-mode-settings-apps-change-windows-1 0 - a.html

    Do run as that administrator http://forums.adobe.com/thread/969395 [said again and also to Adobe all emissions] will be sometimes correct errors "odd" or "authorization" in Windows

  • I keep getting problems with the EULA.

    Any time I try to open a PDF file I get "Before displaying PDF documents in the browser, you must launch Adobe Reader and accept the end user license agreement, and then quit and relaunch the browser."

    How can I fix it? What is c? I use a Mac.

    Have you tried to open the drive in the applications folder and accepting the agreement?

  • I am getting problem in beyluxe. When I try to connect it says invalid login

    I have installed beyluxe in the virtual machine from windows xp and when I tried to open a session says invalid connection.

    Hi Muhammhad,

    I suggest you to contact Beluxe Messenger.

    Please click the link below,

    http://Messenger.Beyluxe.com/contact.php

  • The cumulative value of a week getting problem defined by the user

    I have a requirement where I have to cumulative values by week where a week is defined as from Sunday to Saturday. For example:
    date           value     acc_value          
    9/1/2010     2     2          Wed     
    9/2/2010     5     7          Thur     
    9/3/2010     3     10          Fri     
    9/4/2010     4     14          Sat     
    9/5/2010     8     8          Sun     value is reset
    9/6/2010     2     10          Mon     
    9/7/2010     1     11         Tue     
    9/8/2010     4     15         Wed     
    9/9/2010     7     22         Thu     
    9/10/2010     4     26          Fri     
    9/11/2010     5     31         Sat     
    Any help would be appreciated.

    Thank you.

    Try this:

    with my_table as (select to_date('01/09/2010', 'dd/mm/yyyy') dt, 2 value from dual union all
                      select to_date('02/09/2010', 'dd/mm/yyyy') dt, 5 value from dual union all
                      select to_date('03/09/2010', 'dd/mm/yyyy') dt, 3 value from dual union all
                      select to_date('04/09/2010', 'dd/mm/yyyy') dt, 4 value from dual union all
                      select to_date('05/09/2010', 'dd/mm/yyyy') dt, 8 value from dual union all
                      select to_date('06/09/2010', 'dd/mm/yyyy') dt, 2 value from dual union all
                      select to_date('07/09/2010', 'dd/mm/yyyy') dt, 1 value from dual union all
                      select to_date('08/09/2010', 'dd/mm/yyyy') dt, 4 value from dual union all
                      select to_date('09/09/2010', 'dd/mm/yyyy') dt, 7 value from dual union all
                      select to_date('10/09/2010', 'dd/mm/yyyy') dt, 4 value from dual union all
                      select to_date('11/09/2010', 'dd/mm/yyyy') dt, 5 value from dual)
    -- end of mimicking your data in a table called my_table
    select dt,
           value,
           sum(value) over (partition by trunc(dt+1, 'iw') order by dt) acc_value,
           to_char(dt, 'dy') dy
    from   my_table
    order by dt;
    
    DT              VALUE  ACC_VALUE DY
    ---------- ---------- ---------- ---
    01/09/2010          2          2 wed
    02/09/2010          5          7 thu
    03/09/2010          3         10 fri
    04/09/2010          4         14 sat
    05/09/2010          8          8 sun
    06/09/2010          2         10 mon
    07/09/2010          1         11 tue
    08/09/2010          4         15 wed
    09/09/2010          7         22 thu
    10/09/2010          4         26 fri
    11/09/2010          5         31 sat
    
  • problem loading page (404 error) it says that the page cannot be found when I try to access the game gangsters through my mysapce account and I can not access is no longer with firefox and I want to know why I can't, guys please can you get?

    I can't access my account of gangsters through myspace. «whenever I try to open it I get "problem loading page" "404 error" "this page cannot be found" and it won't let me access it.» MySpace works fine, but as soon as I click on the application of gangsters I get the 404 error, this page could not be found, problem loading page! can you please help?

    This has happened

    Each time Firefox opened

    == I am trying to access game of gangsters through myspace

    The problem can be solved by opening FF and choose the tools... To Add one... Select the SEARCH addon, then choose UNINSTALL FF browser... When asked to restart, then reload the gangsters. It worked for me. The suggestion on the 404 that says to remove the search via Add/Remove programs is completely BS, that research does not appear there.

Maybe you are looking for

  • Verizon said I can be faced with one problem with my browser and don't charge but ATT, gmail and other

    Tried loading Verizon homepage, but it says I can be faced with a problem with my browser. ATT, gmail between other fine load and Verizon was very well for some time now, what should I do? I'm not tech savvy so please keep it simple for me, thank you

  • Cursor crazy

    I am a journalist and typing very quickly, usually using an Apple Mac.I have just started using a Toshiba netbook on the move and am pleased that it aside from the crazy jumping cursor.I will be typing in full skin only to discover that the cursor ju

  • Satellite A660-10W with HDCP support

    Hello guys,. I have the A660-10W and want to download iTune HD moviesHe said: I need to have a video driver with HDCP (support?) but I don't know, and I do not understand what it is.I would appreciate your help - as you have done very well in the pas

  • Graphics update rate waveform

    Hello I have a request I'm two signals to measure voltage in and feeding these signals to the mask and limit test VI to check if the signals are at your fingertips. I want to have 1000 samples7sec (1 kHz sampling frequency). The software works well b

  • Updated the Windows 10 Qualcomm AR9485 Atheros Wifi Card Driver

    Currently, I encounter a similar problem with my HP Envy 17 Qualcomm AR9485 Atheros wifi adapter. The ethernet connection works but not WiFi. I can only connect to wifi after I immediatnly reset my router. All other devices work with the router. If t