Challenge for all you great programmers out there...i need help!

Okay, my name is Tom. I am attending a small private
college where the computer program is very small. There are
no Java professors or any professors with any experience.
The library has only 3 beginner books on Java as well. So,
for my extremely ambitious Internal Internship Project I
need some help. I have taken a beginner course and am very
apt to learning, so this shouldn't be over my head. Now to
the project:
GUI
I have envisioned a utility automation program. Basically,
There is 1 main pane in the GUI. I have already designed it
but am open to suggestions. It consists of the important
parts: The utilty buttons (on the left), the textArea (in
the middle), and checkboxes (on the right). When opening
the program, the textArea will simply display instructions
on how to use the program. There will be as many buttons as
utilities there are (for now i am experimenting with
defrag), and the checkboxes will be aligned with the
utility buttons but to the right of the textArea.
Function
When each utility button is clicked, a description of the
utility comes up in the textArea. If you decide to use it
then check the appropriate checkbox to the right of the
textArea. Once you choose all the utilities that you want
to do, then you hit the start button.
Execution
This will automate all of the programs so you can leave and
come back.
Things needed
I need to know how to import text files to the textArea,
how to program the textAreas to come up, and one final
thing for now. I will have to somehow set the parameters to
those applications automatically (Ex: "what drive to
defrag"). So, my first thought would be create a popup
window that asks for all of the parameters needed for each
utility, define those values as variables, and then when
the utilities ask for them in the automation feed them the
variables.
I have put about 25 hours into making the GUI, and
designing the structure. I need a ton of help if I want to
get this done. I am using Netbeans for convenience but I'm
not sure i know how to insert custom code.
Any help the ANYONE can give me would be extremely
appreciated.
Thanks to all, and have a great day.
Tom

Here is my code for my GUI
* JFMainMenu.java
* Created on February 10, 2008, 10:16 PM
package internshipproject;
* @author admin
public class JFMainMenu extends javax.swing.JFrame {
/** Creates new form JFMainMenu */
public JFMainMenu() {
initComponents();
/** 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();
JBTomPic = new javax.swing.JButton();
jScrollPane1 = new javax.swing.JScrollPane();
jTextPane1 = new javax.swing.JTextPane();
jScrollPane2 = new javax.swing.JScrollPane();
jTextPane2 = new javax.swing.JTextPane();
jScrollPane3 = new javax.swing.JScrollPane();
JTPHeader = new javax.swing.JTextPane();
jSeparator1 = new javax.swing.JSeparator();
jLabel1 = new javax.swing.JLabel();
jLabel2 = new javax.swing.JLabel();
jLabel3 = new javax.swing.JLabel();
jButton1 = new javax.swing.JButton();
jButton2 = new javax.swing.JButton();
jButton3 = new javax.swing.JButton();
jCheckBox1 = new javax.swing.JCheckBox();
jCheckBox2 = new javax.swing.JCheckBox();
jCheckBox3 = new javax.swing.JCheckBox();
jButton4 = new javax.swing.JButton();
jButton5 = new javax.swing.JButton();
jTextField1 = new javax.swing.JTextField();
setDefaultCloseOperation(javax.swing.WindowConstants.EXIT_ON_CLOSE);
setResizable(false);
jPanel1.setBackground(new java.awt.Color(0, 0, 0));
JBTomPic.setBackground(new java.awt.Color(0, 0, 0));
JBTomPic.setIcon(new javax.swing.ImageIcon("C:\\Documents and Settings\\All Users\\Documents\\My Pictures\\Sample Pictures\\TomBorder.jpg")); // NOI18N
JBTomPic.setActionCommand("AboutMe\n");
JBTomPic.setBorderPainted(false);
JBTomPic.setContentAreaFilled(false);
JBTomPic.addActionListener(new java.awt.event.ActionListener() {
public void actionPerformed(java.awt.event.ActionEvent evt) {
JBTomPicActionPerformed(evt);
jTextPane1.setBackground(new java.awt.Color(0, 0, 0));
jTextPane1.setBorder(null);
jTextPane1.setEditable(false);
jTextPane1.setFont(new java.awt.Font("Comic Sans MS", 3, 40));
jTextPane1.setForeground(new java.awt.Color(255, 255, 255));
jTextPane1.setText(" Just start it up, then go to lunch!");
jTextPane1.setCaretColor(new java.awt.Color(0, 51, 51));
jScrollPane1.setViewportView(jTextPane1);
jTextPane2.setBackground(new java.awt.Color(0, 0, 0));
jTextPane2.setBorder(null);
jTextPane2.setEditable(false);
jTextPane2.setFont(new java.awt.Font("Comic Sans MS", 3, 26));
jTextPane2.setForeground(new java.awt.Color(255, 255, 255));
jTextPane2.setText(" An amazing program that automates your computer maintainance applications!");
jScrollPane2.setViewportView(jTextPane2);
JTPHeader.setBackground(new java.awt.Color(0, 0, 0));
JTPHeader.setBorder(null);
JTPHeader.setEditable(false);
JTPHeader.setFont(new java.awt.Font("Comic Sans MS", 3, 20));
JTPHeader.setForeground(new java.awt.Color(255, 255, 255));
JTPHeader.setText(" Welcome to Tom's PC Fix");
jScrollPane3.setViewportView(JTPHeader);
jLabel1.setBackground(new java.awt.Color(51, 51, 0));
jLabel1.setFont(new java.awt.Font("Tahoma", 1, 20));
jLabel1.setForeground(new java.awt.Color(255, 255, 255));
jLabel1.setText("Choose Your maintainance:");
jLabel2.setBackground(new java.awt.Color(51, 51, 0));
jLabel2.setFont(new java.awt.Font("Tahoma", 1, 20));
jLabel2.setForeground(new java.awt.Color(255, 255, 255));
jLabel2.setText("Check to add to automation:");
jLabel3.setBackground(new java.awt.Color(51, 51, 0));
jLabel3.setFont(new java.awt.Font("Tahoma", 1, 20));
jLabel3.setForeground(new java.awt.Color(255, 255, 255));
jLabel3.setText("Description:");
jButton1.setBackground(new java.awt.Color(255, 255, 255));
jButton1.setFont(new java.awt.Font("Comic Sans MS", 1, 15));
jButton1.setForeground(new java.awt.Color(51, 0, 51));
jButton1.setText("Spybot");
jButton1.setBorderPainted(false);
jButton1.setFocusPainted(false);
jButton1.addActionListener(new java.awt.event.ActionListener() {
public void actionPerformed(java.awt.event.ActionEvent evt) {
jButton1ActionPerformed(evt);
jButton2.setBackground(new java.awt.Color(255, 255, 255));
jButton2.setFont(new java.awt.Font("Comic Sans MS", 1, 15));
jButton2.setForeground(new java.awt.Color(51, 0, 51));
jButton2.setText("Disk Cleanup");
jButton2.setBorderPainted(false);
jButton2.setFocusPainted(false);
jButton3.setBackground(new java.awt.Color(255, 255, 255));
jButton3.setFont(new java.awt.Font("Comic Sans MS", 1, 15));
jButton3.setForeground(new java.awt.Color(51, 0, 51));
jButton3.setText("Deframentation");
jButton3.setBorderPainted(false);
jButton3.setFocusPainted(false);
jCheckBox1.setBackground(new java.awt.Color(255, 255, 255));
jCheckBox1.setFont(new java.awt.Font("Comic Sans MS", 1, 12));
jCheckBox2.setBackground(new java.awt.Color(255, 255, 255));
jCheckBox2.setFont(new java.awt.Font("Comic Sans MS", 1, 12));
jCheckBox3.setBackground(new java.awt.Color(255, 255, 255));
jCheckBox3.setFont(new java.awt.Font("Comic Sans MS", 1, 12));
jButton4.setBackground(new java.awt.Color(255, 255, 255));
jButton4.setFont(new java.awt.Font("Comic Sans MS", 1, 20));
jButton4.setText("Start");
jButton5.setBackground(new java.awt.Color(255, 255, 255));
jButton5.setFont(new java.awt.Font("Comic Sans MS", 1, 15));
jButton5.setText("Exit");
jTextField1.setEditable(false);
jTextField1.setText("fcghjdcfhgj");
jTextField1.addActionListener(new java.awt.event.ActionListener() {
public void actionPerformed(java.awt.event.ActionEvent evt) {
jTextField1ActionPerformed(evt);
org.jdesktop.layout.GroupLayout jPanel1Layout = new org.jdesktop.layout.GroupLayout(jPanel1);
jPanel1.setLayout(jPanel1Layout);
jPanel1Layout.setHorizontalGroup(
jPanel1Layout.createParallelGroup(org.jdesktop.layout.GroupLayout.LEADING)
.add(jPanel1Layout.createSequentialGroup()
.add(jScrollPane2, org.jdesktop.layout.GroupLayout.PREFERRED_SIZE, 323, org.jdesktop.layout.GroupLayout.PREFERRED_SIZE)
.addPreferredGap(org.jdesktop.layout.LayoutStyle.RELATED)
.add(JBTomPic, org.jdesktop.layout.GroupLayout.PREFERRED_SIZE, 186, org.jdesktop.layout.GroupLayout.PREFERRED_SIZE)
.addPreferredGap(org.jdesktop.layout.LayoutStyle.RELATED)
.add(jScrollPane1, org.jdesktop.layout.GroupLayout.DEFAULT_SIZE, 320, Short.MAX_VALUE))
.add(jScrollPane3, org.jdesktop.layout.GroupLayout.DEFAULT_SIZE, 841, Short.MAX_VALUE)
.add(org.jdesktop.layout.GroupLayout.TRAILING, jSeparator1, org.jdesktop.layout.GroupLayout.DEFAULT_SIZE, 841, Short.MAX_VALUE)
.add(jPanel1Layout.createSequentialGroup()
.addContainerGap()
.add(jLabel1, org.jdesktop.layout.GroupLayout.PREFERRED_SIZE, 277, org.jdesktop.layout.GroupLayout.PREFERRED_SIZE)
.add(71, 71, 71)
.add(jLabel3)
.addPreferredGap(org.jdesktop.layout.LayoutStyle.RELATED, 66, Short.MAX_VALUE)
.add(jLabel2)
.addContainerGap())
.add(org.jdesktop.layout.GroupLayout.TRAILING, jPanel1Layout.createSequentialGroup()
.add(jPanel1Layout.createParallelGroup(org.jdesktop.layout.GroupLayout.LEADING)
.add(jPanel1Layout.createSequentialGroup()
.add(30, 30, 30)
.add(jPanel1Layout.createParallelGroup(org.jdesktop.layout.GroupLayout.LEADING, false)
.add(jButton3, org.jdesktop.layout.GroupLayout.DEFAULT_SIZE, org.jdesktop.layout.GroupLayout.DEFAULT_SIZE, Short.MAX_VALUE)
.add(jButton2, org.jdesktop.layout.GroupLayout.DEFAULT_SIZE, org.jdesktop.layout.GroupLayout.DEFAULT_SIZE, Short.MAX_VALUE)
.add(jButton1, org.jdesktop.layout.GroupLayout.DEFAULT_SIZE, org.jdesktop.layout.GroupLayout.DEFAULT_SIZE, Short.MAX_VALUE))
.add(133, 133, 133)
.add(jTextField1, org.jdesktop.layout.GroupLayout.PREFERRED_SIZE, 339, org.jdesktop.layout.GroupLayout.PREFERRED_SIZE))
.add(jPanel1Layout.createSequentialGroup()
.add(349, 349, 349)
.add(jButton4, org.jdesktop.layout.GroupLayout.PREFERRED_SIZE, 143, org.jdesktop.layout.GroupLayout.PREFERRED_SIZE)))
.addPreferredGap(org.jdesktop.layout.LayoutStyle.RELATED, 113, Short.MAX_VALUE)
.add(jPanel1Layout.createParallelGroup(org.jdesktop.layout.GroupLayout.LEADING)
.add(jPanel1Layout.createParallelGroup(org.jdesktop.layout.GroupLayout.TRAILING)
.add(jCheckBox1)
.add(jCheckBox3)
.add(jCheckBox2))
.add(jButton5))
.add(21, 21, 21))
jPanel1Layout.setVerticalGroup(
jPanel1Layout.createParallelGroup(org.jdesktop.layout.GroupLayout.LEADING)
.add(org.jdesktop.layout.GroupLayout.TRAILING, jPanel1Layout.createSequentialGroup()
.add(jScrollPane3, org.jdesktop.layout.GroupLayout.PREFERRED_SIZE, org.jdesktop.layout.GroupLayout.DEFAULT_SIZE, org.jdesktop.layout.GroupLayout.PREFERRED_SIZE)
.add(7, 7, 7)
.add(jPanel1Layout.createParallelGroup(org.jdesktop.layout.GroupLayout.LEADING)
.add(jScrollPane2, org.jdesktop.layout.GroupLayout.DEFAULT_SIZE, 183, Short.MAX_VALUE)
.add(jPanel1Layout.createParallelGroup(org.jdesktop.layout.GroupLayout.LEADING, false)
.add(jScrollPane1)
.add(JBTomPic, org.jdesktop.layout.GroupLayout.PREFERRED_SIZE, 183, Short.MAX_VALUE)))
.addPreferredGap(org.jdesktop.layout.LayoutStyle.RELATED)
.add(jSeparator1, org.jdesktop.layout.GroupLayout.PREFERRED_SIZE, 10, org.jdesktop.layout.GroupLayout.PREFERRED_SIZE)
.add(18, 18, 18)
.add(jPanel1Layout.createParallelGroup(org.jdesktop.layout.GroupLayout.BASELINE)
.add(jLabel1)
.add(jLabel2)
.add(jLabel3))
.add(86, 86, 86)
.add(jPanel1Layout.createParallelGroup(org.jdesktop.layout.GroupLayout.LEADING)
.add(jPanel1Layout.createSequentialGroup()
.add(jPanel1Layout.createParallelGroup(org.jdesktop.layout.GroupLayout.LEADING)
.add(jButton1, org.jdesktop.layout.GroupLayout.PREFERRED_SIZE, 44, org.jdesktop.layout.GroupLayout.PREFERRED_SIZE)
.add(jCheckBox1))
.add(62, 62, 62)
.add(jPanel1Layout.createParallelGroup(org.jdesktop.layout.GroupLayout.LEADING)
.add(jCheckBox2)
.add(jButton2, org.jdesktop.layout.GroupLayout.PREFERRED_SIZE, 44, org.jdesktop.layout.GroupLayout.PREFERRED_SIZE))
.add(67, 67, 67)
.add(jPanel1Layout.createParallelGroup(org.jdesktop.layout.GroupLayout.LEADING)
.add(jCheckBox3)
.add(jButton3, org.jdesktop.layout.GroupLayout.PREFERRED_SIZE, 44, org.jdesktop.layout.GroupLayout.PREFERRED_SIZE)))
.add(jTextField1, org.jdesktop.layout.GroupLayout.PREFERRED_SIZE, 318, org.jdesktop.layout.GroupLayout.PREFERRED_SIZE))
.add(53, 53, 53)
.add(jPanel1Layout.createParallelGroup(org.jdesktop.layout.GroupLayout.BASELINE)
.add(jButton4, org.jdesktop.layout.GroupLayout.PREFERRED_SIZE, 41, org.jdesktop.layout.GroupLayout.PREFERRED_SIZE)
.add(jButton5, org.jdesktop.layout.GroupLayout.PREFERRED_SIZE, 36, org.jdesktop.layout.GroupLayout.PREFERRED_SIZE))
.add(58, 58, 58))
org.jdesktop.layout.GroupLayout layout = new org.jdesktop.layout.GroupLayout(getContentPane());
getContentPane().setLayout(layout);
layout.setHorizontalGroup(
layout.createParallelGroup(org.jdesktop.layout.GroupLayout.LEADING)
.add(org.jdesktop.layout.GroupLayout.TRAILING, jPanel1, org.jdesktop.layout.GroupLayout.DEFAULT_SIZE, org.jdesktop.layout.GroupLayout.DEFAULT_SIZE, Short.MAX_VALUE)
layout.setVerticalGroup(
layout.createParallelGroup(org.jdesktop.layout.GroupLayout.LEADING)
.add(jPanel1, org.jdesktop.layout.GroupLayout.DEFAULT_SIZE, org.jdesktop.layout.GroupLayout.DEFAULT_SIZE, Short.MAX_VALUE)
pack();
}// </editor-fold>
private void JBTomPicActionPerformed(java.awt.event.ActionEvent evt) {                                        
// TODO add your handling code here:
private void jButton1ActionPerformed(java.awt.event.ActionEvent evt) {                                        
// TODO add your handling code here:
private void jTextField1ActionPerformed(java.awt.event.ActionEvent evt) {                                           
// TODO add your handling code here:
* @param args the command line arguments
public static void main(String args[]) {
java.awt.EventQueue.invokeLater(new Runnable() {
public void run() {
new JFMainMenu().setVisible(true);
// Variables declaration - do not modify
private javax.swing.JButton JBTomPic;
private javax.swing.JTextPane JTPHeader;
private javax.swing.JButton jButton1;
private javax.swing.JButton jButton2;
private javax.swing.JButton jButton3;
private javax.swing.JButton jButton4;
private javax.swing.JButton jButton5;
private javax.swing.JCheckBox jCheckBox1;
private javax.swing.JCheckBox jCheckBox2;
private javax.swing.JCheckBox jCheckBox3;
private javax.swing.JLabel jLabel1;
private javax.swing.JLabel jLabel2;
private javax.swing.JLabel jLabel3;
private javax.swing.JPanel jPanel1;
private javax.swing.JScrollPane jScrollPane1;
private javax.swing.JScrollPane jScrollPane2;
private javax.swing.JScrollPane jScrollPane3;
private javax.swing.JSeparator jSeparator1;
private javax.swing.JTextField jTextField1;
private javax.swing.JTextPane jTextPane1;
private javax.swing.JTextPane jTextPane2;
// End of variables declaration
}

Similar Messages

  • For all the reflection gurus out there

    I need to be able to access protected classes/interfaces and protected methods from another package. I know this completely undermines the entire idea of java�s protection keywords, but I don�t have any other choice. I also understand that this will possibly lock me into a specific VM version and implementation that I can use for my application because it is not part of the java API spec. Having said that I still need it to work. My real goal here is to create my own modal window behavior because Sun�s is not robust enough for our needs.
    I need the following code to work:
    FILE1
    package protect;
    public class Helper {
        public static Object getEventDispatchThreadInstance() {
            return new EventDispatchThread();
    interface Conditional {
        public void evaluate();
    class EventDispatchThread extends Thread {
        void pumpEvents(Conditional condition) {
            condition.evaluate();
    }FILE2
    package my;
    import protect.Helper;
    import java.lang.reflect.*;
    public class MyClass {
        public MyClass() {
            try {
                Class evDispatchThread = Class.forName("protect.EventDispatchThread");
                Class conditional = Class.forName("protect.Conditional");
                Object[] conditionalInstance = {new Object() {
                    public boolean evaluate() {
                        System.out.println("Please work");
                        return false;
                Method method = evDispatchThread.getDeclaredMethod("pumpEvents", new Class[] { conditional });
                method.setAccessible(true);
                method.invoke(Helper.getEventDispatchThreadInstance(),
                    conditionalInstance);  // This throws an IllegalArgumentException :(    
            } catch (Exception ex) {System.out.println(ex);}
        public static void main(String[] args) {
            MyClass instance = new MyClass();
    }The method.invoke call doesn�t work. I think the problem is because the conditionalInstance is not an instance of protect.Conditional. If protect.Conditional was not protected I would be able to do a cast, but I can�t because the compiler complains about it. How can I create an interface that is protected by using reflection? I also need to have my implementation of the evaluate method be executed when it is called in the pumpEvents call of the EventDispatchThread object.
    If you want a better idea of what I am trying to do in my application you can check out these threads:
    Project Swing->Help with the event dispatch thread
    Project Swing->Modality..what is it good for (absolutely nooothing)
    Thanks
    Lance

    I didn�t say it was the smartest thing to do, but it is either this or rewrite swing or our application to use a different GUI interface. I would rather be able to get this to work. Hey if it isn�t possible it isn�t possible.
    By the way DrClap you might want to find a different language then. You can access several methods that are protected by using reflection. The problems with my code are that it seems like you can�t use reflection to make protected interfaces, you can�t extend protected classes/interfaces, and you can�t cast correctly with these protected objects. The method.setAccessible(true); actually works. Check out the java.lange.reflect.AccessibleObject in the api.
    Lance

  • 2 questions for all the iTunes PROS out there

    I currently have the latest itunes software. I have recently formatted my pc, and need to add all my songs back into the itunes library. I have over 7000 songs all in the general folder
    "Music". I do to File->Add folder to library->Then select that folder. It works for a bit scanning though files asks me to convert some, then it just crashes..... It would take me soooo long to do this folder by folder, does any1 know what is going on?
    Since i have formatted my pc, when i plug my ipod in it says that it has been synced up to another itunes would i like to delete it all, any way around this? Or maybe can i somehow sync my ipod to my itunes, thus fixing the problem in my first question?
    Thx soo much for any help
    Myles

    "Since i have formatted my pc, when i plug my ipod in it says that it has been synced up to another itunes would i like to delete it all, any way around this?"
    When your iPod is set to update automatically you just need take care when connecting back to your computer and an empty iTunes. When you get the message that your iPod is linked to a different library and asking if you want to link to this one and replace all your songs etc, press "Cancel". Pressing "Erase and Sync" will irretrievably remove all songs from your iPod. Your iPod should appear in the iTunes source list from where you can change the update setting to manual and continue to use your iPod without the risk of accidentally erasing it. Check the "manually manage music and videos" box in Summary then press the Apply button: Managing content manually on iPod
    You can also use a keyboard command to prevent your iPod auto-syncing with iTunes. While connecting the iPod to the computer on Windows with iTunes 7 installed hold down the Control and Alt keys (or Shift + Ctrl keys in older versions). This will stop the iPod from auto-syncing with iTunes and the iPod will appear in the source list. Wait until you are sure the iPod has mounted, and that it will not auto sync and then you can let the keys go. This may take between 20 to 30 seconds depending on your computer: iTunes 7 Keyboard Shortcuts for Windows
    "Or maybe can i somehow sync my ipod to my itunes, thus fixing the problem in my first question?"
    If you have any iTMS purchases the transfer of purchased content from the iPod to authorised computers has been introduced with iTunes 7. A paragraph on it has been added to this article: Transfer iTunes Store purchases using iPod
    The transfer of non iTMS content such as songs imported from CD is designed by default to be one way from iTunes to iPod. However there is a manual method of accessing the iPod's hard drive and copying songs back to iTunes on Windows. The procedure is a bit involved but if you're interested it's posted in this thread: MacMuse - iPod to iTunes
    If you prefer something more automated then there are a number of third party utilities that you can use to retrieve the music files and playlists from your iPod. This is just a selection, you'll find that they have varying degrees of functionality and some will transfer movies, videos and photos as well. Have a look at the web pages and documentation, they are generally quite straightforward. You can also read reviews of some of them here: Wired News - Rescue Your Stranded Tunes
    YamiPod Mac and Windows Versions
    iGadget Windows Only
    iPod Access Mac and Windows Versions
    PodUtil Mac and Windows Versions
    iPodCopy Mac and Windows Versions
    PodPlayer Windows Only
    CopyPod Windows Only
    Whichever of these retrieval methods you choose, keep your iPod in manual mode until you have reloaded your iTunes and you are happy with your playlists etc then it will be safe to return it auto-sync again.

  • For all those Opera users out there

    The internet just got a little better.
    opera-adblock (Just ads)
    http://aur.archlinux.org/packages.php?ID=18895
    opera-adblock-complete (Ads, Stats, and Tracking)
    http://aur.archlinux.org/packages.php?ID=18896
    Last edited by georgia_tech_swagger (2008-08-04 21:19:28)

    Just tried it out, works well
    Thanks!

  • Query not working for all the material, may be space problem, need help.

    Hai all,
      I have a query with  variable material and date range. we have 60,000 materials.
    I am doing the report for the month of feb, year 2007.
        When I am executing up to 30,000 material the report is generated, anything beyond 30,000 materials the query is abending with the following message.
    00010004 AFunction aborted 
    SR 044 TSV_TNEW_PAGE_ALLOC_FAILED     
    00010004 ASystem error in program SAPLRSDRC and form TSV_TNEW_PAGE_ALLOC_FAILED ,
    BRAIN 299SAPLRSDRC TSV_TNEW_PAGE_ALLOC_FAILED
    any help in this regard is very much appreciated.
      I am thinking it is a problem with space.But not sure what space it is called?! The basis team saw the temp db and found they have lot of space.
    Thanks, Vijay.

    This tells there is not enough main memory (not disk space) for the program to run.
    - You can look the dump in ST22, it will have suggestions on increasing the ROLLAREA??, you can forward that to Basis.
    - Most likely you will not have any more memory to assign so the above may not be feasible. Try to rework your query so it works with less data.

  • Any veterans out there? Need help with IPVC-3510-MCU

    Hi,
    We've been trying to get this running in hopes of convincing management that we would benefit from a video solution. I recall this product was quite a performer for basic Multi-conferencing so we purchased it off-market.
    Now the problem is finding software! We have the config tool but are struggling to actually setup a conference. The web page seems only to access existing conferences, leaving us in a Catch-22.
    Is there a URL we are missing? Or is it yet another software piece??
    Any help much, much appreciated!
    Thanks,
    Erik

    The 3510 does not have an interface where you can create conferences from. To create the conference, you need to call in from a video terminal. Once the call is created, then you can use a web browser pointed to the IP address of the 3510 to control the conference and invite more participants.

  • HT201303 Do any of you apple geniuses out there know how to retrieve the answers to your security questions or at least reset them?  Apparently its to much for the support team. Can't get an answer out of them...

    Do any of you apple geniuses out there know how to retrieve the answers to your security questions or at least reset them?  Apparently its to much for the support team. Can't get an answer out of them...

    Reset Security Questions
    Frequently asked questions about Apple ID
    Manage My Apple ID
    Or you can email iTunes Support at iTunes Store Support.
    If all else fails:
    Go to: Apple Express Lane;
    Under Product Categories choose iTunes;
    Then choose iTunes Store;
    Then choose Account Management;
    Press Continue;
    Now choose iTunes Store Security and answer the bullet questions, then click Continue;
    Sign in with your Apple ID and press Continue;
    Under Contact Options fill out the information and advise iTunes that you would like your security/challenge questions reset;
    Click Send.
    You should get a response within 24 hours by email.
    Presently there appears to be problems on Apple's end, so it may be quite some time before they respond.
    Another user posted the following:
    I got some help from an apple assistant on the phone.
    It is kind of round about way to get in
    Here is what he said to do and it is working for me...
    1) on the device that is asking you for the security questions go to "settings", > "store" > tap the Apple ID and choose view"Apple ID" and sign in.
    2) Tap on payment information and add a credit/debit card of your preference then select "done", in the upper right corner
    3) sign out and back into iTunes on the device by going to "settings"> "store" > tap the Apple ID and choose "sign-out" > Tap "sign -in" > "use existing Apple ID" and you should be asked to verify your security code for the credit /debit card and NOT the security questions.
    4) At this time you can remove the card by going back in to edit the payment info and selecting "none" as the card type then saving the changes by selecting "done". You should now be able to use your iTunes store credit without answering the security questions.
    It's working for me ...I just have to put in my 3 digit security pin from the credit card I am using.
    Good Luck friends!

  • I'm new to Mac's and I find the display's just slightly too small. I'd like to increase the size for all my program. Is there a single setting that I can change?

    I'm new to Mac's and I find the display's just slightly too small. I'd like to increase the size of my display for all my programs. Is there a single setting that I can change as a default setting?

    You can drop the resolution a little, but it makes everything blurry.
    OS X isn't as friendly like Windows is to give some UI adjustment, one of many major complaints about the platform that has gone unheeded for years now.
    As a lifelong Mac user who's eyes are going due to age, I'm really liking Windows 7 more and more every day.
    If you use Firefox, NoSquint and Theme Font & Size Changer add-ons, with a nice persona that makes better contrast, tweak the FF toolbars, you can at least make your web surfing tolerable on Mac's.
    Also you can set a Control key in System Preferences > Universal Access plus a scroll wheel mouse, if you need to zoom in/out certain areas of OS X, however for a pernament UI scale solution there is none that's practical, unless you have a large room, a projector and a smooth wall.
    A larger monitor won't work up close neither, however dropping the resolution and sitting back a bit might sharpen the images a bit.
    The UI really needs to be adjustable and it's not.

  • When I try to open iPhoto (9.2.1) it says 'You can't use this version of the application iPhoto with this version of OS X.  All my photos are on there.  Please help.  Thank you

    When I try to open iPhoto (9.2.1) it says 'You can't use this version of the application iPhoto with this version of OS X.  All my photos are on there.  Please help.  Thank you.

    Did you upgrade to a new MacOS X version? Then you need to update iPhoto as well.
    Only iPhoto 9.6 is compatible with MacOS X 10.10 Yosemite.  Update from the Mac App Store.
    Backup your iPhoto library, if you do not have a current backup.
    Launch the App Store, click the "Store" menu, and sign in with your current AppleID.
    Check the "Updates" tab of the App Store for an iPhoto update and run the update.
    When you laugh iPhoto after the update, it will warn you, that the library needs upgrading, That may take a while.
    Just in case that you see a warning, that the update is not possible because of an error message: "This update is not available for this Apple ID either because it was bought by a different user or the item was refunded or cancelled."
    Uninstall iPhoto by deleting it from the Applications folder, but do not empty the Trash, so you can put iPhoto back, if need be.
    Launch the App Store, click the "Store" menu, and sign in with your current AppleID.
    Open the main page "Featured" of the App Store and search for iPhoto.
    If iPhoto is listed as "Free", click the "Free" button to buy it with your current AppleID.
    If it is not showing as free, there is no help but contacting the App Store Support to sort out the AppleID. Use this link: http://www.apple.com/support/mac/app-store/contact/

  • Got a question for all you peeps dos anyone know about i phones i have a i phone 3gs which i got unlocked i did a master reset or summin and just had a pic of apple so i plugged it in i tunes downloaded and it now says no service at the top of phone and i

    got a question for all you peeps
    dos anyone know about i phones i have a i phone 3gs which i got unlocked i did a master reset or summin and just had a pic of apple so i plugged it in i tunes downloaded and it now says no service at the top of phone and i tunes says invalid sim i put the correct sim in it used to be locked too and still says same pls any one with ideas?

    hi sorry what happoned is that ages ago i brought a i phone 3gs on 02 network i went to a sml phone shop and payed for them to unlock it. it has been fine till yesterday when i went to reset it from the phone it then turned off and came back on just just an image of a apple for about an hour so i connected to i tunes and it said downloading software after another hr it had finished but then i tunes said in had to insert a sim so i had to un plug the phone from laptop while i did this i put my orange sim in and the i phone said where do i live and had to connect to a internet connection but all the time saying no service where the signal bar is and then says activating i phone it took a few min and said couldnt finish it bec of the signal and to connect it to i tunes to do it so i connected it to itunes and i tunes just keeps saying invalid sim so i took my orange sim out and put a 02 sim in and is still saying invalid sim on itunes?

  • I have an iMac 27" which is 4  years old and probably overdue for a clean-up. Is there any good reliable software out there that would help? Has anyone had any experience of 'Mackeeper'?

    I have an iMac 27" which is 4  years old and probably overdue for a clean-up. Is there any good reliable software out there that would help?
    Has anyone had any experience of 'Mackeeper'?

    Check how many applications are starting when you log in, I found that if there was a lot of activity at login Finder did not display the icons on the desktop correctly, again like you it did not occur at every login, just occasionally.
    For Safari have you tried resetting Safari, if that does not help you could disable plugins and extensions one at a time. You may find one of those is causing the problem.

  • Just for my own privacy i would like to set up a password or pin number on my messgae app is there anything out there that will help me do this please comment if there is a possible solution out there

    Just for my own privacy i would like to set up a password or pin number on my messgae app is there anything out there that will help me do this please comment if there is a possible solution out there. I know alot may say what you have to hide but ive got nothing to hide i just want one on there so my privacy is not broken by friends and family if they fancy playing on my phone and having a snoop round my phone.

    If you visit these forums often, you will read about the 2 year old child who accidentally wiped out the parents phone, the kid who set a passcode and didn't remember what it was, etc etc etc
    Passcode your device.   Protect your device.   It really isn't a toy.    The toy is the iPod touch.

  • Please tell me how can I put Bookmarks for all pages opened in Firefox.There was an option ("bookmark all pages") which vanished.

    Please tell me how can I put Bookmarks for all pages opened in Firefox.There was an option ("bookmark all pages") which vanished.

    It moved to tab contextual menu :
    Right-click on any tab -> Mark all tabs (or something close, my FF is not in english).

  • Is LION OS working well for all you?

    Is LION OS working  well for all you? never thought it could be such a problem, it's the fisrt time it happens to me with an Apple product!. problems with safari, aperture, iphoto, opening/closing windows, right now is so close in performance to all windows versions than Apple high quality products at the level that all we have been expected with the release of Lion. Really dissappointed, and just hope that Apple tech suppor team solves this situation with a new sofware update.

    For most yes, For me definitely yes. I upgraded over SL, used it for a week  or more. Then updated my daughter's i5 MBP. that went well and she is happy. Then I updated my wife's MB Air. now THAT should tell you the confidence I have built in Lion. !!!

  • HT4061 My iphone 4s remains in recovery mode permamently. Itunes wont restore it, constant messages of error 4013 keeps coming up on screen, is there any1 out there who can help before i crack up?

    My iphone 4s remains in recovery mode permamently. Itunes wont restore it, constant messages of error 4013 keeps coming up on screen, is there any1 out there who can help before i crack up?

    Hello Sean,
    It sounds like you are constantly needing to restore your phone because it keeps going into recovery mode. Usually putting a device into recovery mode and restoring it can help isolate an issue to your iPhone hardware if an issue persists afterwards. I would try manually putting it into recovery mode and restoring it 1 more time:
    If you can't update or restore your iOS device
    http://support.apple.com/kb/HT1808
    If that does not resolve it the symptoms indicate to me that it is a hardware issue causing this to happen and would seek service for it:
    iPhone Repair - Other Repairs
    https://www.apple.com/support/iphone/repair/other/
    Thank you for using Apple Support Communities.
    All the best,
    Sterling

Maybe you are looking for

  • How do I remove photos uploaded to iCloud from my iPhone 6 ?

    So I'm wondering how I can keep photos I have uploaded to my iCloud account off my iPhone 6 Plus to free up some disk space. After all, one of the benefits of having cloud storage is to store files remotely so you have more space on your hard drive.

  • Customer aging with minus figers

    dear all, /nzaging_c this the t-code i normally use to make aging report,it give me minus amount(ex:-invoice amount 45000.00 payments 43000.00 it shows 45000-43000) but  i want to make report that balance 2000 only,please help to export report withou

  • Missing cap, number and scroll indicator on monitor

    Help does anyone know how to get the Caps, number and scroll locks display back on to my monitor as for some reason it has disappeared and is a pain as I am not aware whether any have been selected. My computer is HP  P6675UK AND RUNS ON WINDOWS 7 aP

  • Inna - party never ends deluxe version

    inna - party never ends deluxe version album of turkey in the apple store when it can be added ?  Message was edited by: ozgurcanartuner

  • I can't get my search to work

    Every time that I try to search a pdf document for keywords or phrases, it says not found in this document. I have tried typing specific words/phrases that are visible on the current page, only to get the same response. Now I don't particularly want