URGENT - org.gjt.mysql.driver Issues... Please help...

import java.sql.*;
import java.applet.*;
import java.awt.*;
import java.awt.event.*;
public class receiving extends Applet implements ItemListener, ActionListener
Connection conDatabase;//door to the database
Statement cmdDatabase;//messenger
ResultSet rsDatabase;//bucket
private String dbURL = "jdbc:mysql://web6.duc.auburn.edu/?user=gunthms&password=tigers05";
boolean blnSuccessfulOpen = false;
Choice Order_No = new Choice();
TextField txtOrder_No = new TextField(6);
TextField txtCompany = new TextField(20);
TextField txtLocation = new TextField(20);
TextField txtDate_Shipped = new TextField(10);
TextField txtBlack_Poly = new TextField(8);
TextField txtBlue_Poly = new TextField(8);
TextField txtBrass1 = new TextField(8);
TextField txtBrass2 = new TextField(8);
TextField txtTransaction_No = new TextField(8);
TextField txtTracking_No = new TextField(18);
Button btnAdd = new Button("Add");
Button btnEdit = new Button("Save");
Button btnCancel = new Button("Cancel");
Button btnDelete = new Button("Delete");
Button btnNext = new Button(" > ");
Button btnLast = new Button(" >>> ");
Button btnPrevious = new Button(" < ");
Button btnFirst = new Button(" <<< ");
public void init()
//Set up panel and load database
LoadDatabase();
if (blnSuccessfulOpen)
Order_No.insert("Select an Order",0);
add(Order_No);
add(new Label(" "));
Order_No.addItemListener(this);
add(new Label("Order No"));
add(txtOrder_No);
add(new Label("Company"));
add(txtCompany);
add(new Label("Location"));
add(txtLocation);
add(new Label(" "));
add(new Label("Date Shipped"));
add(txtDate_Shipped);
add(new Label(" "));
add(new Label("Black Poly (sqft)"));
add(txtBlack_Poly);
add(new Label("Blue Poly (sqft)"));
add(txtBlue_Poly);
add(new Label("Brass 1inch (pcs)"));
add(txtBrass1);
add(new Label("Brass 2inch (pcs)"));
add(txtBrass2);
add(new Label(" "));
add(new Label("Transaction No"));
add(txtTransaction_No);
add(new Label(" "));
add(new Label("Tracking No"));
add(txtTracking_No);
setTextToNotEditable();
add(new Label(" "));
add(btnAdd);
btnAdd.addActionListener(this);
add(btnEdit);
btnEdit.addActionListener(this);
add(btnDelete);
btnDelete.addActionListener(this);
add(btnCancel);
btnCancel.addActionListener(this);
btnCancel.setEnabled(false);
//Navigate Buttons
add(btnFirst);
btnFirst.addActionListener(this);
add(btnPrevious);
btnPrevious.addActionListener(this);
add(btnNext);
btnNext.addActionListener(this);
add(btnLast);
btnLast.addActionListener(this);
else
System.err.println("Unable to populate fields");
public void LoadDatabase()
try
//Load MySQL drivers
Class.forName("org.gjt.mm.mysql.Driver");
catch ( java.lang.ClassNotFoundException e )
System.err.println("MySQL ORG Package Driver not found ...");
System.err.println(e.getMessage());
/* try
//Load MySQL drivers
Class.forName("com.mysql.jdbc.Driver");
catch ( java.lang.ClassNotFoundException e )
System.err.println("MySQL COM Package Driver not found ...");
System.err.println(e.getMessage());
try
//Connect to the database
conDatabase = DriverManager.getConnection(dbURL);
catch(SQLException error)
System.err.println("Unable to Connect to Database");
try
Statement cmdDatabase = conDatabase.createStatement();
//Create the ResultSet
rsDatabase = cmdDatabase.executeQuery("Select * from gunthmsjv.RECEIVING;");
loadNumbers(rsDatabase);
blnSuccessfulOpen = true;
catch(SQLException error)
System.err.println("Error in recordset");
public void loadNumbers(ResultSet rsDatabase)
//Fill last name list box
try
while(rsDatabase.next())
Order_No.add(rsDatabase.getString("Order_No"));
catch (SQLException error)
System.err.println("Error in Display Record");
public void itemStateChanged(ItemEvent event)
//Retrieve and display the selected record
String strOrder_No = Order_No.getSelectedItem();
showStatus(""); //Delete instructions
try
Statement cmdDatabase = conDatabase.createStatement();
rsDatabase = cmdDatabase.executeQuery(
"Select * from gunthmsjv.RECEIVING where Order_No = '" + strOrder_No + "';");
txtOrder_No.setText(strOrder_No);
displayRecord(rsDatabase);
setTextToEditable();
catch(SQLException error)
showStatus("Error in recordset");
public void displayRecord(ResultSet rsDatabase)
//Display the current record
try
if(rsDatabase.next())
txtOrder_No.setText(rsDatabase.getString("Order_No"));
txtCompany.setText(rsDatabase.getString("Company"));
txtLocation.setText(rsDatabase.getString("Location"));
txtDate_Shipped.setText(rsDatabase.getString("Date_Shipped"));
txtBlack_Poly.setText(rsDatabase.getString("Black_Poly"));
txtBlue_Poly.setText(rsDatabase.getString("Blue_Poly"));
txtBrass1.setText(rsDatabase.getString("Brass1"));
txtBrass2.setText(rsDatabase.getString("Brass2"));
txtTransaction_No.setText(rsDatabase.getString("Transaction_No"));
txtTracking_No.setText(rsDatabase.getString("Tracking_No"));
showStatus("");
else
showStatus("Record not found");
ClearTextFields();
catch (SQLException error)
showStatus("Error in display record");
public void actionPerformed(ActionEvent event)
//Test the command buttons
Object objSource = event.getSource();
if(objSource == btnAdd && event.getActionCommand() == "Add")
Add();
else if (objSource == btnAdd)
Save();
else if(objSource == btnEdit)
Edit();
else if(objSource == btnDelete)
Delete();
else if(objSource == btnCancel)
Cancel();
else if(objSource == btnFirst)
firstRecord();
else if(objSource == btnNext)
nextRecord();
else if(objSource == btnPrevious)
previousRecord();
else if(objSource == btnLast)
lastRecord();
public void setTextToNotEditable()
//Lock the text fields
txtOrder_No.setEditable(false);
txtCompany.setEditable(false);
txtLocation.setEditable(false);
txtDate_Shipped.setEditable(false);
txtBlack_Poly.setEditable(false);
txtBlue_Poly.setEditable(false);
txtBrass1.setEditable(false);
txtBrass2.setEditable(false);
txtTransaction_No.setEditable(false);
txtTracking_No.setEditable(false);
public void setTextToEditable()
//Unlock the text fields
txtOrder_No.setEditable(true);
txtCompany.setEditable(true);
txtLocation.setEditable(true);
txtDate_Shipped.setEditable(true);
txtBlack_Poly.setEditable(true);
txtBlue_Poly.setEditable(true);
txtBrass1.setEditable(true);
txtBrass2.setEditable(true);
txtTransaction_No.setEditable(true);
txtTracking_No.setEditable(true);
public void ClearTextFields()
//Clear the Text Fields
txtOrder_No.setText("");
txtCompany.setText("");
txtLocation.setText("");
txtDate_Shipped.setText("");
txtBlack_Poly.setText("");
txtBlue_Poly.setText("");
txtBrass1.setText("");
txtBrass2.setText("");
txtTransaction_No.setText("");
txtTracking_No.setText("");
public void Add()
//Add a new record
showStatus("");
//Empty the text fields
setTextToEditable();
ClearTextFields();
txtOrder_No.requestFocus ();
//Change the button labels
btnAdd.setLabel("OK");
btnCancel.setEnabled(true);
//Disable the Delete and Edit buttons
btnDelete.setEnabled(false);
btnEdit.setEnabled(false);
public void Save()
//Save the new record
// Activated when Add button has an "OK" label
if (txtOrder_No.getText().length() == 0 && txtLocation.getText().length() == 0)
showStatus("The Customer Name or ID Number is blank");
else
try
Statement cmdDatabase = conDatabase.createStatement();
cmdDatabase.executeUpdate(
"Insert Into gunthmsjv.RECEIVING "
+ "(Order_No,Company,Location,Date_Shipped,Black_Poly,Blue_Poly,Brass1,Brass2,Transaction_No,txtTracking_No) "
+ "Values('"
+ txtOrder_No.getText() + "', '"
+ txtCompany.getText() + "', '"
+ txtLocation.getText() + "', '"
+ txtDate_Shipped.getText() + "', '"
+ txtBlack_Poly.getText() + "', '"
+ txtBlue_Poly.getText() + "', '"
+ txtBrass1.getText() + "', '"
+ txtBrass2.getText() + "', '"
+ txtTransaction_No.getText() + "', '"
+ txtTracking_No.getText() + "')");
//Add to name list
Order_No.add(txtOrder_No.getText());
//Reset buttons
Cancel();
catch(SQLException error)
showStatus("Error: " + error.toString());
public void Delete()
//Delete the current record
int intIndex = Order_No.getSelectedIndex();
String strOrder_No = Order_No.getSelectedItem();
if(intIndex == 0) //Make sure a record is selected
//Position zero holds a message
showStatus("Please select the record to be deleted");
else
try
//Delete from Database
Statement cmdDatabase = conDatabase.createStatement();
cmdDatabase.executeUpdate(
"Delete from gunthmsjv.RECEIVING where Order_No = '"
+ strOrder_No + "';");
ClearTextFields(); //Delete from screen
Order_No.remove(intIndex); //Delete from list
showStatus("Record deleted"); //Display message
catch(SQLException error)
showStatus("Error during Delete");
public void Cancel()
//Enable the Delete and Edit buttons
btnDelete.setEnabled(true);
btnEdit.setEnabled(true);
btnCancel.setEnabled(false);
//Change caption of button
btnAdd.setLabel("Add");
//Clear the text fields and status bar
ClearTextFields();
showStatus("");
public void Edit()
//Save the modified record
int intIndex = Order_No.getSelectedIndex();
if(intIndex == 0) //Make sure a record is selected
//Position zero holds a message
showStatus("Please select the record to be changed");
else
String strOrder_No = Order_No.getSelectedItem();
try
Statement cmdDatabase = conDatabase.createStatement();
cmdDatabase.executeUpdate(
"Update gunthmsjv.RECEIVING "
+ "Set Order_No = '" + txtOrder_No.getText() + "', "
+ "Company = '" + txtCompany.getText() + "', "
+ "Location = '" + txtLocation.getText() + "', "
+ "Date_Shipped = '" + txtDate_Shipped.getText() + "', "
+ "Black_Poly = '" + txtBlack_Poly.getText() + "', "
+ "Blue_Poly = '" + txtBlue_Poly.getText() + "', "
+ "Brass1 = '" + txtBrass1.getText() + "', "
+ "Brass2 = '" + txtBrass2.getText() + "', "
+ "Transaction_No = '" + txtTransaction_No.getText() + "', "
+ "txtTracking_No = '" + txtTracking_No.getText() + "', ");
if (!strOrder_No.equals(txtOrder_No.getText()))
//Last name changed; change the list
Order_No.remove(intIndex); //Remove the old entry
Order_No.add(txtOrder_No.getText()); //Add the new entry
catch(SQLException error)
showStatus("Error during Edit");
public void stop()
//Terminate the connection
try
if (conDatabase != null)
conDatabase.close();
catch(SQLException error)
showStatus("Unable to disconnect");
public void firstRecord()
int first = 1;
Order_No.select(first);
String strNewOrder_No = Order_No.getSelectedItem();
try
Statement cmdDatabase = conDatabase.createStatement();
rsDatabase = cmdDatabase.executeQuery("Select * from gunthmsjv.RECEIVING where Order_No = '" + strNewOrder_No + "';");
txtOrder_No.setText(strNewOrder_No);
displayRecord(rsDatabase);
catch(SQLException error)
showStatus("item state try.");
public void previousRecord()
int PreviousIndex = 0;
PreviousIndex = Order_No.getSelectedIndex();
PreviousIndex--;
if (PreviousIndex > 0)
Order_No.select(PreviousIndex);
String strNewOrder_No = Order_No.getSelectedItem();
try
Statement cmdDatabase = conDatabase.createStatement();
rsDatabase = cmdDatabase.executeQuery("Select * from gunthmsjv.RECEIVING where Order_No = '" + strNewOrder_No + "';");
txtOrder_No.setText(strNewOrder_No);
displayRecord(rsDatabase);
catch(SQLException error)
showStatus("item state try.");
else
showStatus("You've reached the beginning of the list.");
public void nextRecord()
int NextIndex = 0;
NextIndex = Order_No.getSelectedIndex();
if(NextIndex == 0)
NextIndex = 1;
else
NextIndex++;
if (NextIndex < Order_No.getItemCount())
Order_No.select(NextIndex);
String strNewOrder_No = Order_No.getSelectedItem();
try
Statement cmdDatabase = conDatabase.createStatement();
rsDatabase = cmdDatabase.executeQuery("Select * from gunthmsjv.RECEIVING where Order_No = '" + strNewOrder_No + "';");
txtOrder_No.setText(strNewOrder_No);
displayRecord(rsDatabase);
catch(SQLException error)
showStatus("item state try.");
else
showStatus("You've reached the end of the list.");
public void lastRecord()
int last = 0;
while (last < Order_No.getItemCount()-1)
last++;
Order_No.select(last);
String strNewOrder_No = Order_No.getSelectedItem();
try
Statement cmdDatabase = conDatabase.createStatement();
rsDatabase = cmdDatabase.executeQuery("Select * from gunthmsjv.RECEIVING where Order_No = '" + strNewOrder_No + "';");
txtOrder_No.setText(strNewOrder_No);
displayRecord(rsDatabase);
catch(SQLException error)
showStatus("item state try.");
How do I point the class.forname to a url? This class will be run off a webserver with an html file. Everytime I run it currently, it comes back with a NullPointerException so I know it can't find it. I know if I run it locally, the file runs properly... Can someone help ASAP :(

oad: class http://www.auburn.edu/~gunthms/classes/shipping.class not found.
java.lang.ClassNotFoundException: http:..www.auburn.edu.~gunthms.classes.shipping.class
     at sun.applet.AppletClassLoader.findClass(Unknown Source)
     at java.lang.ClassLoader.loadClass(Unknown Source)
     at sun.applet.AppletClassLoader.loadClass(Unknown Source)
     at java.lang.ClassLoader.loadClass(Unknown Source)
     at sun.applet.AppletClassLoader.loadCode(Unknown Source)
     at sun.applet.AppletPanel.createApplet(Unknown Source)
     at sun.plugin.AppletViewer.createApplet(Unknown Source)
     at sun.applet.AppletPanel.runLoader(Unknown Source)
     at sun.applet.AppletPanel.run(Unknown Source)
     at java.lang.Thread.run(Unknown Source)
Caused by: java.net.UnknownHostException: www
     at java.net.PlainSocketImpl.connect(Unknown Source)
     at java.net.Socket.connect(Unknown Source)
     at sun.net.NetworkClient.doConnect(Unknown Source)
     at sun.plugin.net.protocol.http.HttpClient.doConnect(Unknown Source)
     at sun.net.www.http.HttpClient.openServer(Unknown Source)
     at sun.net.www.http.HttpClient.openServer(Unknown Source)
     at sun.net.www.http.HttpClient.<init>(Unknown Source)
     at sun.net.www.http.HttpClient.<init>(Unknown Source)
     at sun.plugin.net.protocol.http.HttpClient.<init>(Unknown Source)
     at sun.plugin.net.protocol.http.HttpClient.New(Unknown Source)
     at sun.plugin.net.protocol.http.HttpURLConnection.createConnection(Unknown Source)
     at sun.plugin.net.protocol.http.HttpURLConnection.connect(Unknown Source)
     at sun.plugin.net.protocol.http.HttpURLConnection.getInputStream(Unknown Source)
     at java.net.HttpURLConnection.getResponseCode(Unknown Source)
     at sun.applet.AppletClassLoader.getBytes(Unknown Source)
     at sun.applet.AppletClassLoader.access$100(Unknown Source)
     at sun.applet.AppletClassLoader$1.run(Unknown Source)
     at java.security.AccessController.doPrivileged(Native Method)
     ... 10 more
It's just not finding it. Now if there were a way of loading that class from a jar file... or just any method at all of loading that... I think it would work... thanks alot man for your continuing help.

Similar Messages

  • URGENT!! Nokia 6300 issue please help

    Hi, Basically I turned my Nokia 6300 off the other night and when I turned it back on it starts up as normal, However when I try to put my security code in and press OK it just freezes and wont let me into my phone. I havent forgotten my security code as I have used this code plenty of times so it must be a phone issue. Ive tried various ways for example: putting in a different sim or trying it without the sim or removing the battery etc but the problems the same!! Please can anyone help??
    thanks.

    Have you tried removing the memory card too?
    It sounds like the OS has become corrupted to me. I've had it happen on a 6233.
    Unfortunately if this is the case there is no way for the user to recover it from this state. If it can't boot then it can't be reset or have it's firmware reloaded by the user. It can't even be backed up.
    Your only option is to take the phone to a nokia care point and they can reload it's firmware. Sadly all of your info, files, programs will be wiped from the phone.
    Care points/service centres and repair info:
    UK • Europe • Asia-Pacific • USA •
    Canada • Middle East and Africa
    Elsewhere: Click here, select your country, go to the support section, then select repair.

  • Device Driver Issue - Please help

    Hello All,
    We are currently using SCCM 2012 SP1 for OS Deployment and i have been working on a HP elitebook 820 G1 and probook 650 G1. Both build successfully but do not install any device drivers.
    I have downloaded the driver package from HPs website, extracted all the drivers (inf,sys,cat) and put them into 'one' folder, i then created a driver package and imported the drivers into the package and category.
    In the task sequence i have created a 'apply driver package task' with the wmi query for this model, i have also tried disabling the 'auto detect drivers' so that it doesn't look into the DB.
    So far i haven't had any luck and have been working on this for over a week.
    I have looked at the smsts log on the workstation after the build and there are no errors relating to drivers.
    Any help will be appreciated

    Honestly it sounds like something isn't right with the WMI query. Can you confirm that your WMI query is correct? Open a command prompt on one of the computer models you are having issues with. Run "wmic csproduct get name" which will report back the computer
    model as seen by WMI. Confirm that your WMI query would be valid based on that name. WMI queries that I have used...
    Most manufacturers:
    SELECT * FROM Win32_ComputerSystem WHERE Model like "<model name from WMI>"
    Lenovo:
    SELECT * FROM Win32_ComputerSystemProduct WHERE Version like "ThinkPad T510"
    Jarvis
    Blog:
    http://verbalprocessor.com Twitter:
    Note: Posts are provided “AS IS” without warranty of any kind, either expressed or implied, including but not limited to the implied warranties of merchantability and/or fitness for a particular purpose.
    The postings on this site are my own and don’t necessarily represent my employer’s positions, strategies or opinions.

  • Hard Drive Issues - Please Help

    I have an early 2011 15 inch MBP i7 8gb ram.  I was running really sluggishly so I did a complete reformat of the hard drive.  That did not work, and even after reinstalling everything manually (not from a time machine backup) it is still really slow.  When viewing the finder, it get very different numbers on how much free space is left.  Once it said I had 1.2 TB free even thought it is only a 1 TB drive. I have run Verify Disk in disk utility and got:
    Verifying volume “Lion”
    Checking file systemPerforming live verification.
    Checking Journaled HFS Plus volume.
    Checking extents overflow file.
    Checking catalog file.
    Incorrect block count for file temp5069729
    (It should be 5120 instead of 415299)
    Incorrect block count for file temp5069735
    (It should be 16896 instead of 100913)
    Incorrect block count for file temp5069739
    (It should be 16384 instead of 726426)
    Incorrect block count for file temp5069740
    (It should be 70656 instead of 720595)
    Checking multi-linked files.
    Checking catalog hierarchy.
    Checking extended attributes file.
    Checking volume bitmap.
    Volume bitmap needs minor repair for orphaned blocks
    Checking volume information.
    Invalid volume free block count
    (It should be 109655121 instead of 105856262)
    The volume Lion was found corrupt and needs to be repaired.
    Error: This disk needs to be repaired. Start up your computer with another disk (such as your Mac OS X installation disc), and then use Disk Utility to repair this disk.
    When I use my start up disk and reapiar it says the repair is successful, but then a week later if I run the verify disk again I get something similar to above.  Why is this happening?  Is the hard drive bad?
    Thanks for any help.
    - David

    The hard drive is dead. Take it in to the store for repair.

  • Mid 2010 15" MBP i5 A1286 POWER ISSUE-PLEASE HELP-

    The MBP works fine when mains connected but the only issue is every time I take the charger out it shuts down on me!!! So I have checked with a multitester & looks good the only thing i find hard to check for power is the battery itself as its hard to get a good connection, also I took to local Apple store & they checked with a new battery but said its still same issue so the guy disconnected nearly all the connecters off to check if they causing issue & he said now the battery is charging.
    So they still have the laptop to do further tests etc, but I’m not sure what could be the problem hear as maybe there is some component which is bad so the battery’s not charging or what else could be the issue please help & advice as I’m really confused as if it was something to do with the logic board then surely it would not even charge even after checking with the multitester or like Apple genius done by disconnecting other components...
    ANY HELP OR ADVICE WOULD BE HELPFULL,
    THANKS GUYS

    THANKS FOR THE HELP GUYS!!! BEEN AROUND 5 DAYS & NOT ONE PERON HAS HELPED...
    BUT YEAH THANKS AGAIN...
    WASTE OF TIME THIS IS...

  • My internal hard drive isn't being recognized on my macbook pro but when I put the HD in my Mac Pro (desktop), the desktop computer recognizes the HD.  When I insert the installer CD on my laptop, it also doesn't recognize my hard drive. Please help!

    My internal hard drive isn't being recognized on my macbook pro but when I put the HD in my Mac Pro (desktop), the desktop computer recognizes the HD.  When I insert the installer CD on my laptop, it also doesn't recognize my hard drive. Please help! Thank you!
    I've also been getting an image with the folder and question mark. I've tried everything on the apple support page but it doesn't seem to work either.

    Well, I tried all of your suggestions and they didn't work -- no surprise because I was trying to backup to my external c.d. disk.  Duh!  The application for the home is in the mail.

  • My PC computer was wiped (virus) including itunes. How do I transfer the many playlists and music to the new re-installed itunes?? Ipod is synced to old itunes. I have all original music files on external hard drive. Please help?

    My PC computer was wiped (virus) including itunes. How do I transfer the many playlists and music on my ipod to the new re-installed itunes?? Ipod is synced to old itunes. I have all original music files on external hard drive. Please help?
    New itunes is trying to wipe the ipod. But have many many playlists (many hours making) which I want to save. Any help would be appreciated.

    If you want to just extract the playlists from your iPod, plug it in iTunes.  When it appears under devices, right->click on it and choose Export Playlists.  Save them to a location such as your desktop and them import them into your library once you have copied and imported all of your music back into it.
    See this older post from another forum member Zevoneer covering the different methods and software available to assist you with the task of copying content from your iPod back to your PC and into iTunes.
    https://discussions.apple.com/thread/2452022?start=0&tstart=0
    B-rock

  • My hard disk crashed and I cannot find out how to "contact customer service" other than this forum.  The website seems to just take me in a circle. I need to de-activate a license but cannot access the software due to a crashed hard drive.  Please help.

    My hard disk crashed and I cannot find out how to "contact customer service" other than this forum.  The website seems to just take me in a circle. I need to de-activate a license but cannot access the software due to a crashed hard drive.  Please help.

    Hi Anthony ,
    Here is the link to connect with Adobe Chat Support.
    https://helpx.adobe.com/adobe-connect/kb/connect-chat-support.html
    Hope your query gets resolved .
    Regards
    Sukrit Dhingra

  • I AM LOOKING FOR ADVANTEST R3271 LABVIEW6.1 DRIVER(GPIB),PLEASE HELP ME. THANKS.

    I AM LOOKING FOR ADVANTEST R3271 LABVIEW6.1 DRIVER(GPIB),PLEASE HELP ME. THANKS.

    Hi,
    I am not sure what the R3271 is, but we have a driver for the R3272 (Spectrum Analyzer with GSM option). Normally API's do not change significantly and so it is very likely that you will be able to use this driver for your application. You can get it by going to www.ni.com/idnet. The easiest way to get the the page is just to seach by vendor.
    Hope this helps out.
    Aaron K.
    Application Engineer
    National Instruments

  • Trackpad Issue - Please Help!

    Hi there,
    Hope you can help me out here.
    I've recently purchased a 15" i7 Macbook pro. The machine is but 3 weeks old &, of course, very well looked after.
    A few days ago, the built-in trackpad started behaving eratically. Cursor moving by itself, not responding to touch, clicking and opening things involuntarily. Not good at all. Many users seem to have had this exact same issue.
    These problems seemed to miraculously stop after a few re-boots and possibly a software update? I really couldn't tell you what resolved the problem.
    Unfortunately I now have a totally different problem.
    There is a thin, possibly 8 to 10mm horizontal strip across the centre of the trackpad that no longer responds to touch. If I move my finger from the botom of the trackpad upwards (or vice versa), the cursor will stop momentarily as it passes over the horizontal strip. The buttons are fine and the rest of the trackpad is fine. For the moment, I've increased the cursor acceleration so that I can at least navigate round the screen with a smaller area of the trackpad. USB magic mouse seems to work fine.
    If anyone else has experienced this &/or found a solution for this issue, please help me out here. I have rifled through endless threads about MBP trackpad issues with little success & do not live close to an apple store/genius bar.
    This is a 3 week old machine that cost me a small fortune. To be getting software/hardware issues so early on in it's lifespan is really rather worrying for the future.
    Appreciate your help here.
    J

    I'm not sure what caused this, but I extended my lunch break and drove the machine down to the Westfield apple store. I didn't have an appointment with the Genius Bar but I managed to persuade one of the staff to speak to a technician in the workshop. She came back into the store and told me that they had replacement trackpads and that , considering the machine was only 3 weeks old, the technicians kindly sandwiched the repair into their timetable at zero cost. 2 Hours later, I now have a perfectly functioning trackpad/machine.
    I can't thank them enough.
    My only gripe is that I couldn't speak to a technician to find out what the problem was, how they resolved it or what causes these issues for future reference. Understanding why these problems occur often helps to build your own framework of understanding. Most of the threads i've read about trackpad issues are largely unresolved with people only speculating the problem/solution.
    The initial issue I had with the trackpad's erratic behaviour seemed to be a well known problem that many are associating with a trackpad firmware update. Unless by pure coincidence I had an immediate & major hardware fault after it, which is unlikely, my personal guess is that the two issues were related.

  • Transport Issue Please help

    Hello,
    I have got a major prolen during transport.
    I have GEMPLOYE1 Which is a time dependient master data. which has Attribute called 0COUNTRY_ID.
    I have a custome attribute Called Actual PSGroup/Grade GPAYSCGR which has a compounpunding attribute 0COUNTRY_ID
    Now when I am trying to transport PSGroup/Grade GPAYSCGR to QA that transport is failing , the log massage is
    Characteristic GEMPLOYE1: Attribute GPAYSCGR compounded to 0COUNTRY_ID has a diff. time-dpdncy
    If any one saw this issue, please help me to fix the same.
    Samit

    Hi Venu,
    We can't add authorisation objects on Individual servers.We need to add authorisations on BWD ie Dev system and transport to BWI QUA system.This is the Process we need to follow as per our rule set.
    So,As the problem mentioned above if i add some auth. objects on BWD DEV system and transport it to BWI QUA system,it is getting transported Successfully to BWI,but the auth.objects what i have added on BW DEV system is not found on BW QUA system.
    What could be the problem for that,Is that the problem with transports like TP error or is it related with some tables of auth.objects...................
    Could u please analyse the problem and tell me the solution for this..........
    Thanks Much
    Swapna.D

  • Headerrenderer issue -Please help

    Headerrenderer issue -Please help
    hi
    I have a datagrid and I am  doing a custom sorting on the grid(by getting data from DB).
    I achieve this by capturing the headerrelease event of datagrid .In thee venthandler I will query from DB and do event.preventdefault to prevent standard grid sorting.
    Now I need to display my own custom ascending/descending arrows in the header.i have created an header renderer for this,
    In the headerrenderer I am lsitening to the headerrelease event of datagrid and in the eventlistener, as per the sortfield, i am trying to make the sort arrow visible/invisible.
    But somehow making the sort arrows visible/invisible is not working.The initial arrow works fine.it is shown the correct column(Name) as done in the init() method.
    The eventhandler is invoked on clicking the column headers and all the alerts are shown.
    Please see the headerrenderer code below and help me.(code is not complete only the relevant part is included)
    <?xml version="1.0" encoding="utf-8"?><mx:HBox   
    xmlns:mx="http://www.adobe.com/2006/mxml" width="100%" height="100%" horizontalScrollPolicy="off" creationComplete="init()" implements="mx.controls.listClasses.IDropInListItemRenderer">  
    public function init():void{
     headerLabel = dataField.label; 
    _dataGrid.addEventListener(DataGridEvent.HEADER_RELEASE,sortChanged,false);  
    if(_dataField.localeCompare('Name')==0)asc.visible=true; } 
    private function sortChanged(e:DataGridEvent){
     var dg:DataGrid=e.currentTarget asDataGrid;
    varcolumn:DataGridColumn = DataGridColumn(e.currentTarget.columns[e.columnIndex]);if(_dataField.localeCompare(e.dataField)==0)
    if(asc.visible ||(!asc.visible&&!desc.visible))
    Alert.show( 
    'in..');
    asc.visible=false;
    desc.visible=true;
    else if(desc.visible){
    asc.visible= true;
    desc.visible=
    false;
    else{
    asc.visible= 
    false;
    desc.visible=
    false;
    ]]>
    </mx:Script>
    <mx:Text text="{_headerLabel}" />
    <mx:Image source="{ascIcon}" id='asc' visible="false">
    <mx:Image source="{descIcon}" id='desc' visible="false"/>
    </mx:HBox>

    I got the solution!!
    i need to assign the headerrendereer to the columns dynamically inorder for this to work:
    if anybody wants to know details of solution let  me know

  • Org.gjt.mm.mysql.Driver not found help!!

    hi all
    it's the first time for me working with MySql, and when i try to connect to the db, i have the following exception:
    java.lang.ClassNotFoundException: org.gjt.mm.mysql.Driver
    i know that i shall download it from Mysql site, but i don't know WHERE to put it
    i'm using forte 3.0 - jdk 1.4.0 on Win2K
    please help me!
    thanx
    sandro

    No problem,
    in general you should modify the CLASSPATH of your JDK to point to the jar-driver-file, e.g. (on unix): CLASSPATH = "someDirectory"\driverFIle.jar:$CLASSPATH
    and then: export CLASSPATH. That should solve your problem. if using windows: Just take a look at systemControlCenter. There it's possible to modify the CLASSPAT-environment.
    So far...

  • !!!Very Urgent-Production Issue -Please help

    Hello IDMers,
    We are facing an issue in production, we updated the AD Process form yesterday. Two fields- Employee Type and Employee ID field in AD User Process form got refreshed for all existing users. Those two fields are empty now for all users.
    But these fields have appropriate value in the Xellerate User Table for all users. Now I need to some how populate the Employee Type and Employee ID field for all employees from User Table to AD Process form.
    for example: Consider an Employee called Peter- His emp type is Full Time and Emp ID is 100; which i have it in OIM User Table, but this user is provisioned with AD and now i will have to update his AD Process form so that these two fields are populated. I need to do this for all users in OIM. I guess the prepop adapter triggers only when the form is created for the first time. Please suggest me some ideas.
    Is there a easy way to do this task?
    What my thinking is, I need to have a scheduled task that basically loops through all users and updates their employee type and id field in AD User Form from Xellerate User Table.
    Please help me with this as it is highly important.
    Thanks again every one for your support all the while.
    Regards,
    ~VSN

    hey,
    i was doing lots of migration from one OIM box to another during our last release. I guess something would have gone wrong while doing an import/export from one OIM system to another.
    What I learned was while doing an import the vulnerable object is AD USER (or any resource of OIM) Object (both Process form and process definition), because those are the two objects which you need to import fully no matter how big a change you have done.
    So when you do an import watch out for USER DEFINED FIELDS in the process form because for me the two fields which disappeared were user defined/custom created by me. So make sure you export the latest version;even if you didnt make any changes to them better create a new version copy of the form and then export it.
    Hope that helps.
    ~VSN

  • URGENT!!! Java Gurus Please Help with adf issue!

    PLEASE SEE MY LATEST POST BELOW TIMO'S RESPONSE. THE REQUIREMENT HAS CHANGED. THAT IS THE ISSUE I AM LOOKING A SOLUTION FOR.
    Hello All,
    We have a requirement where our adf/jsf app needs to pick an EXCEL file from the server where the application is deployed. The sequence is :
    User comes to the page
    Clicks on "Open EXCEL" button
    EXCEL file located in the c:/ of the server opens up.
    How can this be done? I do not see any coding needed because the EXCEL file is being opened as is (and after user views it he closes the file) and the data is not being transferred to the jspx page.
    *We are totally flexible in how this is implemented - ie, using button, link , html etc etc. What ever works!!!!*
    Thanks,
    Edited by: user12054715 on Aug 17, 2010 8:54 PM
    Edited by: user12054715 on Aug 18, 2010 4:11 PM
    Edited by: user12054715 on Aug 18, 2010 4:13 PM

    Hello Timo,
    I am using 10.1.3g so your response is not going to help me.
    However, I have another question that I have already posted on the Forum. Please help me...
    Requirement:
    *1. Java application should be able to write "Hello World" in the excel file, when the user opens it.*
    I CAN DO THIS WITH THE FOLLOWING CODE:
    HSSFWorkbook wb = new HSSFWorkbook();
    HSSFSheet sheet = wb.createSheet("newSheet");
    HSSFRow row = sheet.createRow(1);
    row.createCell(1).setCellValue("HelloWorld!!!!!!!!!");
    *2. A "Write To Excel" button on jsf page opens a dialog asking user to Save or Open the excel file. (user can save the file anywhere on his machine)*
    I CAN DO THIS WITH THE FOLLOWING CODE:
    In jsf:
    <af:commandButton text="Download" action="#{myBackingBean.writeToExcel}" useWindow="true"/>
    In backing bean:
    public static void writeToExcel() throws IOException
    String filename = "workbook.xls";
    // //Setup the output
    String contentType = "application/vnd.ms-excel";
    FacesContext fc = FacesContext.getCurrentInstance();
    HttpServletResponse response = (HttpServletResponse)fc.getExternalContext().getResponse();
    response.setHeader("Content-disposition", "attachment; filename=" + filename);
    response.setContentType(contentType);
    PrintWriter out = response.getWriter();
    BOTTLENECK: When the user opens the excel how do I show "HelloWorld!!!!!!!!!" ?

Maybe you are looking for

  • Can we call ALV grid in a method?

    hello everybody, Is it possible to display the output in ALV from a <b>class-method(Global class)</b>? in a class-method wee cannot call a screen, so is there any other possibility to display the grid?? thanx in advance, abhilash.

  • Member Access Profiles--Dimension combinations

    My client has the following setup (simplified): Entity--Total, children Asia, Europe Category--Actual, Forecast, Budget A user has 3 access profiles: 1.  R/W Asia 2.  R/W Actual 3.  R/W Budget They are separate profiles so write access can be turned

  • How to add navigation cuepoints to the mediaplayer and seek to them? (OSMF)

    oHi, I'm working in a livestreaming player and I'm having some problems doing a seek to the 1st second, I've been reading something about it and I found that the seek action works based on keyframes. I found that keyframes can be add using cuepoints

  • Some links won't come up

    I've been experiencing a strange behavior with Safari. Some links start to execute but the screen stays blank. What could be causing this behavior? Are there some add-ins that are not present?

  • Block Corrupted

    Hi, i have Oracle 10G version 10.1.0.2.0 runing on Windows 2003. i have this error: Sql Server Error: Ora-01578: Oracle data block corrupted (file #5, block #658438) Ora-01110: datafile 5: 'f:\cm\banco\dados\dados.dbf' Ora-06512: at "CM.TUMOVIMENT",