Help me with this  one:java.lang.ClassNotFoundException: com.mysql.jdbc.Dri

compile and build:Successful
but when I run it...I got this msg:
init:
deps-jar:
Compiling 1 source file to C:\Documents and Settings\Administrator\Form\build\classes
compile:
run:
java.lang.ClassNotFoundException: com.mysql.jdbc.Driver
at java.net.URLClassLoader$1.run(URLClassLoader.java:200)
at java.security.AccessController.doPrivileged(Native Method)
at java.net.URLClassLoader.findClass(URLClassLoader.java:188)
at java.lang.ClassLoader.loadClass(ClassLoader.java:306)
at sun.misc.Launcher$AppClassLoader.loadClass(Launcher.java:276)
at java.lang.ClassLoader.loadClass(ClassLoader.java:251)
at java.lang.ClassLoader.loadClassInternal(ClassLoader.java:319)
at java.lang.Class.forName0(Native Method)
at java.lang.Class.forName(Class.java:169)
at my.form.MyDBConnection.init(MyDBConnection.java:26)
at my.form.FormUI.<init>(FormUI.java:20)
at my.form.FormUI$40.run(FormUI.java:1094)
at java.awt.event.InvocationEvent.dispatch(InvocationEvent.java:209)
at java.awt.EventQueue.dispatchEvent(EventQueue.java:597)
at java.awt.EventDispatchThread.pumpOneEventForFilters(EventDispatchThread.java:273)
at java.awt.EventDispatchThread.pumpEventsForFilter(EventDispatchThread.java:183)
at java.awt.EventDispatchThread.pumpEventsForHierarchy(EventDispatchThread.java:173)
at java.awt.EventDispatchThread.pumpEvents(EventDispatchThread.java:168)
at java.awt.EventDispatchThread.pumpEvents(EventDispatchThread.java:160)
at java.awt.EventDispatchThread.run(EventDispatchThread.java:121)
Java Result: 1
BUILD SUCCESSFUL (total time: 2 seconds)
I use two classes
FormUI.java and MyDBConnection.java
* MyDBConnection.java
package my.form;
import java.sql.*;
public class MyDBConnection {
private Connection myConnection;
/** Creates a new instance of MyDBConnection */
public MyDBConnection() {
public void init(){
Connection connection = null;
Statement statement = null;
try{
Class.forName("com.mysql.jdbc.Driver");
myConnection=DriverManager.getConnection(
"jdbc:mysql://localhost:3306/test,'root' "
catch(SQLException sqlException){
sqlException.printStackTrace();
System.exit(1);
catch ( ClassNotFoundException classNotFound )
classNotFound.printStackTrace();
System.exit(1);
finally
try
statement.close();
connection.close();
catch ( Exception exception )
exception.printStackTrace();
System.exit( 1 );
public Connection getMyConnection(){
return myConnection;
public void close(ResultSet rs){
if(rs !=null){
try{
rs.close();
catch(Exception e){}
public void close(java.sql.Statement stmt){
if(stmt !=null){
try{
stmt.close();
catch(Exception e){}
public void destroy(){
if(myConnection !=null){
try{
myConnection.close();
catch(Exception e){}
* FormUI.java
* Created on May 2, 2007, 10:33 AM
package my.form;
import java.sql.*;
* @author Administrator
public class FormUI extends javax.swing.JFrame {
/** Creates new form FormUI */
public FormUI() throws Exception {
mdbc=new MyDBConnection();
mdbc.init();
Connection conn=mdbc.getMyConnection();
stmt=conn.createStatement();
initComponents();
* MyDBConnection.java
/** 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();
jLabel1 = new javax.swing.JLabel();
jLabel2 = new javax.swing.JLabel();
jLabel3 = new javax.swing.JLabel();
jLabel4 = new javax.swing.JLabel();
jTextField1 = new javax.swing.JTextField();
jTextField2 = new javax.swing.JTextField();
jTextField3 = new javax.swing.JTextField();
jTextField35 = new javax.swing.JTextField();
jPanel3 = new javax.swing.JPanel();
jLabel5 = new javax.swing.JLabel();
jTextField5 = new javax.swing.JTextField();
jLabel6 = new javax.swing.JLabel();
jTextField6 = new javax.swing.JTextField();
jLabel7 = new javax.swing.JLabel();
jTextField7 = new javax.swing.JTextField();
jLabel8 = new javax.swing.JLabel();
jTextField4 = new javax.swing.JTextField();
jLabel9 = new javax.swing.JLabel();
jTextField8 = new javax.swing.JTextField();
jLabel10 = new javax.swing.JLabel();
jTextField9 = new javax.swing.JTextField();
jLabel11 = new javax.swing.JLabel();
jTextField10 = new javax.swing.JTextField();
jLabel12 = new javax.swing.JLabel();
jTextField11 = new javax.swing.JTextField();
jLabel13 = new javax.swing.JLabel();
jTextField12 = new javax.swing.JTextField();
jLabel14 = new javax.swing.JLabel();
jTextField13 = new javax.swing.JTextField();
jLabel15 = new javax.swing.JLabel();
jPanel2 = new javax.swing.JPanel();
jLabel16 = new javax.swing.JLabel();
jTextField14 = new javax.swing.JTextField();
jLabel17 = new javax.swing.JLabel();
jTextField15 = new javax.swing.JTextField();
jLabel18 = new javax.swing.JLabel();
jTextField16 = new javax.swing.JTextField();
jLabel19 = new javax.swing.JLabel();
jTextField17 = new javax.swing.JTextField();
jLabel20 = new javax.swing.JLabel();
jTextField18 = new javax.swing.JTextField();
jLabel21 = new javax.swing.JLabel();
jTextField19 = new javax.swing.JTextField();
jLabel22 = new javax.swing.JLabel();
jTextField20 = new javax.swing.JTextField();
jLabel23 = new javax.swing.JLabel();
jTextField21 = new javax.swing.JTextField();
jLabel24 = new javax.swing.JLabel();
jTextField22 = new javax.swing.JTextField();
jLabel25 = new javax.swing.JLabel();
jTextField23 = new javax.swing.JTextField();
jLabel26 = new javax.swing.JLabel();
jTextField24 = new javax.swing.JTextField();
jLabel27 = new javax.swing.JLabel();
jTextField25 = new javax.swing.JTextField();
jLabel28 = new javax.swing.JLabel();
jTextField26 = new javax.swing.JTextField();
jLabel29 = new javax.swing.JLabel();
jTextField27 = new javax.swing.JTextField();
jLabel30 = new javax.swing.JLabel();
jTextField28 = new javax.swing.JTextField();
jLabel31 = new javax.swing.JLabel();
jTextField29 = new javax.swing.JTextField();
jLabel32 = new javax.swing.JLabel();
jTextField30 = new javax.swing.JTextField();
jLabel33 = new javax.swing.JLabel();
jTextField31 = new javax.swing.JTextField();
jLabel34 = new javax.swing.JLabel();
jTextField32 = new javax.swing.JTextField();
jLabel35 = new javax.swing.JLabel();
jTextField33 = new javax.swing.JTextField();
jLabel36 = new javax.swing.JLabel();
jTextField34 = new javax.swing.JTextField();
jButton1 = new javax.swing.JButton();
jButton2 = new javax.swing.JButton();
jLabel37 = new javax.swing.JLabel();
jLabel38 = new javax.swing.JLabel();
jTextField37 = new javax.swing.JTextField();
jTextField36 = new javax.swing.JTextField();
setDefaultCloseOperation(javax.swing.WindowConstants.EXIT_ON_CLOSE);
jPanel1.setBackground(new java.awt.Color(204, 255, 204));
jLabel1.setText("custID");
jLabel2.setText("PIN");
jLabel3.setText("Source");
jLabel4.setText("SaleDate");
jTextField1.addActionListener(new java.awt.event.ActionListener() {
public void actionPerformed(java.awt.event.ActionEvent evt) {
jTextField1ActionPerformed(evt);
jTextField2.addActionListener(new java.awt.event.ActionListener() {
public void actionPerformed(java.awt.event.ActionEvent evt) {
jTextField2ActionPerformed(evt);
jTextField3.setText("SourceHub");
jTextField3.addActionListener(new java.awt.event.ActionListener() {
public void actionPerformed(java.awt.event.ActionEvent evt) {
jTextField3ActionPerformed(evt);
jTextField35.addActionListener(new java.awt.event.ActionListener() {
public void actionPerformed(java.awt.event.ActionEvent evt) {
jTextField35ActionPerformed(evt);
javax.swing.GroupLayout jPanel1Layout = new javax.swing.GroupLayout(jPanel1);
jPanel1.setLayout(jPanel1Layout);
jPanel1Layout.setHorizontalGroup(
jPanel1Layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING)
.addGroup(jPanel1Layout.createSequentialGroup()
.addGap(28, 28, 28)
.addGroup(jPanel1Layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING)
.addComponent(jLabel1)
.addComponent(jLabel2))
.addGap(15, 15, 15)
.addGroup(jPanel1Layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING)
.addComponent(jTextField2, javax.swing.GroupLayout.DEFAULT_SIZE, 113, Short.MAX_VALUE)
.addComponent(jTextField1, javax.swing.GroupLayout.DEFAULT_SIZE, 113, Short.MAX_VALUE))
.addPreferredGap(javax.swing.LayoutStyle.ComponentPlacement.RELATED, 88, Short.MAX_VALUE)
.addGroup(jPanel1Layout.createParallelGroup(javax.swing.GroupLayout.Alignment.TRAILING)
.addComponent(jLabel3)
.addComponent(jLabel4))
.addGap(13, 13, 13)
.addGroup(jPanel1Layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING, false)
.addComponent(jTextField35)
.addComponent(jTextField3, javax.swing.GroupLayout.DEFAULT_SIZE, 83, Short.MAX_VALUE))
.addGap(198, 198, 198))
jPanel1Layout.setVerticalGroup(
jPanel1Layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING)
.addGroup(jPanel1Layout.createSequentialGroup()
.addGap(21, 21, 21)
.addGroup(jPanel1Layout.createParallelGroup(javax.swing.GroupLayout.Alignment.BASELINE)
.addComponent(jTextField3, javax.swing.GroupLayout.PREFERRED_SIZE, javax.swing.GroupLayout.DEFAULT_SIZE, javax.swing.GroupLayout.PREFERRED_SIZE)
.addComponent(jLabel1)
.addComponent(jTextField1, javax.swing.GroupLayout.PREFERRED_SIZE, javax.swing.GroupLayout.DEFAULT_SIZE, javax.swing.GroupLayout.PREFERRED_SIZE)
.addComponent(jLabel3))
.addGap(18, 18, 18)
.addGroup(jPanel1Layout.createParallelGroup(javax.swing.GroupLayout.Alignment.BASELINE)
.addComponent(jLabel2)
.addComponent(jTextField2, javax.swing.GroupLayout.PREFERRED_SIZE, javax.swing.GroupLayout.DEFAULT_SIZE, javax.swing.GroupLayout.PREFERRED_SIZE)
.addComponent(jLabel4)
.addComponent(jTextField35, javax.swing.GroupLayout.PREFERRED_SIZE, javax.swing.GroupLayout.DEFAULT_SIZE, javax.swing.GroupLayout.PREFERRED_SIZE))
.addContainerGap(23, Short.MAX_VALUE))
jPanel3.setBackground(new java.awt.Color(204, 255, 204));
jLabel5.setText("First Name");
jTextField5.addActionListener(new java.awt.event.ActionListener() {
public void actionPerformed(java.awt.event.ActionEvent evt) {
jTextField5ActionPerformed(evt);
jLabel6.setText("Last Name");
jTextField6.addActionListener(new java.awt.event.ActionListener() {
public void actionPerformed(java.awt.event.ActionEvent evt) {
jTextField6ActionPerformed(evt);
jLabel7.setText("Address");
jTextField7.addActionListener(new java.awt.event.ActionListener() {
public void actionPerformed(java.awt.event.ActionEvent evt) {
jTextField7ActionPerformed(evt);
jLabel8.setText("City");
jTextField4.addActionListener(new java.awt.event.ActionListener() {
public void actionPerformed(java.awt.event.ActionEvent evt) {
jTextField4ActionPerformed(evt);
jLabel9.setText("ZIP");
jTextField8.addActionListener(new java.awt.event.ActionListener() {
public void actionPerformed(java.awt.event.ActionEvent evt) {
jTextField8ActionPerformed(evt);
jLabel10.setText("Sales Rep");
jTextField9.addActionListener(new java.awt.event.ActionListener() {
public void actionPerformed(java.awt.event.ActionEvent evt) {
jTextField9ActionPerformed(evt);
jLabel11.setText("Phone");
jTextField10.addActionListener(new java.awt.event.ActionListener() {
public void actionPerformed(java.awt.event.ActionEvent evt) {
jTextField10ActionPerformed(evt);
jLabel12.setText("Alt Phone");
jTextField11.addActionListener(new java.awt.event.ActionListener() {
public void actionPerformed(java.awt.event.ActionEvent evt) {
jTextField11ActionPerformed(evt);
jLabel13.setText("E-Mail");
jTextField12.addActionListener(new java.awt.event.ActionListener() {
public void actionPerformed(java.awt.event.ActionEvent evt) {
jTextField12ActionPerformed(evt);
jLabel14.setText("DateofBirth");
jTextField13.addActionListener(new java.awt.event.ActionListener() {
public void actionPerformed(java.awt.event.ActionEvent evt) {
jTextField13ActionPerformed(evt);
jPanel2.setBackground(new java.awt.Color(204, 255, 204));
jLabel16.setText("AnnualAmount");
jTextField14.addActionListener(new java.awt.event.ActionListener() {
public void actionPerformed(java.awt.event.ActionEvent evt) {
jTextField14ActionPerformed(evt);
jLabel17.setText("AnnualDay");
jTextField15.addActionListener(new java.awt.event.ActionListener() {
public void actionPerformed(java.awt.event.ActionEvent evt) {
jTextField15ActionPerformed(evt);
jLabel18.setText("AnnualMonth");
jTextField16.addActionListener(new java.awt.event.ActionListener() {
public void actionPerformed(java.awt.event.ActionEvent evt) {
jTextField16ActionPerformed(evt);
jLabel19.setText("MonthlyAmount");
jTextField17.addActionListener(new java.awt.event.ActionListener() {
public void actionPerformed(java.awt.event.ActionEvent evt) {
jTextField17ActionPerformed(evt);
jLabel20.setText("MonthlyDay");
jTextField18.addActionListener(new java.awt.event.ActionListener() {
public void actionPerformed(java.awt.event.ActionEvent evt) {
jTextField18ActionPerformed(evt);
jLabel21.setText("MonthlyStatusDate");
jTextField19.addActionListener(new java.awt.event.ActionListener() {
public void actionPerformed(java.awt.event.ActionEvent evt) {
jTextField19ActionPerformed(evt);
jLabel22.setText("AnnualStatus2");
jTextField20.addActionListener(new java.awt.event.ActionListener() {
public void actionPerformed(java.awt.event.ActionEvent evt) {
jTextField20ActionPerformed(evt);
jLabel23.setText("MonthlyStatus2");
jTextField21.addActionListener(new java.awt.event.ActionListener() {
public void actionPerformed(java.awt.event.ActionEvent evt) {
jTextField21ActionPerformed(evt);
jLabel24.setText("Plan");
jTextField22.addActionListener(new java.awt.event.ActionListener() {
public void actionPerformed(java.awt.event.ActionEvent evt) {
jTextField22ActionPerformed(evt);
jLabel25.setText("Bonus Gift");
jTextField23.addActionListener(new java.awt.event.ActionListener() {
public void actionPerformed(java.awt.event.ActionEvent evt) {
jTextField23ActionPerformed(evt);
jLabel26.setText("AccountType");
jTextField24.addActionListener(new java.awt.event.ActionListener() {
public void actionPerformed(java.awt.event.ActionEvent evt) {
jTextField24ActionPerformed(evt);
jLabel27.setText("AbaNumber");
jTextField25.addActionListener(new java.awt.event.ActionListener() {
public void actionPerformed(java.awt.event.ActionEvent evt) {
jTextField25ActionPerformed(evt);
jLabel28.setText("AccountNumber");
jTextField26.addActionListener(new java.awt.event.ActionListener() {
public void actionPerformed(java.awt.event.ActionEvent evt) {
jTextField26ActionPerformed(evt);
jLabel29.setText("BankName");
jTextField27.addActionListener(new java.awt.event.ActionListener() {
public void actionPerformed(java.awt.event.ActionEvent evt) {
jTextField27ActionPerformed(evt);
jLabel30.setText("Verification Number");
jTextField28.addActionListener(new java.awt.event.ActionListener() {
public void actionPerformed(java.awt.event.ActionEvent evt) {
jTextField28ActionPerformed(evt);
jLabel31.setText("Upsale1");
jTextField29.addActionListener(new java.awt.event.ActionListener() {
public void actionPerformed(java.awt.event.ActionEvent evt) {
jTextField29ActionPerformed(evt);
jLabel32.setText("Upsale2");
jTextField30.addActionListener(new java.awt.event.ActionListener() {
public void actionPerformed(java.awt.event.ActionEvent evt) {
jTextField30ActionPerformed(evt);
jLabel33.setText("UP1BillDate");
jTextField31.addActionListener(new java.awt.event.ActionListener() {
public void actionPerformed(java.awt.event.ActionEvent evt) {
jTextField31ActionPerformed(evt);
jLabel34.setText("UP2BillDate");
jTextField32.addActionListener(new java.awt.event.ActionListener() {
public void actionPerformed(java.awt.event.ActionEvent evt) {
jTextField32ActionPerformed(evt);
jLabel35.setText("Date-Time");
jTextField33.addActionListener(new java.awt.event.ActionListener() {
public void actionPerformed(java.awt.event.ActionEvent evt) {
jTextField33ActionPerformed(evt);
jLabel36.setText("Notes");
jTextField34.addActionListener(new java.awt.event.ActionListener() {
public void actionPerformed(java.awt.event.ActionEvent evt) {
jTextField34ActionPerformed(evt);
javax.swing.GroupLayout jPanel2Layout = new javax.swing.GroupLayout(jPanel2);
jPanel2.setLayout(jPanel2Layout);
jPanel2Layout.setHorizontalGroup(
jPanel2Layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING)
.addGroup(jPanel2Layout.createSequentialGroup()
.addGroup(jPanel2Layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING)
.addGroup(jPanel2Layout.createSequentialGroup()
.addContainerGap()
.addGroup(jPanel2Layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING)
.addComponent(jLabel16)
.addComponent(jLabel19)
.addComponent(jLabel22)))
.addGroup(jPanel2Layout.createSequentialGroup()
.addGap(34, 34, 34)
.addComponent(jLabel24))
.addGroup(jPanel2Layout.createSequentialGroup()
.addContainerGap()
.addComponent(jLabel26))
.addGroup(jPanel2Layout.createSequentialGroup()
.addGap(23, 23, 23)
.addGroup(jPanel2Layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING)
.addComponent(jLabel29)
.addGroup(jPanel2Layout.createSequentialGroup()
.addGap(2, 2, 2)
.addGroup(jPanel2Layout.createParallelGroup(javax.swing.GroupLayout.Alignment.TRAILING)
.addComponent(jLabel31)
.addGroup(jPanel2Layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING)
.addComponent(jLabel35)
.addComponent(jLabel33)))))))
.addPreferredGap(javax.swing.LayoutStyle.ComponentPlacement.RELATED)
.addGroup(jPanel2Layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING)
.addGroup(jPanel2Layout.createSequentialGroup()
.addGroup(jPanel2Layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING, false)
.addComponent(jTextField24)
.addComponent(jTextField22)
.addComponent(jTextField20)
.addComponent(jTextField17)
.addComponent(jTextField14, javax.swing.GroupLayout.DEFAULT_SIZE, 71, Short.MAX_VALUE))
.addPreferredGap(javax.swing.LayoutStyle.ComponentPlacement.RELATED)
.addGroup(jPanel2Layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING, false)
.addGroup(jPanel2Layout.createSequentialGroup()
.addGroup(jPanel2Layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING)
.addComponent(jLabel17)
.addComponent(jLabel20))
.addPreferredGap(javax.swing.LayoutStyle.ComponentPlacement.RELATED)
.addGroup(jPanel2Layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING, false)
.addComponent(jTextField18)
.addComponent(jTextField15, javax.swing.GroupLayout.DEFAULT_SIZE, 73, Short.MAX_VALUE))
.addPreferredGap(javax.swing.LayoutStyle.ComponentPlacement.RELATED)
.addGroup(jPanel2Layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING)
.addGroup(jPanel2Layout.createSequentialGroup()
.addComponent(jLabel18)
.addPreferredGap(javax.swing.LayoutStyle.ComponentPlacement.RELATED)
.addComponent(jTextField16, javax.swing.GroupLayout.PREFERRED_SIZE, 85, javax.swing.GroupLayout.PREFERRED_SIZE))
.addGroup(jPanel2Layout.createSequentialGroup()
.addComponent(jLabel21)
.addPreferredGap(javax.swing.LayoutStyle.ComponentPlacement.RELATED)
.addComponent(jTextField19, javax.swing.GroupLayout.PREFERRED_SIZE, 80, javax.swing.GroupLayout.PREFERRED_SIZE))))
.addGroup(jPanel2Layout.createSequentialGroup()
.addGroup(jPanel2Layout.createParallelGroup(javax.swing.GroupLayout.Alignment.TRAILING)
.addComponent(jLabel27)
.addComponent(jLabel25)
.addComponent(jLabel23))
.addPreferredGap(javax.swing.LayoutStyle.ComponentPlacement.RELATED)
.addGroup(jPanel2Layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING, false)
.addComponent(jTextField25)
.addComponent(jTextField23)
.addComponent(jTextField21, javax.swing.GroupLayout.DEFAULT_SIZE, 72, Short.MAX_VALUE))
.addPreferredGap(javax.swing.LayoutStyle.ComponentPlacement.RELATED)
.addGroup(jPanel2Layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING)
.addComponent(jTextField28, javax.swing.GroupLayout.PREFERRED_SIZE, 94, javax.swing.GroupLayout.PREFERRED_SIZE)
.addGroup(jPanel2Layout.createSequentialGroup()
.addComponent(jLabel28)
.addPreferredGap(javax.swing.LayoutStyle.ComponentPlacement.RELATED)
.addComponent(jTextField26))))))
.addGroup(jPanel2Layout.createSequentialGroup()
.addGroup(jPanel2Layout.createParallelGroup(javax.swing.GroupLayout.Alignment.TRAILING, false)
.addComponent(jTextField31, javax.swing.GroupLayout.Alignment.LEADING)
.addComponent(jTextField29, javax.swing.GroupLayout.Alignment.LEADING)
.addComponent(jTextField27, javax.swing.GroupLayout.Alignment.LEADING, javax.swing.GroupLayout.DEFAULT_SIZE, 105, Short.MAX_VALUE))
.addGap(21, 21, 21)
.addGroup(jPanel2Layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING)
.addComponent(jLabel30)
.addGroup(jPanel2Layout.createParallelGroup(javax.swing.GroupLayout.Alignment.TRAILING)
.addGroup(javax.swing.GroupLayout.Alignment.LEADING, jPanel2Layout.createSequentialGroup()
.addComponent(jLabel34)
.addGroup(jPanel2Layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING)
.addGroup(jPanel2Layout.createSequentialGroup()
.addGap(14, 14, 14)
.addComponent(jTextField34, javax.swing.GroupLayout.DEFAULT_SIZE, 195, Short.MAX_VALUE))
.addGroup(jPanel2Layout.createSequentialGroup()
.addPreferredGap(javax.swing.LayoutStyle.ComponentPlacement.RELATED)
.addComponent(jTextField32, javax.swing.GroupLayout.PREFERRED_SIZE, 109, javax.swing.GroupLayout.PREFERRED_SIZE))))
.addGroup(javax.swing.GroupLayout.Alignment.LEADING, jPanel2Layout.createSequentialGroup()
.addComponent(jLabel32)
.addGap(20, 20, 20)
.addComponent(jTextField30, javax.swing.GroupLayout.PREFERRED_SIZE, 95, javax.swing.GroupLayout.PREFERRED_SIZE)))))
.addGroup(jPanel2Layout.createSequentialGroup()
.addComponent(jTextField33, javax.swing.GroupLayout.PREFERRED_SIZE, 123, javax.swing.GroupLayout.PREFERRED_SIZE)
.addGap(27, 27, 27)
.addComponent(jLabel36)))
.addGap(113, 11

I am not sure what is the driver for mysql. I just came across the similar kind of problem in the forum and I have given the forum link below. Check if you have the file and then set the classpath.
[Hyperlinks] http://forum.java.sun.com/thread.jspa?threadID=522873&messageID=2503366
[HyperLinks]

Similar Messages

  • Java.lang.ClassNotFoundException: com.mysql.jdbc.Driver

    hi All,
    i am facing the above error and stack parsing is as follows:
    at java.net.URLClassLoader$1.run(Unknown Source)
    at java.security.AccessController.doPrivileged(Native Method)
    at java.net.URLClassLoader.findClass(Unknown Source)
    at java.lang.ClassLoader.loadClass(Unknown Source)
    at sun.misc.Launcher$AppClassLoader.loadClass(Unknown Source)
    at java.lang.ClassLoader.loadClass(Unknown Source)
    at java.lang.ClassLoader.loadClassInternal(Unknown Source)
    at java.lang.Class.forName0(Native Method)
    at java.lang.Class.forName(Unknown Source)
    at imgstore.<init>(imgstore.java:21)
    at imgstore.main(imgstore.java:92)
    CLASSPATH is "C:\JDK1.5\bin"
    I have already downloaded "mysql-connector-java-5.0.5-bin.jar" and placed the "C:\JDK1.5\jre\lib\ext\" .
    Still this problem persist.........plz guide me for the same.........
    thanks in advance......

    What is <classname>? Is that the "ClassToRun" from my example?
    If so, add the path to the "root" of the package hierarchy where your class can be found.
    For example:
    Your class is in C:\Bogus\Bogus1\com\mine\MyClass.class
    And its package is com.mine
    Then your command looks like this:
    java -cp "C:\full\path\to\jarfile\mysql-connector-java-5.0.5-bin.jar;C:\Bogus\Bogus1" com.mine.MyClass
    Or your class is in C:\Bogus\Bogus1\myjarfile.jar
    Then your command looks like this:
    java -cp "C:\full\path\to\jarfile\mysql-connector-java-5.0.5-bin.jar;C:\Bogus\Bogus1\myjarfile.jar" com.mine.MyClassEdit. Added jar info

  • Java.lang.ClassNotFoundException: com.microsoft.jdbc.sqlserver.SQLServerDri

    I am sorry in advance, because I know this topic has been posted many times, but I think after reading all the solutions and trying everything I may have messed myself up worse.
    I am trying to run this simple script to connect to my SQL database
    import java.sql.*;
      * Microsoft SQL Server JDBC test program
    public class Test {
      public Test() throws Exception {
        // Get connection
        DriverManager.registerDriver(new
        com.microsoft.jdbc.sqlserver.SQLServerDriver());
        Connection connection = DriverManager.getConnection(
        "jdbc:microsoft:sqlserver://<Host>:1433","<UID>","<PWD>");
        if (connection != null) {
         System.out.println();
          System.out.println("Successfully connected");
          System.out.println();
          // Meta data
          DatabaseMetaData meta = connection.getMetaData();
          System.out.println("\nDriver Information");
          System.out.println("Driver Name: "
           + meta.getDriverName());
          System.out.println("Driver Version: "
           + meta.getDriverVersion());
          System.out.println("\nDatabase Information ");
          System.out.println("Database Name: "
           + meta.getDatabaseProductName());
          System.out.println("Database Version: "+
          meta.getDatabaseProductVersion());
    } // Test
    public static void main (String args[]) throws Exception {
      Test test = new Test();
    }I have set "PATH" in environmental variables (running windows)to be
    C:\Program Files\Java\jdk1.6.0_04\bin;C:\Program Files\Microsoft SQL Server 2000 Driver for JDBC\lib\;C:\Program Files\Microsoft SQL Server 2000 Driver for JDBC\lib\msbase.jar;C:\Program Files\Microsoft SQL Server 2000 Driver for JDBC\lib\mssqlserver.jar;C:\Program Files\Microsoft SQL Server 2000 Driver for JDBC\lib\msutil.jarSo when i Compile i get the error..
    C:\SQLcode>javac Test.java
    Test.java:9: package com.microsoft.jdbc.sqlserver does not exist
        com.microsoft.jdbc.sqlserver.SQLServerDriver());Additionally, when i run
    java com.microsoft.jdbc.sqlserver.SQLServerDriver
    I get
    Exception in thread "main" java.lang.NoClassDefFoundError: com/microsoft/jdbc/sq
    lserver/SQLServerDriver
    Caused by: java.lang.ClassNotFoundException: com.microsoft.jdbc.sqlserver.SQLSer
    verDriverFinally, I have even ran javac -classpath "C:\Program Files\Microsoft SQL Server 2000 Driver f
    or JDBC\lib\;C:\Program Files\Microsoft SQL Server 2000 Driver for JDBC\lib\msba
    se.jar;C:\Program Files\Microsoft SQL Server 2000 Driver for JDBC\lib\mssqlserve
    r.jar;C:\Program Files\Microsoft SQL Server 2000 Driver for JDBC\lib\msutil.jar"
    Test.java Which will compile correctly! However when I run the same command just with the java command as opposed to the javac command, I get
    Exception in thread "main" java.lang.NoClassDefFoundError: Test/java
    Caused by: java.lang.ClassNotFoundException: Test.java
            at java.net.URLClassLoader$1.run(Unknown Source)
            at java.security.AccessController.doPrivileged(Native Method)
            at java.net.URLClassLoader.findClass(Unknown Source)
            at java.lang.ClassLoader.loadClass(Unknown Source)
            at sun.misc.Launcher$AppClassLoader.loadClass(Unknown Source)
            at java.lang.ClassLoader.loadClass(Unknown Source)
            at java.lang.ClassLoader.loadClassInternal(Unknown Source) While there is a Class file in the directory.. Sorry for such a long post but I have been trying to fix this for two days now.. thank you

    Ok well i tried a number of combinations..
    My code lets say is in a folder C:\SQLCode which was successfully compiled using the command above..
    I tried doing what you suggested and got
    C:\SQLcode>java -cp .;C:\Program Files\Microsoft SQL Server 2000 Driver for JDBC
    \lib\;C:\Program Files\Microsoft SQL Server 2000 Driver for JDBC\lib\msbase.jar;
    C:\Program Files\Microsoft SQL Server 2000 Driver for JDBC\lib\mssqlserver.jar;C
    :\Program Files\Microsoft SQL Server 2000 Driver for JDBC\lib\msutil.jar Test
    Exception in thread "main" java.lang.NoClassDefFoundError: Files\Microsoft
    Caused by: java.lang.ClassNotFoundException: Files\Microsoft
            at java.net.URLClassLoader$1.run(Unknown Source)
            at java.security.AccessController.doPrivileged(Native Method)
            at java.net.URLClassLoader.findClass(Unknown Source)
            at java.lang.ClassLoader.loadClass(Unknown Source)
            at sun.misc.Launcher$AppClassLoader.loadClass(Unknown Source)
            at java.lang.ClassLoader.loadClass(Unknown Source)
            at java.lang.ClassLoader.loadClassInternal(Unknown Source)I also tried without the direct links to the .jar files (just put the DIR) and got the same result.Any other suggestions?

  • Java.lang.ClassNotFoundException: com.sun.xml.rpc.client.ServiceFactoryImpl

    Hi Forum:
    i want to explain you my problem i created a webservice with JDeveloper 10.1.3, and run perfectly but when i want to run it in another IDE i copied the codes to a another IDE and run perfectly in a simple java project in my different IDE but when i putted the code in a web application in another web server differente to the oracle i got this error message
    vax.xml.rpc.ServiceException: java.lang.ClassNotFoundException: com.sun.xml.rpc.client.ServiceFactoryImpl ------------------------- Loader Info ------------------------- ClassLoader name:
    i don�t know what�s happening and is so strange because i make one simple java project in eclipse and i copied the codes and works fine, but in a web application i can�t run it.
    I also founded it the jar to this class com.sun.xml.rpc.client.ServiceFactoryImpl
    but doesn�t work
    Can somebody help me, please?.. i really need it..
    thnks
    joshua

    It usually means that a JAR in which the class file resides is not included in the web-app or is not on the classpath. Had the same problem with the last Eclipse/WebLogic project where JAR files, in which class files resided on which other class files were dependent, were missing.
    Ronald

  • Exception: java.lang.ClassNotFoundException: com.fintrack.FtCFDTraderApplet.class

    I am using Mozilla Firefox version 3.6.18. I don't want to update because last time I updated (recently) the newer version was such an unfriendly dog that after a few days I went back to the version I am still using. It works well! BUT, after I have successfully logged into my Macquarie Prime account, I then click the link to the trading platform and get a Java error message.
    Okay, perhaps Macquarie could have done a better job of making their java code cross-platform compatible, but I installed the latest version of Java and then tried again. With the newer version of Java, the error message changed, but I still got the following:
    "Java Plug-in 1.6.0_26
    Using JRE version 1.6.0_26-b03 Java HotSpot(TM) Client VM
    User home directory = C:\Documents and Settings\adrian
    c: clear console window
    f: finalize objects on finalization queue
    g: garbage collect
    h: display this help message
    l: dump classloader list
    m: print memory usage
    o: trigger logging
    q: hide console
    r: reload policy configuration
    s: dump system and deployment properties
    t: dump thread list
    v: dump thread stack
    x: clear classloader cache
    0-5: set trace level to <n>
    load: class com.fintrack.FtCFDTraderApplet.class not found.
    java.lang.ClassNotFoundException: com.fintrack.FtCFDTraderApplet.class
    at sun.plugin2.applet.Applet2ClassLoader.findClass(Unknown Source)
    at sun.plugin2.applet.Plugin2ClassLoader.loadClass0(Unknown Source)
    at sun.plugin2.applet.Plugin2ClassLoader.loadClass(Unknown Source)
    at sun.plugin2.applet.Plugin2ClassLoader.loadClass(Unknown Source)
    at java.lang.ClassLoader.loadClass(Unknown Source)
    at sun.plugin2.applet.Plugin2ClassLoader.loadCode(Unknown Source)
    at sun.plugin2.applet.Plugin2Manager.createApplet(Unknown Source)
    at sun.plugin2.applet.Plugin2Manager$AppletExecutionRunnable.run(Unknown Source)
    at java.lang.Thread.run(Unknown Source)
    Exception: java.lang.ClassNotFoundException: com.fintrack.FtCFDTraderApplet.class"

    Hmmm...
    I forgot to state what I actually WANT!
    Is there any way (anywhere) I can get the missing class/applet and manually instal it? If so, would that fix the problem?
    Thanks to anyone who can help me (without getting me lost in a never-ending swamp of excessively geeky technicalities; I don't need a "perfect" system - just access to my trading platform.)?
    `

  • Java.lang.ClassNotFoundException: COM.cloudscape.core.JDBCDriver

    O/S: Windows XP Pro
    Software: j2sdk1.4.1_01, j2sdkee1.4
    1/ First Problem:
    when I read the book, it's said that I need to add the J2EE JAR files to the CLASSPATH variable:
    %J2EE_HOME%\lib\j2ee.jar;%J2EE_HOME%\lib\locale
    (the locale JAT file is not under the lib directory. Where is it located at?)
    2/ Second Problem:
    I have a Java program called CreateAgency.java and a batch file called CreateAgency.bat. The batch looks like
    @echo off
    call %J2EE_HOME%\bin\setenv
    @echo on
    java -classpath .;%CPATH% CreateAgency
    When I run the batch file to create a cloudscape database, I encounter 2 errors:
    * call %J2EE_HOME%\bin\setenv is not recognized as an internal or external command
    * java.lang.ClassNotFoundException: COM.cloudscape.core.JDBCDriver
    What's the setenv file? Where is it stored?
    Where is JDBCDriver loated at?
    In general, how can I fix these problems?

    I Figured it out!!!
    my solution to problem 1
    I have left out the ;%J2EE_HOME%\lib\locale in my classpath. I also do not have this folder, and I don't know what it is supposed to do. I don't think it will cause a problem if you leave it out.
    my solution for problem 2.
    I was able to get the CreateAgency Program to run.
    If you want to get the create agency application to run then all you have to do is append the location of cloudscape.jar to the classpath.
    On my system I have cloudscape.jar file located in
    %J2EE_HOME%\lib\system\cloudscape.jar
    Append this line to the classpath. Then compile and run CreateAgency.java. It should work fine then.
    Setenv is a bat file that should be stored in %J2EE_HOME%\bin\setenv. I do not have the setenv.bat file, so I get the same error.

  • Java.lang.ClassNotFoundException:com.ncr.teradata.TeraDriver error

    Could someone help me with this error as soon as possible.I am trying it from last 2 days,but can't solve it.
    I tried intiliazing driver,but didn't work.
    Driver driver = null;
    try{
    driver = (Driver)Class.forName(applicationproperties.getProperty("TD_T4_DRIVER")).newInstance();
    even if I try w/o reading it from file and wire it:
    driver = (Driver) Class.forName("com.ncr.teradata.TeraDriver").newInstance();
    still doesn't work,gives me same error..
    Plz help me,I have to get it done by today..
    Many Thanks in Advance!!'
    -ASH

    It is telling clearly...Class Not Found....
    Make sure that you have Jar file which holds this class file in classpath variable.
    to find given class in jar file use..
    http://www.alphaworks.ibm.com/tech/jarclassfinder

  • Plz guys help me with this one...

    hi,
    My MacBook currently has 512mb of ram which i think is not enough. I would like this ram
    http://www.crucial.com/uk/store/listparts.aspx?model=MacBook1%2E83GHz+Intel+Core+Duo+%2813%2DinchWhite%29
    which i am sure will work. i Am all ready to buy it apart from getting my mum to let me buy it even tho im paying for it :S
    Ive tried to convince her but its still a no so i need some help as to let me buy it
    tyvm Matt

    oh theres no budget issues for me i am holding down
    two jobs and as i have no debt card or credit card
    i cant order online apart from using my mums card
    which she won let me cos she does not understand what
    it atuchally does and in her eyes " dont fix it if it
    aint broken"
    Matt
    I understand how it feels on having no debit card/credit card as you mentioned. (as i personnaly don't have one either)
    If you are really into getting the ram, get a TRUSTWORTHY friend who has a card to pay for you and pay him in cash (as you mentioned theres no budget issue). (pay him first with cash)

  • PLEASE help me with this error java.sql.SQLException

    The code
    public void getInitialQuery() {         try {             Class.forName("sun.jdbc.odbc.JdbcOdbcDriver");             con = DriverManager.getConnection("jdbc:odbc:PDefApp1");             sta = con.createStatement();             System.out.println(SQLQuery);             res = setupSQLConnection(SQLQuery);             getRecordSet(res);
    private void getRecordSet(ResultSet r) {                try {             jTextRecordNumberField.setText(String.valueOf(r.getInt("id")));             jTextFirstNameField.setText(r.getString(2));             jTextMiddleNameField.setText(r.getString(3));             jTextLastNameField.setText(r.getString(4));             jTextDateOfBirthField.setText(r.getString(5));             jTextAKAField.setText(r.getString(6));             jComboBoxChargingDocument.setSelectedItem(r.getString(7));             jTextAreaChargingNumber.setText(r.getString(8));             jComboBoxDecision.setSelectedItem(r.getString(9));             jComboBoxDefendentStatus.setSelectedItem(r.getString(10));             jComboBoxOriginatingUnit.setSelectedItem(r.getString(11));             jTextFieldApplicationDate.setText(r.getString(12));             jTextFieldDecisionDate.setText(r.getString(13));             jTextFieldDeliveryDate.setText(r.getString(14));             jTextAreaComments.setText(r.getString(15));         } catch (Exception e) {             System.err.println("getRecordSet Exception: " + e.getMessage());             e.printStackTrace();         }             }
    The crash occurs in getRecordSet(ResultSet r) method and it occurs on ANY line. I've commented each line to see where it occurs.
    The crash says the following
    run: SELECT * FROM Table1 ORDER BY id ASC setupSQLQuery: SELECT * FROM Table1 ORDER BY id ASC getRecordSet Exception: [Microsoft][ODBC Driver Manager] Invalid cursor state java.sql.SQLException: [Microsoft][ODBC Driver Manager] Invalid cursor state         at sun.jdbc.odbc.JdbcOdbc.createSQLException(JdbcOdbc.java:6957)         at sun.jdbc.odbc.JdbcOdbc.standardError(JdbcOdbc.java:7114)         at sun.jdbc.odbc.JdbcOdbc.SQLGetDataString(JdbcOdbc.java:3907)         at sun.jdbc.odbc.JdbcOdbcResultSet.getDataString(JdbcOdbcResultSet.java:5698)         at sun.jdbc.odbc.JdbcOdbcResultSet.getString(JdbcOdbcResultSet.java:354)         at publicdesktopapplication.PublicDesktopView.getRecordSet(PublicDesktopView.java:1411)         at publicdesktopapplication.PublicDesktopView.getInitialQuery(PublicDesktopView.java:1377)         at publicdesktopapplication.PublicDesktopView.<init>(PublicDefenderView.java:89)         at publicdesktopapplication.PublicDesktopApplication.startup(PublicDesktopApplication.java:19)         at org.jdesktop.application.Application$1.run(Application.java:171)         at java.awt.event.InvocationEvent.dispatch(InvocationEvent.java:209)         at java.awt.EventQueue.dispatchEvent(EventQueue.java:597)         at java.awt.EventDispatchThread.pumpOneEventForFilters(EventDispatchThread.java:273)         at java.awt.EventDispatchThread.pumpEventsForFilter(EventDispatchThread.java:183)         at java.awt.EventDispatchThread.pumpEventsForHierarchy(EventDispatchThread.java:173)         at java.awt.EventDispatchThread.pumpEvents(EventDispatchThread.java:168)         at java.awt.EventDispatchThread.pumpEvents(EventDispatchThread.java:160)         at java.awt.EventDispatchThread.run(EventDispatchThread.java:121)
    I am very confused why this is crashing on me. It didnt crash in the older version of this application.
    Please help!

    Don't do this either
    SELECT * FROM Table1 Explictly name the columns in the order that you are going to fetch them. This makes your code easier to follow later and as side benefit prevents any changes in the column ordering from blowing your code to smitheens.
    And I do hope your table is not in fact called Table1.

  • I am writing a sample JSP apps...help me with this one

    I created a sample apps that moves text from left to right. I used different algos for this like tables..etc..Is there an easy way of doing it. reply ASAP

    ALIGN=LEFT|CENTER|RIGHT|TOP|BOTTOM
    Specifies how the surrounding text should align with the marquee. The default is LEFT.
    LEFT      Surrounding text aligns with the left of the marquee.
    CENTER      Surrounding text aligns with the center of the marquee.
    RIGHT      Surrounding text aligns with the right of the marquee.
    TOP      Surrounding text aligns with the top of the marquee.
    BOTTOM      Surrounding text aligns with the bottom of the marquee.
    BEHAVIOR=type
    Specifies how the text should behave. The type can be one of these values:
    SCROLL      Start completely off one side, scroll all the way across and completely off, and then start again. This is the default.
    SLIDE      Start completely off one side, scroll in, and stop as soon as the text touches the other margin.
    ALTERNATE      Bounce back and forth within the marquee.
    BGCOLOR=color
    Specifies a background color for the marquee. The color can be either a hexadecimal number (optionally preceded by a #) specifying a red-green-blue color value, or a predefined color name as described in Color.
    DIRECTION=direction
    Specifies in which direction the text should scroll. The direction can be LEFT or RIGHT. The default is LEFT, which means scrolling from right to left.
    HEIGHT=n
    Specifies the height of the marquee, either in pixels or as a percentage of the screen height. To specify a percentage, the n must end with a percent sign (%).
    HSPACE=n
    Specifies left and right margins for the outside of the marquee, in pixels.
    LOOP=n
    Specifies how many times a marquee will loop when activated. If LOOP=-1, or if LOOP=INFINITE, the marquee will loop indefinitely.
    SCROLLAMOUNT=n
    Specifies the number of pixels between each successive draw of the marquee text.
    SCROLLDELAY=n
    Specifies the number of milliseconds between each successive draw of the marquee text.
    VSPACE=n
    Specifies top and bottom margins for the outside of the marquee, in pixels.
    WIDTH=n
    Sets the width of the marquee, either in pixels or as a percentage of the screen width. To specify a percentage, the n must end with a percent sign (%).

  • My iPad 2 wifi keeps rebooting , and it doesn't update the battery status . Can anyone help me with this one?

    My Ipad 2 keeps rebooting and it doesn't update the battery status anymore.
    Here is the error
    Incident Identifier: D729F1DF-6960-4847-A6C3-75351A67AE9B
    CrashReporter Key:   c7e1a298a42fc9bbb41b4ed79ff29a1655de12a6
    Hardware Model:      iPad2,1
    Date/Time:       2013-02-16 02:58:06.115 -0800
    OS Version:      iOS 6.0 (10A403)
    CRC ERR!
    I had this problem for quiet sometime now, and I would really appreciate your help. THANKS

    I did try restoring the ipad a couple of times and it didn't do the trick. I also tried updating the firmware.
    The only thing that worked for a while when the ipad - on it's own - rebooted itself into a black screen with white text and automatically fixed the issue. It worked perfectly for a couple of months but it came back after I forgot to charge the ipad , does anyone know how I can force the ipad into that screen again ?

  • Could someone help me with this error: java.sql.SQLException: Closed Connec

    My code:
    <%@ include file="../setupcache.jsp"%>
    <%
    if(connectionPool_dig==null){
    %>
    <p>Could not connect to database. Please try again, thank!</p>
    <%          
         return ;
    Connection con = connectionPool_dig.getConnection();
    if(con==null){
    %>
    <p>Could not connect to database. Please try again, thank!</p>
    <%          
         return;
         String file = request.getParameter("m_FILE");
              file = "a";
         String sql = " SELECT *"+
              " FROM "+
              " FILEUPLOAD, SUBJECT"+
              " WHERE "+
              " FILEUPLOAD.SUBJECTCODE = SUBJECT.CODE AND UPPER(FILEUPLOAD.FILENAME) LIKE(UPPER(?))";
         PreparedStatement stmt = con.prepareStatement(sql);
         stmt.setString(1,"%"+file+"%");
         ResultSet rs = stmt.executeQuery();
         while(rs.next()){
              out.println("<br>"+rs.getString(1));
              out.println("<br>"+rs.getString(2));
              out.println("<br>"+rs.getString(3));
              out.println("<br>"+rs.getString(4));
         rs.close();
         stmt.close();
    try{
         con.close();
    }catch(SQLException e){}
    %>
    it usualy generate that error (once wrong then right then wrong....), but if I don't close connection (con.close), it work well. Could some one help me!

    Hi,
    I think that it should be better that returning the Connection
    instance back to the Connection Pool. The connection
    should not be close by you. it should controlled by the
    connection pool mechanism. So I think that you should
    check out your connection pool usage document for the
    right usage.
    If your code is the case, the connection in connection
    pool will get less and your connection pool mechanism
    may need to reallocate a new one for application. I
    don't think that it is right.
    good luck,
    Alfred Wu

  • Can anyone help me with this one?

    Process: PulpMotion [529]
    Path: /Applications/PulpMotion.app/Contents/MacOS/PulpMotion
    Identifier: com.aquafadas.PulpMotion
    Version: 1.5.1 (v3009)
    Code Type: X86 (Native)
    Parent Process: launchd [100]
    Date/Time: 2008-04-10 15:50:27.076 -0500
    OS Version: Mac OS X 10.5.2 (9C7010)
    Report Version: 6
    Exception Type: EXCBADACCESS (SIGBUS)
    Exception Codes: KERNPROTECTIONFAILURE at 0x0000000000000000
    Crashed Thread: 7
    Thread 0:
    0 libSystem.B.dylib 0x937489e6 machmsgtrap + 10
    1 libSystem.B.dylib 0x937501dc mach_msg + 72
    2 com.apple.CoreFoundation 0x901640de CFRunLoopRunSpecific + 1806
    3 com.apple.CoreFoundation 0x90164d18 CFRunLoopRunInMode + 88
    4 com.apple.HIToolbox 0x93a4d6a0 RunCurrentEventLoopInMode + 283
    5 com.apple.HIToolbox 0x93a4d4b9 ReceiveNextEventCommon + 374
    6 com.apple.HIToolbox 0x93a4d32d BlockUntilNextEventMatchingListInMode + 106
    7 com.apple.AppKit 0x965a67d9 _DPSNextEvent + 657
    8 com.apple.AppKit 0x965a608e -[NSApplication nextEventMatchingMask:untilDate:inMode:dequeue:] + 128
    9 com.apple.AppKit 0x967e2f19 -[NSApplication _realDoModalLoop:peek:] + 563
    10 com.apple.AppKit 0x967dd657 -[NSApplication runModalForWindow:] + 286
    11 com.apple.AppKit 0x96912700 _NXDoLocalRunAlertPanel + 1025
    12 com.apple.AppKit 0x969122fd NSRunAlertPanel + 69
    13 org.andymatuschak.Sparkle 0x002808f5 -[SUUpdater applicationDidFinishLaunching:] + 665
    14 com.apple.Foundation 0x9345dcdc nsnotecallback + 364
    15 com.apple.CoreFoundation 0x901459da __CFXNotificationPost + 362
    16 com.apple.CoreFoundation 0x90145cb3 _CFXNotificationPostNotification + 179
    17 com.apple.Foundation 0x9345afd0 -[NSNotificationCenter postNotificationName:object:userInfo:] + 128
    18 com.apple.Foundation 0x93464668 -[NSNotificationCenter postNotificationName:object:] + 56
    19 com.apple.AppKit 0x9662feff -[NSApplication _postDidFinishNotification] + 125
    20 com.apple.AppKit 0x9662fe0e -[NSApplication _sendFinishLaunchingNotification] + 77
    21 com.apple.AppKit 0x965a98aa -[NSApplication(NSAppleEventHandling) _handleAEOpen:] + 284
    22 com.apple.AppKit 0x965a90a3 -[NSApplication(NSAppleEventHandling) _handleCoreEvent:withReplyEvent:] + 98
    23 com.apple.Foundation 0x934831df -[NSAppleEventManager dispatchRawAppleEvent:withRawReply:handlerRefCon:] + 655
    24 com.apple.Foundation 0x93482eef _NSAppleEventManagerGenericHandler + 223
    25 com.apple.AE 0x96e8b648 aeDispatchAppleEvent(AEDesc const*, AEDesc*, unsigned long, unsigned char*) + 144
    26 com.apple.AE 0x96e8b57e dispatchEventAndSendReply(AEDesc const*, AEDesc*) + 44
    27 com.apple.AE 0x96e8b425 aeProcessAppleEvent + 177
    28 com.apple.HIToolbox 0x93a4ff61 AEProcessAppleEvent + 38
    29 com.apple.AppKit 0x965a69ed _DPSNextEvent + 1189
    30 com.apple.AppKit 0x965a608e -[NSApplication nextEventMatchingMask:untilDate:inMode:dequeue:] + 128
    31 com.apple.AppKit 0x9659f0c5 -[NSApplication run] + 795
    32 com.apple.AppKit 0x9656c30a NSApplicationMain + 574
    33 com.aquafadas.PulpMotion 0x000681e1 main + 1124
    34 com.aquafadas.PulpMotion 0x0000351e _start + 216
    35 com.aquafadas.PulpMotion 0x00003445 start + 41
    Thread 1:
    0 libSystem.B.dylib 0x9374fbce _semwaitsignal + 10
    1 libSystem.B.dylib 0x9377a8cd pthreadcondwait$UNIX2003 + 73
    2 libGLProgrammability.dylib 0x93fdb432 glvmDoWork + 162
    3 libSystem.B.dylib 0x93779c55 pthreadstart + 321
    4 libSystem.B.dylib 0x93779b12 thread_start + 34
    Thread 2:
    0 libSystem.B.dylib 0x937489e6 machmsgtrap + 10
    1 libSystem.B.dylib 0x937501dc mach_msg + 72
    2 com.apple.CoreFoundation 0x901640de CFRunLoopRunSpecific + 1806
    3 com.apple.CoreFoundation 0x90164d18 CFRunLoopRunInMode + 88
    4 com.apple.CFNetwork 0x924546cc CFURLCacheWorkerThread(void*) + 396
    5 libSystem.B.dylib 0x93779c55 pthreadstart + 321
    6 libSystem.B.dylib 0x93779b12 thread_start + 34
    Thread 3:
    0 libSystem.B.dylib 0x9374fbce _semwaitsignal + 10
    1 com.apple.Foundation 0x934fb481 +[NSThread sleepUntilDate:] + 97
    2 com.aquafadas.PulpMotion 0x0004c1e7 -[AFP11CompositionPlayerController timeLineThread:] + 158
    3 com.apple.Foundation 0x9345e5ad -[NSThread main] + 45
    4 com.apple.Foundation 0x9345e154 _NSThread__main_ + 308
    5 libSystem.B.dylib 0x93779c55 pthreadstart + 321
    6 libSystem.B.dylib 0x93779b12 thread_start + 34
    Thread 4:
    0 libSystem.B.dylib 0xffff08b7 __memcpy + 279
    1 libTIFF.dylib 0x96526e54 _TIFFVSetField + 3697
    2 libTIFF.dylib 0x96525e3d cgTIFFSetField + 34
    3 libTIFF.dylib 0x9652752d TIFFFetchNormalTag + 647
    4 libTIFF.dylib 0x96524695 TIFFReadDirectory + 2819
    5 libTIFF.dylib 0x96523a38 cgTIFFClientOpen + 1535
    6 com.apple.ImageIO.framework 0x96050e8f initImageTIFF + 641
    7 com.apple.ImageIO.framework 0x96050c09 _CGImagePluginInitTIFF + 19
    8 com.apple.ImageIO.framework 0x9604a74e makeImagePlus + 503
    9 com.apple.ImageIO.framework 0x960500ac CGImageSourceGetPropertiesAtIndex + 120
    10 com.apple.ImageIO.framework 0x96050006 CGImageSourceCopyPropertiesAtIndex + 120
    11 com.apple.AppKit 0x966916d7 +[NSBitmapImageRep _imagesWithData:hfsFileType:extension:zone:expandImageContentNow:includeAllReps :] + 799
    12 com.apple.AppKit 0x96691397 +[NSBitmapImageRep _imageRepsWithData:hfsFileType:extension:expandImageContentNow:] + 115
    13 com.apple.AppKit 0x96690f87 +[NSImageRep _imageRepsWithContentsOfFile:expandImageContentNow:] + 679
    14 com.apple.AppKit 0x966937ad +[NSImageRep imageRepsWithContentsOfFile:] + 49
    15 com.apple.AppKit 0x966936fa -[NSImage initWithContentsOfFile:] + 52
    16 com.aquafadas.AFMediaManager 0x0020a9c8 +[AFMediaManagerSource iconNamed:] + 342
    17 com.aquafadas.AFMediaManager 0x00232b1c -[AFMediaManagerMemoryMinerAllPeopleSource initWithParent:url:] + 49
    18 com.aquafadas.AFMediaManager 0x002326f5 -[AFMediaManagerMemoryMinerSource build] + 495
    19 com.aquafadas.AFMediaManager 0x0021eb73 -[AFMediaManagerController refreshSources:] + 172
    20 com.aquafadas.AFBase 0x000deb38 -[ThreadWorker runPrimaryTask:] + 145
    21 com.apple.Foundation 0x93492c47 __NSFireTimer + 279
    22 com.apple.CoreFoundation 0x90164b5e CFRunLoopRunSpecific + 4494
    23 com.apple.CoreFoundation 0x90164d18 CFRunLoopRunInMode + 88
    24 com.apple.Foundation 0x93492b15 -[NSRunLoop(NSRunLoop) runMode:beforeDate:] + 213
    25 com.aquafadas.AFBase 0x000dea82 -[ThreadWorker startThread:] + 422
    26 com.apple.Foundation 0x9345e5ad -[NSThread main] + 45
    27 com.apple.Foundation 0x9345e154 _NSThread__main_ + 308
    28 libSystem.B.dylib 0x93779c55 pthreadstart + 321
    29 libSystem.B.dylib 0x93779b12 thread_start + 34
    Thread 5:
    0 libSystem.B.dylib 0x9374fbce _semwaitsignal + 10
    1 libSystem.B.dylib 0x9377a8cd pthreadcondwait$UNIX2003 + 73
    2 com.apple.ColorSync 0x95b9f460 pthreadSemaphoreWait(t_pthreadSemaphore*) + 42
    3 com.apple.ColorSync 0x95bb1d92 CMMConvTask(void*) + 54
    4 libSystem.B.dylib 0x93779c55 pthreadstart + 321
    5 libSystem.B.dylib 0x93779b12 thread_start + 34
    Thread 6:
    0 libSystem.B.dylib 0x9374fbce _semwaitsignal + 10
    1 libSystem.B.dylib 0x9374f996 usleep$UNIX2003 + 61
    2 com.apple.AppKit 0x9660ccf9 -[NSUIHeartBeat _heartBeatThread:] + 2042
    3 com.apple.Foundation 0x9345e5ad -[NSThread main] + 45
    4 com.apple.Foundation 0x9345e154 _NSThread__main_ + 308
    5 libSystem.B.dylib 0x93779c55 pthreadstart + 321
    6 libSystem.B.dylib 0x93779b12 thread_start + 34
    Thread 7 Crashed:
    0 libobjc.A.dylib 0x93d826ec objc_msgSend + 28
    1 com.apple.Foundation 0x934a4f06 -[NSFileManager destinationOfSymbolicLinkAtPath:error:] + 70
    2 com.apple.Foundation 0x934a4eb1 -[NSFileManager pathContentOfSymbolicLinkAtPath:] + 49
    3 com.aquafadas.AFMediaManager 0x0021ce8c -[AFMediaManagerData setUrl:] + 415
    4 com.aquafadas.AFMediaManager 0x0021d49d -[AFMediaManagerData initWithName:url:] + 108
    5 com.aquafadas.AFMediaManager 0x002117fa -[AFMediaManagerImageData initWithName:url:] + 64
    6 com.aquafadas.AFMediaManager 0x00238b91 -[AFMediaManagerIPhotoAlbumSource buildMediaList] + 231
    7 com.aquafadas.AFMediaManager 0x0020b01a -[AFMediaManagerSource buildAllMediaListInThread2:] + 61
    8 com.aquafadas.AFMediaManager 0x0020b065 -[AFMediaManagerSource buildAllMediaListInThread2:] + 136
    9 com.aquafadas.AFMediaManager 0x0020b201 -[AFMediaManagerSource buildAllMediaListInThread:] + 190
    10 com.aquafadas.AFBase 0x000deb38 -[ThreadWorker runPrimaryTask:] + 145
    11 com.apple.Foundation 0x93492c47 __NSFireTimer + 279
    12 com.apple.CoreFoundation 0x90164b5e CFRunLoopRunSpecific + 4494
    13 com.apple.CoreFoundation 0x90164d18 CFRunLoopRunInMode + 88
    14 com.apple.Foundation 0x93492b15 -[NSRunLoop(NSRunLoop) runMode:beforeDate:] + 213
    15 com.aquafadas.AFBase 0x000dea82 -[ThreadWorker startThread:] + 422
    16 com.apple.Foundation 0x9345e5ad -[NSThread main] + 45
    17 com.apple.Foundation 0x9345e154 _NSThread__main_ + 308
    18 libSystem.B.dylib 0x93779c55 pthreadstart + 321
    19 libSystem.B.dylib 0x93779b12 thread_start + 34
    Thread 7 crashed with X86 Thread State (32-bit):
    eax: 0xb03d043c ebx: 0x9345c944 ecx: 0x93d838a4 edx: 0x0b00078c
    edi: 0x00000000 esi: 0xb03d043c ebp: 0xb03cf798 esp: 0xb03cf774
    ss: 0x0000001f efl: 0x00010286 eip: 0x93d826ec cs: 0x00000017
    ds: 0x0000001f es: 0x0000001f fs: 0x0000001f gs: 0x00000037
    cr2: 0x00000000
    Binary Images:
    0x1000 - 0x9bfe4 +com.aquafadas.PulpMotion 1.5.1 (v3009) <01bb0a80ff4166b9b9b44441aa00e4cd> /Applications/PulpMotion.app/Contents/MacOS/PulpMotion
    0xda000 - 0xe8ff7 +com.aquafadas.AFBase ??? (1.5) <34d24c572bf0ebd1b0ed07c85f2c007e> /Users/Shared/AFPulpMotionFramework/110/AFBase.framework/Versions/A/AFBase
    0xf8000 - 0x11efef +com.aquafadas.AFAppKit ??? (1.5) <9ac9377e6c1e3ed8debd85c7d3781e6c> /Users/Shared/AFPulpMotionFramework/110/AFAppKit.framework/Versions/A/AFAppKit
    0x138000 - 0x165fff +com.aquafadas.AFQuartzCore ??? (1.5) <518e9def1e5184432547d9bbfc338a8a> /Users/Shared/AFPulpMotionFramework/110/AFQuartzCore.framework/Versions/A/AFQua rtzCore
    0x182000 - 0x185ffb +com.aquafadas.AFQTKit ??? (1.5) <6c417a655b870a95be261dfbfcda5969> /Users/Shared/AFPulpMotionFramework/110/AFQTKit.framework/Versions/A/AFQTKit
    0x18b000 - 0x193ff7 +com.aquafadas.AFCapture ??? (1.5) <49129822029be8fa018e3ebb629898b3> /Users/Shared/AFPulpMotionFramework/110/AFCapture.framework/Versions/A/AFCaptur e
    0x19e000 - 0x1affff +com.yourcompany.AFPulpMotionBase ??? (1.0) <1d549725445eff49ccc4bc126e86e7cc> /Users/Shared/AFPulpMotionFramework/110/AFPulpMotionBase.framework/Versions/A/A FPulpMotionBase
    0x1c4000 - 0x1c6fff com.apple.ExceptionHandling 1.5 (10) /System/Library/Frameworks/ExceptionHandling.framework/Versions/A/ExceptionHand ling
    0x1cd000 - 0x1e8fff +com.aquafadas.AFHUDWindow ??? (1.5) <3cb6ce806570d112cf9c98c71efc7752> /Applications/PulpMotion.app/Contents/Frameworks/AFHUDWindow.framework/Versions /A/AFHUDWindow
    0x1fc000 - 0x241fff +com.aquafadas.AFMediaManager ??? (1.5) <b8b1ae1bddbae12522912c13bb0b83ba> /Applications/PulpMotion.app/Contents/Frameworks/AFMediaManager.framework/Versi ons/A/AFMediaManager
    0x26a000 - 0x275ff7 +net.brockerhoff.RBSplitView.Framework 1.1.3 (1.1.3) /Applications/PulpMotion.app/Contents/Frameworks/RBSplitView.framework/Versions /A/RBSplitView
    0x27d000 - 0x289ff7 +org.andymatuschak.Sparkle ??? (1.1) /Applications/PulpMotion.app/Contents/Frameworks/Sparkle.framework/Versions/A/S parkle
    0x294000 - 0x2a8fff +com.treehouseideas.DataCrux 1.0 (1.0) /Applications/PulpMotion.app/Contents/Frameworks/DataCrux.framework/Versions/A/ DataCrux
    0x2b7000 - 0x2dafc3 +ch.entropy.epegwrapper 1.4 (1.4) /Applications/PulpMotion.app/Contents/Frameworks/Epeg.framework/Versions/A/Epeg
    0x2e3000 - 0x341fdf +MMSBase ??? (???) /Applications/PulpMotion.app/Contents/Frameworks/MMSBase.framework/Versions/A/M MSBase
    0x383000 - 0x3abfff +com.yourcompany.iDiveKit ??? (1.0) /Applications/PulpMotion.app/Contents/Frameworks/iDiveKit18.framework/Versions/ A/iDiveKit18
    0x3cf000 - 0x3d2ffe +com.aquafadas.AFSupport ??? (1.0) <031d11e5793764be3c2fb3f41cef294a> /Applications/PulpMotion.app/Contents/Frameworks/AFSupport.framework/Versions/A /AFSupport
    0x3d9000 - 0x3d9ffc com.apple.iokit.dvcomponentglue 1.9.5 (1.9.5) <0759a2500bb678c4e6fc1c4a90d17e03> /System/Library/Frameworks/DVComponentGlue.framework/Versions/A/DVComponentGlue
    0x3de000 - 0x62dff3 com.apple.MessageFramework 3.2 (919.2) <5d5cf8b74fbe47eedba367a33ec67934> /System/Library/Frameworks/Message.framework/Versions/B/Message
    0x780000 - 0x7a4fe7 com.apple.speech.LatentSemanticMappingFramework 2.6.4 (2.6.4) <1591e65449707141112554274c637e5a> /System/Library/Frameworks/LatentSemanticMapping.framework/Versions/A/LatentSem anticMapping
    0xd00000 - 0xe0afef com.apple.RawCamera.bundle 2.0.4 (2.0.4) /System/Library/CoreServices/RawCamera.bundle/Contents/MacOS/RawCamera
    0xf0b000 - 0xf27ff7 GLRendererFloat ??? (???) <bfd00750994cffe4d8da2f893484358b> /System/Library/Frameworks/OpenGL.framework/Versions/A/Resources/GLRendererFloa t.bundle/GLRendererFloat
    0xfa2000 - 0xfa5fef com.apple.LiveType.component 2.1.3 (2.1.3) /Library/QuickTime/LiveType.component/Contents/MacOS/LiveType
    0xfaa000 - 0xff0fc3 com.apple.motion.component 1.0 (1.0) <77973a134e79426f853f2318e52a2207> /Library/QuickTime/Motion.component/Contents/MacOS/Motion
    0xff6000 - 0xff902f +Motion ??? (???) <b5e862eee0ff4f86a78998e3e601a18c> /Library/Frameworks/Motion.framework/Versions/A/Motion
    0x14670000 - 0x146d5fde com.apple.LiveType.framework 2.1.3 (2.1.3) /System/Library/PrivateFrameworks/LiveType.framework/Versions/A/LiveType
    0x146f5000 - 0x14767fff +com.DivXInc.DivXDecoder 6.4.0 (6.4.0) /Library/QuickTime/DivX Decoder.component/Contents/MacOS/DivX Decoder
    0x14775000 - 0x14911fcf +com.elgato.Turbo.component 1.2 (262) (1.2) /Library/QuickTime/Elgato Turbo.component/Contents/MacOS/Elgato Turbo
    0x14b91000 - 0x14d81fee +com.elgato.mpegsupport EyeTV MPEG Support 1.0.7 (build 43) (1.0.7) /Library/QuickTime/Elgato Turbo.component/Contents/Resources/EyeTV MPEG Support.component/Contents/MacOS/EyeTV MPEG Support
    0x14ede000 - 0x15060fef GLEngine ??? (???) <ae45a092ada96b84359d556dea35d505> /System/Library/Frameworks/OpenGL.framework/Resources/GLEngine.bundle/GLEngine
    0x16b34000 - 0x16d83fff com.apple.ATIRadeonX2000GLDriver 1.5.24 (5.2.4) <7fdabb2d9c0752d8c02f8f7f4b936dcd> /System/Library/Extensions/ATIRadeonX2000GLDriver.bundle/Contents/MacOS/ATIRade onX2000GLDriver
    0x18643000 - 0x18644ff3 ATSHI.dylib ??? (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/ATSHI.dylib
    0x18664000 - 0x18667fff +com.pulpmotion.ComicBook_Composition ??? (1.0) <21631febc390e77146f1737ffc79ef85> /Applications/PulpMotion.app/Contents/PlugIns/Compositions/ComicBook.pmCompo/Co ntents/MacOS/ComicBook
    0x186a0000 - 0x186a4fff +com.pulpmotion.Wedding1_Composition ??? (1.0) <acdec847d26953b7defaeb151ecccc90> /Applications/PulpMotion.app/Contents/PlugIns/Compositions/Wedding1.pmCompo/Con tents/MacOS/Wedding1
    0x186d1000 - 0x186d5fef +com.pulpmotion.Broderie_Composition ??? (1.0) <0920c8cb6949499ca33d7971487d542f> /Users/Judboy/Library/Application Support/PulpMotion/Compositions/Broderie.pmCompo/Contents/MacOS/Broderie
    0x18809000 - 0x1880efff +com.pulpmotion.rainbow-museum ??? (1.0) /Users/Judboy/Library/Application Support/PulpMotion/Compositions/RainbowMuseum.pmCompo/Contents/MacOS/RainbowMus eum
    0x18834000 - 0x18838fff +com.pulpmotion.ladyBugNB1_Composition ??? (1.0) <cfc6e37058ffc37095ef399b92bf3f4f> /Applications/PulpMotion.app/Contents/PlugIns/Compositions/LadyBugNB1.pmCompo/C ontents/MacOS/LadyBugNB1
    0x18863000 - 0x18867ff3 +com.pulpmotion.Slideshow6_Composition ??? (1.0) <64540d126f6e2b4ed7afa9824da0748d> /Applications/PulpMotion.app/Contents/PlugIns/Compositions/Slideshow6.pmCompo/C ontents/MacOS/Slideshow6
    0x18894000 - 0x1889cfff +com.pulpmotion.AquaNewsKitsch_Composition ??? (1.0) <bcf7b7a2c2a709e855b1c26ff4aebf70> /Applications/PulpMotion.app/Contents/PlugIns/Compositions/AquaNewsKitsch.pmCom po/Contents/MacOS/AquaNewsKitsch
    0x188cb000 - 0x188cffff +com.pulpmotion.Wedding2_Composition ??? (1.0) <aabe881895125bbdfc26c2770efd8e66> /Applications/PulpMotion.app/Contents/PlugIns/Compositions/Wedding2.pmCompo/Con tents/MacOS/Wedding2
    0x188fc000 - 0x18901fff +com.pulpmotion.MemoryMiner2_Composition ??? (1.0) <9c3666c7e0bd648982c68ea382950ce3> /Applications/PulpMotion.app/Contents/PlugIns/Compositions/MemoryMiner2.pmCompo /Contents/MacOS/MemoryMiner2
    0x1892e000 - 0x18932fef +com.pulpmotion.Bounding_Composition ??? (1.0) <75f2cb5e9f9f4c3eb1ffb4466435e3df> /Users/Judboy/Library/Application Support/PulpMotion/Compositions/Bounding.pmCompo/Contents/MacOS/Bounding
    0x1895f000 - 0x18963ff3 +com.pulpmotion.ParisByDay_Composition ??? (1.0) <d2e5088890094aa8df8321a6520707c3> /Applications/PulpMotion.app/Contents/PlugIns/Compositions/ParisByDay.pmCompo/C ontents/MacOS/ParisByDay
    0x1898e000 - 0x18992fff +com.pulpmotion.SummerBreeze_Composition ??? (1.0) <54b96e882b3f47e0881b31ea624b111f> /Users/Judboy/Library/Application Support/PulpMotion/Compositions/SummerBreeze.pmCompo/Contents/MacOS/SummerBreez e
    0x189c7000 - 0x189cbfff +com.pulpmotion.SlidingRevolution_Composition ??? (1.0) <99db7beeb01727a9fca8e1288ca1809f> /Applications/PulpMotion.app/Contents/PlugIns/Compositions/SlidingRevolution.pm Compo/Contents/MacOS/SlidingRevolution
    0x189f1000 - 0x189f6fff +com.pulpmotion.AntiqueShopInk_Composition ??? (1.0) <f27c475dfb853f62d41421c70538f08c> /Applications/PulpMotion.app/Contents/PlugIns/Compositions/AntiqueShopInk.pmCom po/Contents/MacOS/AntiqueShopInk
    0x18a23000 - 0x18a27ff3 +com.pulpmotion.CityFlyOver_Composition ??? (1.0) <c5784c25a97bbe36ca998a4bb4d3e8b3> /Applications/PulpMotion.app/Contents/PlugIns/Compositions/SFByNight.pmCompo/Co ntents/MacOS/SFByNight
    0x18a53000 - 0x18a57fff +com.pulpmotion.MoonTrip_Composition ??? (1.0) <581eb934ec30ca6b00f585ae46ea4812> /Applications/PulpMotion.app/Contents/PlugIns/Compositions/MoonTrip.pmCompo/Con tents/MacOS/MoonTrip
    0x18a85000 - 0x18a89fff +com.pulpmotion.ParisByNight_Composition ??? (1.0) <d743839400561e2f3fe5b988dcb773cc> /Applications/PulpMotion.app/Contents/PlugIns/Compositions/ParisByNight.pmCompo /Contents/MacOS/ParisByNight
    0x18ab3000 - 0x18ab7fff +com.pulpmotion.Slideshow1_Composition ??? (1.0) <3e4871b78b0729adf68480af0fe6b96f> /Applications/PulpMotion.app/Contents/PlugIns/Compositions/Slideshow1.pmCompo/C ontents/MacOS/Slideshow1
    0x18ae4000 - 0x18ae8fff +com.pulpmotion.Independance_Composition ??? (1.0) <488ae582fa5e42e497a9f11fdffea27f> /Users/Judboy/Library/Application Support/PulpMotion/Compositions/Independance.pmCompo/Contents/MacOS/Independanc e
    0x18b12000 - 0x18b16fff +com.pulpmotion.TimeMachine_Composition ??? (1.0) <b497dce232c347b49b7aa6ac8cf42888> /Users/Judboy/Library/Application Support/PulpMotion/Compositions/TimeMachine.pmCompo/Contents/MacOS/TimeMachine
    0x18b43000 - 0x18b47fff +com.pulpmotion.SFByDay_Composition ??? (1.0) <956cf18dfd02869b24e4cdba94926b0a> /Applications/PulpMotion.app/Contents/PlugIns/Compositions/SFByDay.pmCompo/Cont ents/MacOS/SFByDay
    0x18b73000 - 0x18b77fff +com.pulpmotion.Crayon_Composition ??? (1.0) <d89892038e3845888469f0a73b5ef8c2> /Users/Judboy/Library/Application Support/PulpMotion/Compositions/Crayon.pmCompo/Contents/MacOS/Crayon
    0x18ba4000 - 0x18ba8fff +com.pulpmotion.LadyBugColor_Composition ??? (1.0) <7157d87a4ac9dfd6c122aa3f7faecf68> /Applications/PulpMotion.app/Contents/PlugIns/Compositions/LadyBugColor.pmCompo /Contents/MacOS/LadyBugColor
    0x18bd2000 - 0x18bd6fff +com.pulpmotion.TwistBox_Composition ??? (1.0) <4b617f245c577ff895d7f696d638412f> /Applications/PulpMotion.app/Contents/PlugIns/Compositions/TwistBox.pmCompo/Con tents/MacOS/TwistBox
    0x18c03000 - 0x18c07fff +com.pulpmotion.WhiteSlidingRevolution_Composition ??? (1.0) <0b540b1ed9a848fba8bfb5ab4e6341df> /Users/Judboy/Library/Application Support/PulpMotion/Compositions/WhiteSlidingRevolution.pmCompo/Contents/MacOS/W hiteSlidingRevolution
    0x18c35000 - 0x18c3afff +com.pulpmotion.AntiqueShop_Composition ??? (1.0) <dd5dcd9920f49d4d9ac327351499c71d> /Applications/PulpMotion.app/Contents/PlugIns/Compositions/AntiqueShop.pmCompo/ Contents/MacOS/AntiqueShop
    0x18c67000 - 0x18c6bfff +com.pulpmotion.Christmas_Composition ??? (1.0) <beee7749e4016c5047b0ca46079d4b94> /Applications/PulpMotion.app/Contents/PlugIns/Compositions/Christmas.pmCompo/Co ntents/MacOS/Christmas
    0x18c98000 - 0x18c9afff +com.pulpmotion.Globe_Composition ??? (1.0) <fea3cfa7af08d77a7f9b8fc00b01f73f> /Applications/PulpMotion.app/Contents/PlugIns/Compositions/Globe.pmCompo/Conten ts/MacOS/Globe
    0x18cc7000 - 0x18ccbfff +com.pulpmotion.Factory_Composition ??? (1.0) <bfa7210e81c91dcea37aa0d5a75fabfb> /Applications/PulpMotion.app/Contents/PlugIns/Compositions/Factory.pmCompo/Cont ents/MacOS/Factory
    0x18d95000 - 0x18d9afff +com.pulpmotion.AquaNews_Composition ??? (1.0) <0f362fc41db07e86d7767b1267cb15b5> /Applications/PulpMotion.app/Contents/PlugIns/Compositions/AquaNews.pmCompo/Con tents/MacOS/AquaNews
    0x18dc9000 - 0x18dcdfff +com.pulpmotion.Monsoon_Composition ??? (1.0) <8a9ad080bf8f8f7df205a84781ccfac7> /Applications/PulpMotion.app/Contents/PlugIns/Compositions/Monsoon.pmCompo/Cont ents/MacOS/Monsoon
    0x18dfa000 - 0x18dfffff +com.pulpmotion.TornPaper_Composition ??? (1.0) <7297680f3f6b447d8a597e2a4ff391ce> /Users/Judboy/Library/Application Support/PulpMotion/Compositions/TornPaper.pmCompo/Contents/MacOS/TornPaper
    0x18e2c000 - 0x18e30fff +com.pulpmotion.Autumn_Composition ??? (1.0) <3f34ebc5dadc53e8293a81d0e960e9f6> /Applications/PulpMotion.app/Contents/PlugIns/Compositions/Autumn.pmCompo/Conte nts/MacOS/Autumn
    0x18e5e000 - 0x18e62fff +com.pulpmotion.Slice_Composition ??? (1.0) <63f61acf870d959ea46becdab6754527> /Applications/PulpMotion.app/Contents/PlugIns/Compositions/Slice.pmCompo/Conten ts/MacOS/Slice
    0x18e8f000 - 0x18e93ff7 +com.pulpmotion.DailyPulp_Composition ??? (1.0) <6ba2379de5e1b67dab2f22881fff601f> /Applications/PulpMotion.app/Contents/PlugIns/Compositions/DailyPulp.pmCompo/Co ntents/MacOS/DailyPulp
    0x18ec0000 - 0x18ec4fff +com.pulpmotion.Halloween_Composition ??? (1.2) <1773db77f062c8d4d947ae1aa809fcda> /Applications/PulpMotion.app/Contents/PlugIns/Compositions/Halloween.pmCompo/Co ntents/MacOS/Halloween
    0x18ef1000 - 0x18ef6fff +com.pulpmotion.MemoryMiner1_Composition ??? (1.0) <1b9f74a8e05850e4604e26176e96eec4> /Applications/PulpMotion.app/Contents/PlugIns/Compositions/MemoryMiner1.pmCompo /Contents/MacOS/MemoryMiner1
    0x18f23000 - 0x18f26fff +com.pulpmotion.M_Composition ??? (1.0) <792ff8b56a54ad074ce65bf4949f21d4> /Applications/PulpMotion.app/Contents/PlugIns/Compositions/M.pmCompo/Contents/M acOS/M
    0x18f53000 - 0x18f57fff +com.pulpmotion.MultiScreen_Composition ??? (1.0) <0e5c0897f1ff0950fd57ba7ef87c4069> /Applications/PulpMotion.app/Contents/PlugIns/Compositions/MultiScreen.pmCompo/ Contents/MacOS/MultiScreen
    0x18f84000 - 0x18f88fff +com.pulpmotion.SlideShow3D_Composition ??? (1.0) <063eb8d8f587c60cb2a6ae6e96ae621a> /Applications/PulpMotion.app/Contents/PlugIns/Compositions/SlideShow3D.pmCompo/ Contents/MacOS/SlideShow3D
    0x18fb5000 - 0x18fbafff +com.pulpmotion.MovieGallery_Composition ??? (1.0) <6d93b4388cac3ed62cdd25bff3c0c473> /Applications/PulpMotion.app/Contents/PlugIns/Compositions/MovieGallery.pmCompo /Contents/MacOS/MovieGallery
    0x18fe8000 - 0x18fecfff +com.pulpmotion.FarWest_Composition ??? (1.0) <e5d7b3e33f29b45d469eb5a4ca3f280c> /Applications/PulpMotion.app/Contents/PlugIns/Compositions/FarWest.pmCompo/Cont ents/MacOS/FarWest
    0x18ffb000 - 0x18ffffff +com.pulpmotion.BlackMuseum_Composition ??? (1.0) <336db9f5e20d9e3ee9ceebf39cc7c4d7> /Applications/PulpMotion.app/Contents/PlugIns/Compositions/BlackMuseum.pmCompo/ Contents/MacOS/BlackMuseum
    0x1902c000 - 0x19031fff +com.pulpmotion.Museum_Composition ??? (1.0) <6668af07c6d0b3bb3b50df936219a6bd> /Applications/PulpMotion.app/Contents/PlugIns/Compositions/Museum.pmCompo/Conte nts/MacOS/Museum
    0x1938d000 - 0x193a9fe7 com.apple.QuartzComposer.ExtraPatches 2.1 (106.3) /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuartzCompose r.framework/Versions/A/Resources/ExtraPatches.plugin/Contents/MacOS/ExtraPatches
    0x193bb000 - 0x193d8ff7 com.apple.audio.midi.CoreMIDI 1.6 (42) /System/Library/Frameworks/CoreMIDI.framework/Versions/A/CoreMIDI
    0x193f0000 - 0x1940efe3 libexpat.1.dylib ??? (???) <eff8a63a23a7d07af62b36fdb329e393> /usr/lib/libexpat.1.dylib
    0x194ea000 - 0x194efff3 libCGXCoreImage.A.dylib ??? (???) <978986709159e5fe9e094df5efddac1d> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCGXCoreImage.A.dylib
    0x30000000 - 0x3000881f +com.bDistributed.BDControl BDControl version 1.0.5 (1.0.5) /Applications/PulpMotion.app/Contents/Frameworks/BDControl.framework/Versions/A /BDControl
    0x3c000000 - 0x3c027fff +CURLHandle 1.8 (1.8) /Applications/PulpMotion.app/Contents/Frameworks/CURLHandle.framework/Versions/ A/CURLHandle
    0x8fe00000 - 0x8fe2da53 dyld 96.2 (???) <7af47d3b00b2268947563c7fa8c59a07> /usr/lib/dyld
    0x90003000 - 0x90048fef com.apple.Metadata 10.5.2 (398.7) <73a6424c06effc474e699cde6883de99> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Metadat a.framework/Versions/A/Metadata
    0x90049000 - 0x900f0feb com.apple.QD 3.11.52 (???) <c72bd7bd2ce12694c3640a731d1ad878> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ QD.framework/Versions/A/QD
    0x900f1000 - 0x900f1ffc com.apple.audio.units.AudioUnit 1.5 (1.5) /System/Library/Frameworks/AudioUnit.framework/Versions/A/AudioUnit
    0x900f2000 - 0x90224fef com.apple.CoreFoundation 6.5.1 (476.10) <d5bed2688a5eea11a6dc3a3c5c17030e> /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
    0x90228000 - 0x902afff7 libsqlite3.0.dylib ??? (???) <6978bbcca4277d6ae9f042beff643f7d> /usr/lib/libsqlite3.0.dylib
    0x902b0000 - 0x902f1fe7 libRIP.A.dylib ??? (???) <9d42e83d860433f9126c4871d1fe0ce8> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libRIP.A.dylib
    0x902f2000 - 0x903acfe3 com.apple.CoreServices.OSServices 224.4 (224.4) <ff5007ab220908ac54b6c661e447d593> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/OSServi ces.framework/Versions/A/OSServices
    0x903ad000 - 0x903c3fff com.apple.DictionaryServices 1.0.0 (1.0.0) <ad0aa0252e3323d182e17f50defe56fc> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Diction aryServices.framework/Versions/A/DictionaryServices
    0x903c4000 - 0x90a5dfff com.apple.CoreGraphics 1.351.21 (???) <6c93fd21149f389129fe47fa6ef71880> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/CoreGraphics
    0x90a5e000 - 0x90a86ff7 com.apple.shortcut 1 (1.0) <057783867138902b52bc0941fedb74d1> /System/Library/PrivateFrameworks/Shortcut.framework/Versions/A/Shortcut
    0x90a87000 - 0x90ac5fff com.apple.CoreMediaIOServicesPrivate 8.0 (8.0) /System/Library/PrivateFrameworks/CoreMediaIOServicesPrivate.framework/Versions /A/CoreMediaIOServicesPrivate
    0x90ac6000 - 0x90b42feb com.apple.audio.CoreAudio 3.1.0 (3.1) <70bb7c657061631491029a61babe0b26> /System/Library/Frameworks/CoreAudio.framework/Versions/A/CoreAudio
    0x90b43000 - 0x90b7dfff com.apple.coreui 1.1 (61) /System/Library/PrivateFrameworks/CoreUI.framework/Versions/A/CoreUI
    0x90b7e000 - 0x90b9cff3 com.apple.DirectoryService.Framework 3.5.1 (3.5.1) <96407dca4d6b1d10ae5ca1881e31b27a> /System/Library/Frameworks/DirectoryService.framework/Versions/A/DirectoryServi ce
    0x90b9d000 - 0x90cc1fe3 com.apple.audio.toolbox.AudioToolbox 1.5.1 (1.5.1) /System/Library/Frameworks/AudioToolbox.framework/Versions/A/AudioToolbox
    0x90cc2000 - 0x90cc9ff7 libCGATS.A.dylib ??? (???) <9b29a5500efe01cc3adea67bbc42568e> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCGATS.A.dylib
    0x90cca000 - 0x90d47fef libvMisc.dylib ??? (???) /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvMisc.dylib
    0x90d48000 - 0x90d7afff com.apple.LDAPFramework 1.4.3 (106) <3a5c9df6032143cd6bc2658a9d328d8e> /System/Library/Frameworks/LDAP.framework/Versions/A/LDAP
    0x90d7b000 - 0x90e06fff com.apple.framework.IOKit 1.5.1 (???) <a17f9f5ea7e8016a467e67349f4d3d03> /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit
    0x90e07000 - 0x90e93ffb com.apple.QTKit 7.4.5 (67) /System/Library/Frameworks/QTKit.framework/Versions/A/QTKit
    0x90e94000 - 0x90ef9ffb com.apple.ISSupport 1.6 (34) /System/Library/PrivateFrameworks/ISSupport.framework/Versions/A/ISSupport
    0x90efa000 - 0x90efcff5 libRadiance.dylib ??? (???) <20eadb285da83df96c795c2c5fa20590> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libRadiance.dylib
    0x90efd000 - 0x90f57ff7 com.apple.CoreText 2.0.1 (???) <07494945ad1e3f5395599f42748457cc> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreText.framework/Versions/A/CoreText
    0x9104d000 - 0x91132ff3 com.apple.CoreData 100.1 (186) <8e28162ef2288692615b52acc01f8b54> /System/Library/Frameworks/CoreData.framework/Versions/A/CoreData
    0x91133000 - 0x911a5fff com.apple.PDFKit 2.1 (2.1) /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/PDFKit.framew ork/Versions/A/PDFKit
    0x911a6000 - 0x911cefff libcups.2.dylib ??? (???) <2f0a710a9128882efb2ed92ad139b58c> /usr/lib/libcups.2.dylib
    0x911cf000 - 0x911d1fff com.apple.securityhi 3.0 (30817) <2b2854123fed609d1820d2779e2e0963> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SecurityHI.fr amework/Versions/A/SecurityHI
    0x911d2000 - 0x9124cff8 com.apple.print.framework.PrintCore 5.5.2 (245.1) <3c9de512e95fbd838694ee5008d56a28> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ PrintCore.framework/Versions/A/PrintCore
    0x9124d000 - 0x912d9ff7 com.apple.LaunchServices 286.5 (286.5) <33c3ae54abb276b61a99d4c764d883e2> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/LaunchS ervices.framework/Versions/A/LaunchServices
    0x912da000 - 0x912dbffc libffi.dylib ??? (???) <a3b573eb950ca583290f7b2b4c486d09> /usr/lib/libffi.dylib
    0x912dc000 - 0x91326fe1 com.apple.securityinterface 3.0 (32532) <f521dae416ce7a3bdd594b0d4e2fb517> /System/Library/Frameworks/SecurityInterface.framework/Versions/A/SecurityInter face
    0x91327000 - 0x91380ff7 libGLU.dylib ??? (???) /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLU.dylib
    0x91381000 - 0x92431ff6 com.apple.QuickTimeComponents.component 7.4.5 (67) /System/Library/QuickTime/QuickTimeComponents.component/Contents/MacOS/QuickTim eComponents
    0x92432000 - 0x92439fff com.apple.agl 3.0.9 (AGL-3.0.9) <7dac4a7cb0de2f6d08ae71c1249379e3> /System/Library/Frameworks/AGL.framework/Versions/A/AGL
    0x9243a000 - 0x92448ffd libz.1.dylib ??? (???) <5ddd8539ae2ebfd8e7cc1c57525385c7> /usr/lib/libz.1.dylib
    0x92449000 - 0x924c0fe3 com.apple.CFNetwork 221.5 (221.5) <5474cdd7d2a8b2e8059de249c702df9e> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CFNetwo rk.framework/Versions/A/CFNetwork
    0x924c1000 - 0x924f8fff com.apple.SystemConfiguration 1.9.1 (1.9.1) <8a76e429301afe4eba1330bfeaabd9f2> /System/Library/Frameworks/SystemConfiguration.framework/Versions/A/SystemConfi guration
    0x924f9000 - 0x92505fff libbz2.1.0.dylib ??? (???) <9ea4fe135c9e52bd0590eec12c738e82> /usr/lib/libbz2.1.0.dylib
    0x92506000 - 0x92506ff8 com.apple.ApplicationServices 34 (34) <8f910fa65f01d401ad8d04cc933cf887> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Application Services
    0x92507000 - 0x9254bfeb com.apple.DirectoryService.PasswordServerFramework 3.0.2 (3.0.2) <cded450287baf9b5de8856b540653322> /System/Library/PrivateFrameworks/PasswordServer.framework/Versions/A/PasswordS erver
    0x9254c000 - 0x92613ff2 com.apple.vImage 3.0 (3.0) /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vImage.fr amework/Versions/A/vImage
    0x92614000 - 0x92620fe7 com.apple.opengl 1.5.6 (1.5.6) <d599b1bb0f8a8da6fd125e2587b27776> /System/Library/Frameworks/OpenGL.framework/Versions/A/OpenGL
    0x92621000 - 0x9264cfe7 libauto.dylib ??? (???) <42d8422dc23a18071869fdf7b5d8fab5> /usr/lib/libauto.dylib
    0x9266a000 - 0x92674feb com.apple.audio.SoundManager 3.9.2 (3.9.2) <0f2ba6e891d3761212cf5a5e6134d683> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CarbonSound.f ramework/Versions/A/CarbonSound
    0x92675000 - 0x9267dfff com.apple.DiskArbitration 2.2.1 (2.2.1) <75b0c8d8940a8a27816961dddcac8e0f> /System/Library/Frameworks/DiskArbitration.framework/Versions/A/DiskArbitration
    0x9267e000 - 0x92a8efef libBLAS.dylib ??? (???) /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libBLAS.dylib
    0x92a8f000 - 0x92c0dfff com.apple.AddressBook.framework 4.1 (687.1) <b2f2f2c925eb080e53b841014e4f9a7c> /System/Library/Frameworks/AddressBook.framework/Versions/A/AddressBook
    0x92c0e000 - 0x92c0effd com.apple.Accelerate.vecLib 3.4.2 (vecLib 3.4.2) /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/vecLib
    0x92ce3000 - 0x92ceafe9 libgcc_s.1.dylib ??? (???) <f53c808e87d1184c0f9df63aef53ce0b> /usr/lib/libgcc_s.1.dylib
    0x92ceb000 - 0x92d3bff7 com.apple.HIServices 1.7.0 (???) <f7e78891a6d08265c83dca8e378be1ea> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ HIServices.framework/Versions/A/HIServices
    0x92d3c000 - 0x92d60fff libxslt.1.dylib ??? (???) <4933ddc7f6618743197aadc85b33b5ab> /usr/lib/libxslt.1.dylib
    0x92d61000 - 0x92e40fff com.apple.syncservices 3.1 (389.1) <f553602f67692e7a736edb702c64792a> /System/Library/Frameworks/SyncServices.framework/Versions/A/SyncServices
    0x92e41000 - 0x92e52ffe com.apple.CFOpenDirectory 10.5 (10.5) <6a7f55108d77db7384d0e2219d07e9f8> /System/Library/PrivateFrameworks/OpenDirectory.framework/Versions/A/Frameworks /CFOpenDirectory.framework/Versions/A/CFOpenDirectory
    0x92e53000 - 0x92e89fef libtidy.A.dylib ??? (???) <e4d3e7399fb83d7f145f9b4ec8196242> /usr/lib/libtidy.A.dylib
    0x92f53000 - 0x92fd2ff5 com.apple.SearchKit 1.2.0 (1.2.0) <277b460da86bc222785159fe77e2e2ed> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SearchK it.framework/Versions/A/SearchKit
    0x92fd3000 - 0x930d4fef com.apple.PubSub 1.0.3 (65.1) /System/Library/Frameworks/PubSub.framework/Versions/A/PubSub
    0x930d5000 - 0x930f4ffa libJPEG.dylib ??? (???) <0cfb80109d624beb9ceb3c43b6c5ec10> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libJPEG.dylib
    0x930f5000 - 0x93137fef com.apple.NavigationServices 3.5.1 (161) <cc6bd78eabf1e2e7166914e9f12f5850> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/NavigationSer vices.framework/Versions/A/NavigationServices
    0x933a1000 - 0x93453ffb libcrypto.0.9.7.dylib ??? (???) <330b0e48e67faffc8c22dfc069ca7a47> /usr/lib/libcrypto.0.9.7.dylib
    0x93454000 - 0x936cefe7 com.apple.Foundation 6.5.4 (677.15) <6216196287f98a65ddb654d04d773e7b> /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
    0x936cf000 - 0x936daff9 com.apple.helpdata 1.0 (14) /System/Library/PrivateFrameworks/HelpData.framework/Versions/A/HelpData
    0x936db000 - 0x9372bfeb com.apple.framework.familycontrols 1.0.2 (1.0.2) <41191d08725b27c8480cd7e90fd73ee8> /System/Library/PrivateFrameworks/FamilyControls.framework/Versions/A/FamilyCon trols
    0x9372c000 - 0x93747ffb libPng.dylib ??? (???) <b6abcac36ec7654ff3e1cfa786b0117b> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libPng.dylib
    0x93748000 - 0x938a7ff3 libSystem.B.dylib ??? (???) <4899376234e55593b22fc370935f8cdf> /usr/lib/libSystem.B.dylib
    0x938a8000 - 0x938adfff com.apple.CommonPanels 1.2.4 (85) <ea0665f57cd267609466ed8b2b20e893> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CommonPanels. framework/Versions/A/CommonPanels
    0x938ae000 - 0x938e7ffe com.apple.securityfoundation 3.0 (32989) <e9171eda22c69c884a04a001aeb526e0> /System/Library/Frameworks/SecurityFoundation.framework/Versions/A/SecurityFoun dation
    0x938e8000 - 0x93925fff com.apple.DAVKit 3.0.2 (643) /System/Library/PrivateFrameworks/DAVKit.framework/Versions/A/DAVKit
    0x93926000 - 0x93982ff7 com.apple.htmlrendering 68 (1.1.3) <fe87a9dede38db00e6c8949942c6bd4f> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HTMLRendering .framework/Versions/A/HTMLRendering
    0x93983000 - 0x93988fff com.apple.backup.framework 1.0 (1.0) /System/Library/PrivateFrameworks/Backup.framework/Versions/A/Backup
    0x93989000 - 0x93a1cfff com.apple.ink.framework 101.3 (86) <bf3fa8927b4b8baae92381a976fd2079> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Ink.framework /Versions/A/Ink
    0x93a1d000 - 0x93d25fff com.apple.HIToolbox 1.5.2 (???) <7449d6f2da33ded6936243a92e307459> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.fra mework/Versions/A/HIToolbox
    0x93d26000 - 0x93d43ff7 com.apple.QuickLookFramework 1.1 (170.2) /System/Library/Frameworks/QuickLook.framework/Versions/A/QuickLook
    0x93d4e000 - 0x93d4effe com.apple.quartzframework 1.5 (1.5) <4b8f505e32e4f2d67967a276401f9aaf> /System/Library/Frameworks/Quartz.framework/Versions/A/Quartz
    0x93d4f000 - 0x93d6dfff libresolv.9.dylib ??? (???) <0629b6dcd71f4aac6a891cbe26253e85> /usr/lib/libresolv.9.dylib
    0x93d6e000 - 0x93e4dfff libobjc.A.dylib ??? (???) <a53206274b6c2d42691f677863f379ae> /usr/lib/libobjc.A.dylib
    0x93e4e000 - 0x93e5bff7 com.apple.DMNotification 1.1.0 (143) <07530f513cd71e41bccbf19225ac1cb4> /System/Library/PrivateFrameworks/DMNotification.framework/Versions/A/DMNotific ation
    0x93e5c000 - 0x93f19fff com.apple.WebKit 5525.13 (5525.13) <6534b17c7310ea608c9f3ca41df9b4a4> /System/Library/Frameworks/WebKit.framework/Versions/A/WebKit
    0x93f1a000 - 0x93f1fffc com.apple.KerberosHelper 1.0 (1.0) <1cb4daff689a346f24e17131d83c0c5b> /System/Library/PrivateFrameworks/KerberosHelper.framework/Versions/A/KerberosH elper
    0x93f20000 - 0x93fb3ff3 com.apple.ApplicationServices.ATS 3.2 (???) <cdf31bd0ac7de54a35ee2d27cf86b6be> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/ATS
    0x93fb4000 - 0x94487fde libGLProgrammability.dylib ??? (???) <a3d68f17f37ff55a3e61aca1e3aee522> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLProgramma bility.dylib
    0x94488000 - 0x94497ffe com.apple.DSObjCWrappers.Framework 1.2.1 (1.2.1) <eac1c7b7c07ed3148c85934b6f656308> /System/Library/PrivateFrameworks/DSObjCWrappers.framework/Versions/A/DSObjCWra ppers
    0x94498000 - 0x9449cfff libGIF.dylib ??? (???) <d4234e6f5e5f530bdafb969157f1f17b> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libGIF.dylib
    0x9449d000 - 0x944a1fff libmathCommon.A.dylib ??? (???) /usr/lib/system/libmathCommon.A.dylib
    0x944a2000 - 0x94838ff7 com.apple.QuartzCore 1.5.1 (1.5.1) <665c80f6e28555b303020c8007c36b8b> /System/Library/Frameworks/QuartzCore.framework/Versions/A/QuartzCore
    0x94839000 - 0x94863fff com.apple.CoreMediaPrivate 8.0 (8.0) <a13e1ebd7bdd896e13d33ef37f3e966b> /System/Library/PrivateFrameworks/CoreMediaPrivate.framework/Versions/A/CoreMed iaPrivate
    0x94864000 - 0x94864fff com.apple.Carbon 136 (136) <98a5e3bc0c4fa44bbb09713bb88707fe> /System/Library/Frameworks/Carbon.framework/Versions/A/Carbon
    0x94865000 - 0x94b85fe2 com.apple.QuickTime 7.4.5 (67) <520cbf4ae05622466ad1b89f1ba3a4e1> /System/Library/Frameworks/QuickTime.framework/Versions/A/QuickTime
    0x94b86000 - 0x94b8cfff com.apple.print.framework.Print 218.0.2 (220.1) <8bf7ef71216376d12fcd5ec17e43742c> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Print.framewo rk/Versions/A/Print
    0x94bdc000 - 0x94f9afea libLAPACK.dylib ??? (???) /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libLAPACK.dylib
    0x94f9b000 - 0x955ebfff com.apple.WebCore 5525.13 (5525.13) <c4293b0cc1f8614190058683137459c6> /System/Library/Frameworks/WebKit.framework/Versions/A/Frameworks/WebCore.frame work/Versions/A/WebCore
    0x955ec000 - 0x95649ffb libstdc++.6.dylib ??? (???) <04b812dcec670daa8b7d2852ab14be60> /usr/lib/libstdc++.6.dylib
    0x9564a000 - 0x9564affb com.apple.installserver.framework 1.0 (8) /System/Library/PrivateFrameworks/InstallServer.framework/Versions/A/InstallSer ver
    0x9564b000 - 0x9567ffef com.apple.bom 9.0 (136) <b72e1fd1d3bfd8c288381adb23775fd4> /System/Library/PrivateFrameworks/Bom.framework/Versions/A/Bom
    0x95680000 - 0x95680ffa com.apple.CoreServices 32 (32) <2fcc8f3bd5bbfc000b476cad8e6a3dd2> /System/Library/Frameworks/CoreServices.framework/Versions/A/CoreServices
    0x95681000 - 0x957d9fee com.apple.CalendarStore 3.0.2 (809) /System/Library/Frameworks/CalendarStore.framework/Versions/A/CalendarStore
    0x957da000 - 0x957dfffb com.apple.DisplayServicesFW 2.0 (2.0) <8953865f53e940007a4e4ac5390d3c95> /System/Library/PrivateFrameworks/DisplayServices.framework/Versions/A/DisplayS ervices
    0x957e0000 - 0x95917feb com.apple.imageKit 1.0.1 (1.0) <4cb353ae2d3b141afc3d82b557bde878> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/ImageKit.fram ework/Versions/A/ImageKit
    0x95918000 - 0x95938ff2 libGL.dylib ??? (???) /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib
    0x95939000 - 0x95969ff3 com.apple.DotMacSyncManager 1.2.2 (280) <fa19f847dcb535449201e99f5270065d> /System/Library/PrivateFrameworks/DotMacSyncManager.framework/Versions/A/DotMac SyncManager
    0x9596a000 - 0x95a1afff edu.mit.Kerberos 6.0.12 (6.0.12) <3dd13466876a8fe4549cfc1354233ec3> /System/Library/Frameworks/Kerberos.framework/Versions/A/Kerberos
    0x95a1b000 - 0x95a1bffd com.apple.Accelerate 1.4.2 (Accelerate 1.4.2) /System/Library/Frameworks/Accelerate.framework/Versions/A/Accelerate
    0x95a1c000 - 0x95a32fe7 com.apple.CoreVideo 1.5.0 (1.5.0) <bad2d3a9a92fdecd02e64f0b73a76f27> /System/Library/Frameworks/CoreVideo.framework/Versions/A/CoreVideo
    0x95a33000 - 0x95b6bff7 libicucore.A.dylib ??? (???) <afcea652ff2ec36885b2c81c57d06d4c> /usr/lib/libicucore.A.dylib
    0x95b6c000 - 0x95c37fff com.apple.ColorSync 4.5.0 (4.5.0) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ColorSync.framework/Versions/A/ColorSync
    0x95c38000 - 0x95d06ff7 com.apple.JavaScriptCore 5525.13 (5525.13) <04772ff1212d98f31c613dde4d123698> /System/Library/Frameworks/JavaScriptCore.framework/Versions/A/JavaScriptCore
    0x95d07000 - 0x95de8ff7 libxml2.2.dylib ??? (???) <3cd4cccd4ca35dffa4688436aa0cd908> /usr/lib/libxml2.2.dylib
    0x95e19000 - 0x95e85ffb com.apple.WhitePagesFramework 1.1 (113.0) /System/Library/PrivateFrameworks/WhitePages.framework/Versions/A/WhitePages
    0x95e86000 - 0x95e86ffd com.apple.vecLib 3.4.2 (vecLib 3.4.2) /System/Library/Frameworks/vecLib.framework/Versions/A/vecLib
    0x95e87000 - 0x96042ff3 com.apple.QuartzComposer 2.1 (106.3) <ed79ff3644e8883905ba3ba681742476> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuartzCompose r.framework/Versions/A/QuartzComposer
    0x96048000 - 0x9618dff7 com.apple.ImageIO.framework 2.0.1 (2.0.1) <68ba11e689a9ca30f8310935cd1e02d6> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/ImageIO
    0x961ba000 - 0x96209fff com.apple.QuickLookUIFramework 1.1 (170.2) /System/Library/PrivateFrameworks/QuickLookUI.framework/Versions/A/QuickLookUI
    0x9620a000 - 0x9622efeb libssl.0.9.7.dylib ??? (???) <acee7fc534674498dcac211318aa23e8> /usr/lib/libssl.0.9.7.dylib
    0x9622f000 - 0x96260ffb com.apple.quartzfilters 1.5.0 (1.5.0) <22581f8fe9dd2cb261f97a897407ec3e> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuartzFilters .framework/Versions/A/QuartzFilters
    0x96261000 - 0x96279fff com.apple.openscripting 1.2.6 (???) <b8e553df643f2aec68fa968b3b459b2b> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/OpenScripting .framework/Versions/A/OpenScripting
    0x9627a000 - 0x9628afff com.apple.speech.synthesis.framework 3.6.59 (3.6.59) <4ffef145fad3d4d787e0c33eab26b336> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ SpeechSynthesis.framework/Versions/A/SpeechSynthesis
    0x9628b000 - 0x96294fff com.apple.speech.recognition.framework 3.7.24 (3.7.24) <d3180f9edbd9a5e6f283d6156aa3c602> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SpeechRecogni tion.framework/Versions/A/SpeechRecognition
    0x96295000 - 0x96460ff7 com.apple.security 5.0.2 (33001) <0788969ffe7961153219be10786da436> /System/Library/Frameworks/Security.framework/Versions/A/Security
    0x96461000 - 0x96470fff libsasl2.2.dylib ??? (???) <b9e1ca0b6612e280b6cbea6df0eec5f6> /usr/lib/libsasl2.2.dylib
    0x96471000 - 0x96475fff com.apple.OpenDirectory 10.5 (10.5) <e7e4507f5ecd8c8cdcdb2fc0675da0b4> /System/Library/PrivateFrameworks/OpenDirectory.framework/Versions/A/OpenDirect ory
    0x96476000 - 0x96481fe7 libCSync.A.dylib ??? (???) <df82fc093e498a9eb5490761cb292218> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCSync.A.dylib
    0x96482000 - 0x96496ff3 com.apple.ImageCapture 4.0 (5.0.0) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/ImageCapture. framework/Versions/A/ImageCapture
    0x96497000 - 0x96520fe3 com.apple.DesktopServices 1.4.5 (1.4.5) <8b264cd6abbbd750928c637e1247269d> /System/Library/PrivateFrameworks/DesktopServicesPriv.framework/Versions/A/Desk topServicesPriv
    0x96521000 - 0x96521ffe com.apple.MonitorPanelFramework 1.2.0 (1.2.0) <a2b462be6c51187eddf7d097ef0e0a04> /System/Library/PrivateFrameworks/MonitorPanel.framework/Versions/A/MonitorPane l
    0x96522000 - 0x96561fef libTIFF.dylib ??? (???) <6d0f80e9d4d81f3f64c876aca005bd53> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libTIFF.dylib
    0x96562000 - 0x96565fff com.apple.help 1.1 (36) <b507b08e484cb89033e9cf23062d77de> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Help.framewor k/Versions/A/Help
    0x96566000 - 0x96d63fef com.apple.AppKit 6.5.2 (949.26) <bc4593edd8a224409fb6953a354505a0> /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit
    0x96d64000 - 0x96d91feb libvDSP.dylib ??? (???) <b232c018ddd040ec4e2c2af632dd497f> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvDSP.dylib
    0x96d92000 - 0x96dd0ff7 libGLImage.dylib ??? (???) <090de775838db03ddc710f57abbf6218> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLImage.dyl ib
    0x96dd1000 - 0x96ddcfff com.apple.dotMacLegacy 3 (242) <d59587ecfd0e0e31ce7d61f544cfa298> /System/Library/PrivateFrameworks/DotMacLegacy.framework/Versions/A/DotMacLegac y
    0x96ddd000 - 0x96de4ffe libbsm.dylib ??? (???) <d25c63378a5029648ffd4b4669be31bf> /usr/lib/libbsm.dylib
    0x96de5000 - 0x96e87ff3 com.apple.QuickTimeImporters.component 7.4.5 (67) /System/Library/QuickTime/QuickTimeImporters.component/Contents/MacOS/QuickTime Importers
    0x96e88000 - 0x96e88ff8 com.apple.Cocoa 6.5 (???) <e064f94d969ce25cb7de3cfb980c3249> /System/Library/Frameworks/Cocoa.framework/Versions/A/Cocoa
    0x96e89000 - 0x96eb8fe3 com.apple.AE 402.2 (402.2) <e01596187e91af5d48653920017b8c8e> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/AE.fram ework/Versions/A/AE
    0x96eb9000 - 0x96ec9ffc com.apple.LangAnalysis 1.6.4 (1.6.4) <cbeb17ab39f28351fe2ab5b82bf465bc> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ LangAnalysis.framework/Versions/A/LangAnalysis
    0x96eca000 - 0x971a3ff3 com.apple.CoreServices.CarbonCore 785.8 (785.8) <827c228e7d717b397cdb4941eba69553> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonC ore.framework/Versions/A/CarbonCore
    0xba900000 - 0xba916fff libJapaneseConverter.dylib ??? (???) <7b0248c392848338f5d6ed093313eeef> /System/Library/CoreServices/Encodings/libJapaneseConverter.dylib
    0xfffe8000 - 0xfffebfff libobjc.A.dylib ??? (???) /usr/lib/libobjc.A.dylib
    0xffff0000 - 0xffff1780 libSystem.B.dylib ??? (???) /usr/lib/libSystem.B.dylib

    Have you asked the people who make it too?
    http://mac-video-forum.aquafadas.com/en/

  • Java.lang.classnotfoundexception: com.pogo.client.loading.applet

    Anyone have a solution to this error. This came up on a clean vista install.

    Please post this question again on the Java Plug-In forum:
    http://forum.java.sun.com/forum.jspa?forumID=30

  • Java.lang.ClassNotFoundException: com.ncr.teradata.TeraDriver

    Funny when I try to debug within netbeans IDE this jdbc driver isn't found however if I compile and execute in msdos command line it goes successful.
    are there different values in classpaths for netbeasn IDE and enviroment classpath?

    jiminy how many aliases did you create to ask the same question?beg you pardon?
    I'm forum newbie this is the second time I post and as I remember I hadn't started a similar thread.
    can you not read? look at line 80 of Bookstore. You haven't initialized the variableI don't you what you meant by line 80 bookstore

Maybe you are looking for