Program Crashing at sqlite3_Prepare help!!!!

Hi guys,
I am trying to make a program which inserts values into a sqlite database. For some reason my program crashes every time I press the button to insert the value. I have been trying to fix this for a long time but have not been able to fix it. Can you please have a look at my code and tell me what's wrong. Im going to put the code of my .m files on here.
BpValue.m
#import "BpValue.h"
static sqlite3 *database = nil;
static sqlite3_stmt *addStmt = nil;
@implementation BpValue
@synthesize valueID, value, isDirty, isDetailViewHydrated;
+ (void) finalizeStatements {
if(database) sqlite3_close(database);
if (addStmt) sqlite3_finalize(addStmt);
- (id) initWithPrimaryKey:(NSInteger) pk {
[super init];
valueID = pk;
isDetailViewHydrated = NO;
return self;
- (void) addValue {
if(addStmt == nil) {
const char *sql = "insert into BPressure(Value) Values(?)";
if(sqlite3preparev2(database, sql, -1, &addStmt, NULL) != SQLITE_OK)
NSAssert1(0, @"Error while creating add statement. '%s'", sqlite3_errmsg(database));
sqlite3binddouble(addStmt, 1, [value doubleValue]);
if(SQLITE_DONE != sqlite3_step(addStmt))
NSAssert1(0, @"Error while inserting data. '%s'", sqlite3_errmsg(database));
else
//SQLite provides a method to get the last primary key inserted by using sqlite3last_insertrowid
valueID = sqlite3last_insertrowid(database);
//Reset the add statement.
sqlite3_reset(addStmt);
- (void) dealloc {
[value release];
[super dealloc];
@end
MyViewController.m
#import "MyViewController.h"
#import "HelloWorldAppDelegate.h"
#import "sqlite3.h"
#import "BpValue.h"
@implementation MyViewController
@synthesize textField;
@synthesize label;
@synthesize string;
- (IBAction)changeGreeting:(id)sender {
HelloWorldAppDelegate *appDelegate = (HelloWorldAppDelegate *)[[UIApplication sharedApplication] delegate];
BpValue *bpObj = [[BpValue alloc] initWithPrimaryKey:0];
NSDecimalNumber *temp = [[NSDecimalNumber alloc] initWithString:textField.text];
bpObj.value = temp;
[temp release];
self.string = textField.text;
NSString *nameString = string;
if ([nameString length] == 0) {
nameString = @"World";
NSString *greeting = [[NSString alloc] initWithFormat:@"Hello, %@!", nameString];
label.text = greeting;
//Add the object
[appDelegate addValue:bpObj];
[greeting release];
- (BOOL)textFieldShouldReturn:(UITextField *)theTextField {
if (theTextField == textField) {
[textField resignFirstResponder];
return YES;
- (id)initWithNibName:(NSString *)nibNameOrNil bundle:(NSBundle *)nibBundleOrNil {
if (self = [super initWithNibName:nibNameOrNil bundle:nibBundleOrNil]) {
// Initialization code
return self;
Implement loadView if you want to create a view hierarchy programmatically
- (void)loadView {
If you need to do additional setup after loading the view, override viewDidLoad.
- (void)viewDidLoad {
- (BOOL)shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation)interfaceOrientation {
// Return YES for supported orientations
return (interfaceOrientation == UIInterfaceOrientationPortrait);
- (void)didReceiveMemoryWarning {
[super didReceiveMemoryWarning]; // Releases the view if it doesn't have a superview
// Release anything that's not essential, such as cached data
- (void)dealloc {
[super dealloc];
[label release];
[string release];
[super dealloc];
@end
HelloWorldAppDelegate.m
#import "MyViewController.h"
#import "HelloWorldAppDelegate.h"
#import "BpValue.h"
@implementation HelloWorldAppDelegate
@synthesize window;
@synthesize myViewController;
@synthesize valuesArray;
- (void)applicationDidFinishLaunching:(UIApplication *)application {
//Copy database to the user's phone if needed.
[self copyDatabaseIfNeeded];
NSMutableArray *tempArray = [[NSMutableArray alloc] init];
self.valuesArray = tempArray;
[tempArray release];
MyViewController *aViewController = [[MyViewController alloc]
initWithNibName:@"ControllerView" bundle:[NSBundle mainBundle]];
self.myViewController = aViewController;
[aViewController release];
UIView *controllersView = [myViewController view];
[window addSubview:controllersView];
[window makeKeyAndVisible];
- (void)applicationWillTerminate:(UIApplication *)application {
// Save data if appropriate
//Save all the dirty coffee objects and free memory.
[self.valuesArray makeObjectsPerformSelector:@selector(saveAllData)];
[BpValue finalizeStatements];
- (void)dealloc {
[valuesArray release];
[myViewController release];
[window release];
[super dealloc];
- (void) copyDatabaseIfNeeded {
//Using NSFileManager we can perform many file system operations.
NSFileManager *fileManager = [NSFileManager defaultManager];
NSError *error;
NSString *dbPath = [self getDBPath];
BOOL success = [fileManager fileExistsAtPath:dbPath];
if(!success) {
NSString *defaultDBPath = [[[NSBundle mainBundle] resourcePath] stringByAppendingPathComponent:@"Database.sqlite"];
success = [fileManager copyItemAtPath:defaultDBPath toPath:dbPath error:&error];
if (!success)
NSAssert1(0, @"Failed to create writable database file with message '%@'.", [error localizedDescription]);
- (NSString *) getDBPath {
//Search for standard documents using NSSearchPathForDirectoriesInDomains
//First Param = Searching the documents directory
//Second Param = Searching the Users directory and not the System
//Expand any tildes and identify home directories.
NSArray *paths = NSSearchPathForDirectoriesInDomains(NSDocumentDirectory , NSUserDomainMask, YES);
NSString *documentsDir = [paths objectAtIndex:0];
return [documentsDir stringByAppendingPathComponent:@"Database.sqlite"];
- (void) addValue:(BpValue *)bpObj {
//Add it to the database.
[bpObj addValue];
//Add it to the coffee array.
[valuesArray addObject:bpObj];
@end
Please if someone knows whats wrong, please tell me. It crashes at sqlite_prepare3. Following is part of the crash report
Exception Type: EXCBADACCESS (SIGBUS)
Exception Codes: KERNPROTECTIONFAILURE at 0x0000000000000030
Crashed Thread: 0
Application Specific Information:
iPhone Simulator 1.0 (70), iPhone OS 2.0 (5A345)
Thread 0 Crashed:
0 libsqlite3.0.dylib 0x93d211f0 sqlite3Prepare + 48
1 HelloWorld 0x000031c8 -BpValue addValue + 89 (BpValue.m:38)
2 HelloWorld 0x00002b70 -HelloWorldAppDelegate addValue: + 36 (HelloWorldAppDelegate.m:84)
3 HelloWorld 0x00002e6b -MyViewController changeGreeting: + 509 (MyViewController.m:41)
4 UIKit 0x30a5e25e -UIApplication sendAction:to:from:forEvent: + 116
5 UIKit 0x30abb022 -UIControl sendAction:to:forEvent: + 67
6 UIKit 0x30abb4ea -UIControl(Internal) _sendActionsForEvents:withEvent: + 478
7 UIKit 0x30aba830 -UIControl touchesEnded:withEvent: + 483
8 UIKit 0x30a75c0b -UIWindow sendEvent: + 454
9 UIKit 0x30a65e07 -UIApplication sendEvent: + 269
10 UIKit 0x30a6522a _UIApplicationHandleEvent + 4407
11 GraphicsServices 0x31699522 SendEvent + 35
12 GraphicsServices 0x3169b88c PurpleEventTimerCallBack + 276
13 com.apple.CoreFoundation 0x971be615 CFRunLoopRunSpecific + 3141
14 com.apple.CoreFoundation 0x971becf8 CFRunLoopRunInMode + 88
15 GraphicsServices 0x31699d38 GSEventRunModal + 217
16 GraphicsServices 0x31699dfd GSEventRun + 115
17 UIKit 0x30a5dadb -UIApplication _run + 440
18 UIKit 0x30a68ce4 UIApplicationMain + 1258
19 HelloWorld 0x00002650 main + 102 (main.m:14)
20 HelloWorld 0x000025be start + 54
Thread 1:
0 libSystem.B.dylib 0x93b624a6 machmsgtrap + 10
1 libSystem.B.dylib 0x93b69c9c mach_msg + 72
2 com.apple.CoreFoundation 0x971be0ce CFRunLoopRunSpecific + 1790
3 com.apple.CoreFoundation 0x971becf8 CFRunLoopRunInMode + 88
4 WebCore 0x32a8a450 RunWebThread + 384
5 libSystem.B.dylib 0x93b936f5 pthreadstart + 321
6 libSystem.B.dylib 0x93b935b2 thread_start + 34
Thread 2:
0 libSystem.B.dylib 0x93b624a6 machmsgtrap + 10
1 libSystem.B.dylib 0x93b69c9c mach_msg + 72
2 GraphicsServices 0x3169ce0a EventReceiveThread + 467
3 libSystem.B.dylib 0x93b936f5 pthreadstart + 321
4 libSystem.B.dylib 0x93b935b2 thread_start + 34
Thread 3:
0 libSystem.B.dylib 0x93b624a6 machmsgtrap + 10
1 libSystem.B.dylib 0x93b69c9c mach_msg + 72
2 com.apple.CoreFoundation 0x971be0ce CFRunLoopRunSpecific + 1790
3 com.apple.CoreFoundation 0x971becf8 CFRunLoopRunInMode + 88
4 com.apple.CFNetwork 0x95a59a32 CFURLCacheWorkerThread(void*) + 396
5 libSystem.B.dylib 0x93b936f5 pthreadstart + 321
6 libSystem.B.dylib 0x93b935b2 thread_start + 34
Thread 0 crashed with X86 Thread State (32-bit):
eax: 0x000040b0 ebx: 0x0000317d ecx: 0xffffffff edx: 0x00003e18
edi: 0x00000000 esi: 0x004123a0 ebp: 0xbfffe5c8 esp: 0xbfffe470
ss: 0x0000001f efl: 0x00010282 eip: 0x93d211f0 cs: 0x00000017
ds: 0x0000001f es: 0x0000001f fs: 0x00000000 gs: 0x00000037
cr2: 0x00000030

thanks realized that soon after posting...everything works now yay!!

Similar Messages

  • Program Crashing at sqlite_prepare3 help!!!!

    Hi guys,
    I am trying to make a program which inserts values into a sqlite database. For some reason my program crashes every time I press the button to insert the value. I have been trying to fix this for a long time but have not been able to fix it. Can you please have a look at my code and tell me what's wrong. Im going to put the code of my .m files on here.
    BpValue.m
    #import "BpValue.h"
    static sqlite3 *database = nil;
    static sqlite3_stmt *addStmt = nil;
    @implementation BpValue
    @synthesize valueID, value, isDirty, isDetailViewHydrated;
    + (void) finalizeStatements {
    if(database) sqlite3_close(database);
    if (addStmt) sqlite3_finalize(addStmt);
    - (id) initWithPrimaryKey:(NSInteger) pk {
    [super init];
    valueID = pk;
    isDetailViewHydrated = NO;
    return self;
    - (void) addValue {
    if(addStmt == nil) {
    const char *sql = "insert into BPressure(Value) Values(?)";
    if(sqlite3preparev2(database, sql, -1, &addStmt, NULL) != SQLITE_OK)
    NSAssert1(0, @"Error while creating add statement. '%s'", sqlite3_errmsg(database));
    sqlite3binddouble(addStmt, 1, [value doubleValue]);
    if(SQLITE_DONE != sqlite3_step(addStmt))
    NSAssert1(0, @"Error while inserting data. '%s'", sqlite3_errmsg(database));
    else
    //SQLite provides a method to get the last primary key inserted by using sqlite3last_insertrowid
    valueID = sqlite3last_insertrowid(database);
    //Reset the add statement.
    sqlite3_reset(addStmt);
    - (void) dealloc {
    [value release];
    [super dealloc];
    @end
    MyViewController.m
    #import "MyViewController.h"
    #import "HelloWorldAppDelegate.h"
    #import "sqlite3.h"
    #import "BpValue.h"
    @implementation MyViewController
    @synthesize textField;
    @synthesize label;
    @synthesize string;
    - (IBAction)changeGreeting:(id)sender {
    HelloWorldAppDelegate *appDelegate = (HelloWorldAppDelegate *)[[UIApplication sharedApplication] delegate];
    BpValue *bpObj = [[BpValue alloc] initWithPrimaryKey:0];
    NSDecimalNumber *temp = [[NSDecimalNumber alloc] initWithString:textField.text];
    bpObj.value = temp;
    [temp release];
    self.string = textField.text;
    NSString *nameString = string;
    if ([nameString length] == 0) {
    nameString = @"World";
    NSString *greeting = [[NSString alloc] initWithFormat:@"Hello, %@!", nameString];
    label.text = greeting;
    //Add the object
    [appDelegate addValue:bpObj];
    [greeting release];
    - (BOOL)textFieldShouldReturn:(UITextField *)theTextField {
    if (theTextField == textField) {
    [textField resignFirstResponder];
    return YES;
    - (id)initWithNibName:(NSString *)nibNameOrNil bundle:(NSBundle *)nibBundleOrNil {
    if (self = [super initWithNibName:nibNameOrNil bundle:nibBundleOrNil]) {
    // Initialization code
    return self;
    Implement loadView if you want to create a view hierarchy programmatically
    - (void)loadView {
    If you need to do additional setup after loading the view, override viewDidLoad.
    - (void)viewDidLoad {
    - (BOOL)shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation)interfaceOrientation {
    // Return YES for supported orientations
    return (interfaceOrientation == UIInterfaceOrientationPortrait);
    - (void)didReceiveMemoryWarning {
    [super didReceiveMemoryWarning]; // Releases the view if it doesn't have a superview
    // Release anything that's not essential, such as cached data
    - (void)dealloc {
    [super dealloc];
    [label release];
    [string release];
    [super dealloc];
    @end
    HelloWorldAppDelegate.m
    #import "MyViewController.h"
    #import "HelloWorldAppDelegate.h"
    #import "BpValue.h"
    @implementation HelloWorldAppDelegate
    @synthesize window;
    @synthesize myViewController;
    @synthesize valuesArray;
    - (void)applicationDidFinishLaunching:(UIApplication *)application {
    //Copy database to the user's phone if needed.
    [self copyDatabaseIfNeeded];
    NSMutableArray *tempArray = [[NSMutableArray alloc] init];
    self.valuesArray = tempArray;
    [tempArray release];
    MyViewController *aViewController = [[MyViewController alloc]
    initWithNibName:@"ControllerView" bundle:[NSBundle mainBundle]];
    self.myViewController = aViewController;
    [aViewController release];
    UIView *controllersView = [myViewController view];
    [window addSubview:controllersView];
    [window makeKeyAndVisible];
    - (void)applicationWillTerminate:(UIApplication *)application {
    // Save data if appropriate
    //Save all the dirty coffee objects and free memory.
    [self.valuesArray makeObjectsPerformSelector:@selector(saveAllData)];
    [BpValue finalizeStatements];
    - (void)dealloc {
    [valuesArray release];
    [myViewController release];
    [window release];
    [super dealloc];
    - (void) copyDatabaseIfNeeded {
    //Using NSFileManager we can perform many file system operations.
    NSFileManager *fileManager = [NSFileManager defaultManager];
    NSError *error;
    NSString *dbPath = [self getDBPath];
    BOOL success = [fileManager fileExistsAtPath:dbPath];
    if(!success) {
    NSString *defaultDBPath = [[[NSBundle mainBundle] resourcePath] stringByAppendingPathComponent:@"Database.sqlite"];
    success = [fileManager copyItemAtPath:defaultDBPath toPath:dbPath error:&error];
    if (!success)
    NSAssert1(0, @"Failed to create writable database file with message '%@'.", [error localizedDescription]);
    - (NSString *) getDBPath {
    //Search for standard documents using NSSearchPathForDirectoriesInDomains
    //First Param = Searching the documents directory
    //Second Param = Searching the Users directory and not the System
    //Expand any tildes and identify home directories.
    NSArray *paths = NSSearchPathForDirectoriesInDomains(NSDocumentDirectory , NSUserDomainMask, YES);
    NSString *documentsDir = [paths objectAtIndex:0];
    return [documentsDir stringByAppendingPathComponent:@"Database.sqlite"];
    - (void) addValue:(BpValue *)bpObj {
    //Add it to the database.
    [bpObj addValue];
    //Add it to the coffee array.
    [valuesArray addObject:bpObj];
    @end
    Please if someone knows whats wrong, please tell me. It crashes at sqlite_prepare3. Following is part of the crash report
    Exception Type: EXCBADACCESS (SIGBUS)
    Exception Codes: KERNPROTECTIONFAILURE at 0x0000000000000030
    Crashed Thread: 0
    Application Specific Information:
    iPhone Simulator 1.0 (70), iPhone OS 2.0 (5A345)
    Thread 0 Crashed:
    0 libsqlite3.0.dylib 0x93d211f0 sqlite3Prepare + 48
    1 HelloWorld 0x000031c8 -[BpValue addValue] + 89 (BpValue.m:38)
    2 HelloWorld 0x00002b70 -[HelloWorldAppDelegate addValue:] + 36 (HelloWorldAppDelegate.m:84)
    3 HelloWorld 0x00002e6b -[MyViewController changeGreeting:] + 509 (MyViewController.m:41)
    4 UIKit 0x30a5e25e -[UIApplication sendAction:to:from:forEvent:] + 116
    5 UIKit 0x30abb022 -[UIControl sendAction:to:forEvent:] + 67
    6 UIKit 0x30abb4ea -[UIControl(Internal) _sendActionsForEvents:withEvent:] + 478
    7 UIKit 0x30aba830 -[UIControl touchesEnded:withEvent:] + 483
    8 UIKit 0x30a75c0b -[UIWindow sendEvent:] + 454
    9 UIKit 0x30a65e07 -[UIApplication sendEvent:] + 269
    10 UIKit 0x30a6522a _UIApplicationHandleEvent + 4407
    11 GraphicsServices 0x31699522 SendEvent + 35
    12 GraphicsServices 0x3169b88c PurpleEventTimerCallBack + 276
    13 com.apple.CoreFoundation 0x971be615 CFRunLoopRunSpecific + 3141
    14 com.apple.CoreFoundation 0x971becf8 CFRunLoopRunInMode + 88
    15 GraphicsServices 0x31699d38 GSEventRunModal + 217
    16 GraphicsServices 0x31699dfd GSEventRun + 115
    17 UIKit 0x30a5dadb -[UIApplication _run] + 440
    18 UIKit 0x30a68ce4 UIApplicationMain + 1258
    19 HelloWorld 0x00002650 main + 102 (main.m:14)
    20 HelloWorld 0x000025be start + 54
    Thread 1:
    0 libSystem.B.dylib 0x93b624a6 machmsgtrap + 10
    1 libSystem.B.dylib 0x93b69c9c mach_msg + 72
    2 com.apple.CoreFoundation 0x971be0ce CFRunLoopRunSpecific + 1790
    3 com.apple.CoreFoundation 0x971becf8 CFRunLoopRunInMode + 88
    4 WebCore 0x32a8a450 RunWebThread + 384
    5 libSystem.B.dylib 0x93b936f5 pthreadstart + 321
    6 libSystem.B.dylib 0x93b935b2 thread_start + 34
    Thread 2:
    0 libSystem.B.dylib 0x93b624a6 machmsgtrap + 10
    1 libSystem.B.dylib 0x93b69c9c mach_msg + 72
    2 GraphicsServices 0x3169ce0a EventReceiveThread + 467
    3 libSystem.B.dylib 0x93b936f5 pthreadstart + 321
    4 libSystem.B.dylib 0x93b935b2 thread_start + 34
    Thread 3:
    0 libSystem.B.dylib 0x93b624a6 machmsgtrap + 10
    1 libSystem.B.dylib 0x93b69c9c mach_msg + 72
    2 com.apple.CoreFoundation 0x971be0ce CFRunLoopRunSpecific + 1790
    3 com.apple.CoreFoundation 0x971becf8 CFRunLoopRunInMode + 88
    4 com.apple.CFNetwork 0x95a59a32 CFURLCacheWorkerThread(void*) + 396
    5 libSystem.B.dylib 0x93b936f5 pthreadstart + 321
    6 libSystem.B.dylib 0x93b935b2 thread_start + 34
    Thread 0 crashed with X86 Thread State (32-bit):
    eax: 0x000040b0 ebx: 0x0000317d ecx: 0xffffffff edx: 0x00003e18
    edi: 0x00000000 esi: 0x004123a0 ebp: 0xbfffe5c8 esp: 0xbfffe470
    ss: 0x0000001f efl: 0x00010282 eip: 0x93d211f0 cs: 0x00000017
    ds: 0x0000001f es: 0x0000001f fs: 0x00000000 gs: 0x00000037
    cr2: 0x00000030

    works now...hadn't initialized the database

  • Program crashes upon Opening

    Hi, My OS is Windows 7 and I am using the DW CS5 program. For two days now whenever I try to open DW it crashes immediately. I have gone to the forum and tried the remedy the problem trying the three options listed for DW CS4 program crashes, but none helped. I wasn't able to locate a current FAQ regarding this problem in DWCS5. Can someone help me please.

    Here's the remedies that I tried. The first one doesn't apply that I know of...the link to this forum is:  http://forums.adobe.com/thread/417116. There are no error messages. Just the standard "Dreamweaver has experienced a problem and will shut down. Microsoft will look for a solution...blah-blah." Then the program closes out. In conjunction with these recommended remedies I have re-booted several times too. I am also running Microsoft Expression Web 4 on the same computer. Of course I haven’t tried to run both at the same time but separately. I have not had any issues up until now.
    Robert
    Apr 9, 2009 11:45 AM
    Dreamweaver crashes on start up
    There are three common causes of Dreamweaver crashing on start up:
    Conflict with security program on Acer computers
    A corrupt Dreamweaver file cache
    The 8KB bug
    The following information describes how to handle each one.
    Acer incomaptibility
    There’s a known conflict between Dreamweaver and Acer eDataSecurity Management v3.0. If you’re on an Acer, and Dreamweaver won’t start, download the patch from http://www.egistec.com/oem-acer001/program-update.html. This should fix the problem.
    Corrupted file cache
    Dreamweaver creates a cache file called WinFileCache-*******.dat or MacFileCache-*******.dat inside your personal Dreamweaver configuration folder (the asterisks represent a series of letters and numbers that might differ from computer to computer). This occasionally gets corrupted causing instability, unpredictable error messages, and even crashes.
    To solve the problem, close Dreamweaver and delete WinFileCache-*******.dat or MacFileCache-*******.dat. Sometimes, deleting this file is not sufficient, and you need to delete your personal configuration folder in its entirety.
    WARNING: Do not confuse your personal configuration folder with the main configuration folder in Program Files in Windows or Applications on a Mac. You should never touch the main configuration folder unless you really know what you're doing.
    Locating your personal configuration folder
    The location of the personal configuration folder depends on your operating system and version of Dreamweaver. For Dreamweaver CS4, it’s as follows:
    Vista: C:\Users\ View. In Advanced settings, choose Show hidden files and folders.
    Once you turn on this option, hidden folders are displayed as dimmed icons to remind you to treat them with care.
    The 8KB bug
    This is a very rare bug that causes Dreamweaver to crash during operation, and then crash repeatedly each time you try to restart the program. It normally affects only Dreamweaver CS3 on Windows, and is caused by the presence of a file that's exactly 8,192 bytes (8KB) or a multiple thereof.
    The solution is to open the file in a text editor and add a few extra characters (new lines or a comment will do). Save the file, and restart Dreamweaver.
    If the file causing the problem is an image or other type of media file, edit it so that it's no longer an exact multiple of 8KB.

  • Portrait Editing: Filter. brush or rubber. Program Crash

    After using Filter. i want to use the brush or the rubber for the eyes and hairs.
    But if i start using the brush my program crashs.
    Please help me. Because i can't edit my photos.

    Sorry.
    Mac OS Yosemite
    PSE 12

  • I recently upgraded to ML and now I find that CS5.5 programs crash unexpectedly all the time. Help

    I recently upgraded to ML and now I find that CS5.5 programs crash unexpectedly all the time. Is anyone else having this issue and what's the best way to resolve this. Help.

    You might check and see if there are any Console entries about what happened when you attempted to launch a CS 5.5 app.
    Adobe links its apps with the particular volume on which it is running, and altho' I can't recall specifics, I know in the past I have had to reset Adobe's settings after OS upgrade. I do recall that it's a fairly easy procedure; just don't exactly recall what it is.
    BTW, CS 4 runs on Mountain Lion for me.

  • I switched to Apple Mail in the last two months.  When I attempt to print an email message, I get a blank piece of paper.  When I attempt to use the print options suggested in "Mail Help", the program crashes and has to be reopened.  Any ideas?

    I switched to Apple Mail in the last two months.  When I attempt to print an email message, I get a blank piece of paper.  When I attempt to use the print options suggested in "Mail Help", the program crashes and has to be reopened.  Any ideas?

    Which version of Mail are you using as well as which Snow Leopard version you are using? 

  • Programs crash when I try to Print - Please Help

    Everytime I try to print something. The program crashes. I tried repairing permissions, but it didn't help. Here is the error log:
    Date/Time: 2005-11-25 10:04:34.322 -0600
    OS Version: 10.4.3 (Build 8F46)
    Report Version: 3
    Command: Preview
    Path: /Applications/Preview.app/Contents/MacOS/Preview
    Parent: WindowServer [58]
    Version: 3.0.3 (398)
    Build Version: 1
    Project Name: Preview
    Source Version: 3980000
    PID: 243
    Thread: 0
    Exception: EXCBADACCESS (0x0001)
    Codes: KERNPROTECTIONFAILURE (0x0002) at 0x00000000
    Thread 0 Crashed:
    0 com.apple.CoreFoundation 0x90763060 CFStringCreateMutableCopy + 64
    1 libdjHPUtils.6.1.dylib 0x06621e14 _as__9AHPStringPC10_CFString + 1208
    2 com.hp.print.pde.Puffin 0x056edab8 dyldstubmemchr + 90206292
    3 com.hp.print.pde.Puffin 0x056e0028 dyldstubmemchr + 90150340
    4 com.hp.print.pde.Puffin 0x056dfe34 dyldstubmemchr + 90149840
    5 com.hp.print.pde.Puffin 0x0582c59c .Q2t19ABasicClassRegistry3Z13ACRControllerZt20AKeyMapRegistryModel1Z9AHPStringZ22 KeyMapRegistryModelTagt16ClassFactoryType2Z28ADriverInformationControllerZQ2t21A KeyClassFactorySpace1ZB323KeyClassFactoryProtocol + 864
    6 com.hp.print.pde.Puffin 0x0572d8d0 DriverInformationPdePluginFactory + 14404
    7 com.hp.print.pde.Puffin 0x05728aac TwoSidedPrintingPdePluginFactory + 8908
    8 com.hp.print.pde.Puffin 0x05727904 TwoSidedPrintingPdePluginFactory + 4388
    9 ...int.framework.Print.Private 0x054d3fbc PrinterPopupEventHandler(OpaqueEventHandlerCallRef*, OpaqueEventRef*, void*) + 1000
    10 ...int.framework.Print.Private 0x054c6210 DeallocPageSetupDialogHandlerTimer(__EventLoopTimer*, void*) + 1392
    11 ...int.framework.Print.Private 0x054c78a8 DeallocPageSetupDialogHandlerTimer(__EventLoopTimer*, void*) + 7176
    12 ...int.framework.Print.Private 0x054c66f8 DeallocPageSetupDialogHandlerTimer(__EventLoopTimer*, void*) + 2648
    13 ...int.framework.Print.Private 0x054c6da4 DeallocPageSetupDialogHandlerTimer(__EventLoopTimer*, void*) + 4356
    14 ...int.framework.Print.Private 0x054cc838 PMPrivateSetItemProc + 1096
    15 ...int.framework.Print.Private 0x054cd208 PMPrivateSetItemProc + 3608
    16 ...int.framework.Print.Private 0x054cbee4 PMPrivatePrepareAppKitPrintDialog + 228
    17 ...apple.print.framework.Print 0x93005e48 PJCPrepareAppKitPrintDialog + 124
    18 ...apple.print.framework.Print 0x93005d60 PMPrepareAppKitPrintDialog + 128
    19 com.apple.AppKit 0x93858bf4 -[NSPrintPanel beginSheetWithPrintInfo:modalForWindow:delegate:didEndSelector:contextInfo:] + 276
    20 com.apple.Preview 0x0002ede0 0x1000 + 187872
    21 com.apple.AppKit 0x93701a20 -[NSApplication sendAction:to:from:] + 108
    22 com.apple.AppKit 0x9375c254 -[NSMenu performActionForItemAtIndex:] + 392
    23 com.apple.AppKit 0x9375bfd8 -[NSCarbonMenuImpl performActionWithHighlightingForItemAtIndex:] + 104
    24 com.apple.AppKit 0x93663320 _NSHandleCarbonMenuEvent + 372
    25 com.apple.AppKit 0x93660c84 _DPSNextEvent + 1280
    26 com.apple.AppKit 0x936605c8 -[NSApplication nextEventMatchingMask:untilDate:inMode:dequeue:] + 116
    27 com.apple.AppKit 0x9365cb0c -[NSApplication run] + 472
    28 com.apple.AppKit 0x9374d618 NSApplicationMain + 452
    29 com.apple.Preview 0x0000203c 0x1000 + 4156
    30 com.apple.Preview 0x0001ee3c 0x1000 + 122428
    Thread 1:
    0 libSystem.B.dylib 0x90031aac wait4 + 12
    1 com.apple.Foundation 0x928c9988 _waitForTermination + 40
    2 libSystem.B.dylib 0x9002b200 pthreadbody + 96
    Thread 2:
    0 libSystem.B.dylib 0x9001422c read + 12
    1 com.apple.Foundation 0x928fc018 _backgroundActivity + 252
    2 libSystem.B.dylib 0x9002b200 pthreadbody + 96
    Thread 3:
    0 libSystem.B.dylib 0x9001f20c select + 12
    1 com.apple.CoreFoundation 0x9076f99c __CFSocketManager + 472
    2 libSystem.B.dylib 0x9002b200 pthreadbody + 96
    Thread 0 crashed with PPC Thread State 64:
    srr0: 0x0000000090763060 srr1: 0x000000000200f030 vrsave: 0x0000000000000000
    cr: 0x24042422 xer: 0x0000000000000007 lr: 0x000000009076302c ctr: 0x0000000090763020
    r0: 0x00000000a073a674 r1: 0x00000000bfffdb60 r2: 0x00000000a073a274 r3: 0x0000000000000000
    r4: 0x0000000000000000 r5: 0x0000000000000000 r6: 0x00000000ffffffff r7: 0x00000000000000fa
    r8: 0x00000000060da961 r9: 0x000000000000001c r10: 0x0000000000000001 r11: 0x0000000006b0fd54
    r12: 0x0000000090763020 r13: 0x0000000000000000 r14: 0x0000000000000000 r15: 0x0000000000000000
    r16: 0x00000000054f6bd4 r17: 0x00000000054f6bd4 r18: 0x0000000000000000 r19: 0x0000000000325510
    r20: 0x00000000ffffffff r21: 0x00000000054f6bd4 r22: 0x0000000000000000 r23: 0x0000000006c177bc
    r24: 0x0000000006c177d0 r25: 0x0000000000000000 r26: 0x00000000bfffdc7c r27: 0x00000000bfffdd70
    r28: 0x0000000000000000 r29: 0x0000000000000000 r30: 0x0000000005a940e0 r31: 0x000000009076302c
    Binary Images Description:
    0x1000 - 0x61fff com.apple.Preview 3.0.3 (398) /Applications/Preview.app/Contents/MacOS/Preview
    0x54c2000 - 0x54edfff com.apple.print.framework.Print.Private 4.3 (157.7) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Print.framewo rk/Versions/Current/Plugins/PrintCocoaUI.bundle/Contents/MacOS/PrintCocoaUI
    0x5663000 - 0x591cfff com.hp.print.pde.Puffin 2.6 /Library/Printers/hp/deskjet/hpdjPDE.plugin/Contents/MacOS/hpdjPDE
    0x6586000 - 0x6b05fff libdjHPUtils.6.1.dylib /Library/Printers/hp/deskjet/libdjHPUtils.6.1.dylib
    0x8fe00000 - 0x8fe54fff dyld 44.2 /usr/lib/dyld
    0x90000000 - 0x901b3fff libSystem.B.dylib /usr/lib/libSystem.B.dylib
    0x9020b000 - 0x9020ffff libmathCommon.A.dylib /usr/lib/system/libmathCommon.A.dylib
    0x90211000 - 0x90264fff com.apple.CoreText 1.0.1 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreText.framework/Versions/A/CoreText
    0x90291000 - 0x90342fff ATS /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/ATS
    0x90371000 - 0x906aefff com.apple.CoreGraphics 1.256.27 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/CoreGraphics
    0x9073a000 - 0x90813fff com.apple.CoreFoundation 6.4.4 (368.18) /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
    0x9085c000 - 0x9085cfff com.apple.CoreServices 10.4 (???) /System/Library/Frameworks/CoreServices.framework/Versions/A/CoreServices
    0x9085e000 - 0x90960fff libicucore.A.dylib /usr/lib/libicucore.A.dylib
    0x909ba000 - 0x90a3efff libobjc.A.dylib /usr/lib/libobjc.A.dylib
    0x90a68000 - 0x90ad6fff com.apple.framework.IOKit 1.4.1 (???) /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit
    0x90aed000 - 0x90afffff libauto.dylib /usr/lib/libauto.dylib
    0x90b06000 - 0x90dddfff com.apple.CoreServices.CarbonCore 671.2 /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonC ore.framework/Versions/A/CarbonCore
    0x90e43000 - 0x90ec3fff com.apple.CoreServices.OSServices 4.1 /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/OSServi ces.framework/Versions/A/OSServices
    0x90f0d000 - 0x90f4efff com.apple.CFNetwork 10.4.3 (129.2) /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CFNetwo rk.framework/Versions/A/CFNetwork
    0x90f63000 - 0x90f7bfff com.apple.WebServices 1.1.2 (1.1.0) /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/WebServ icesCore.framework/Versions/A/WebServicesCore
    0x90f8b000 - 0x9100cfff com.apple.SearchKit 1.0.4 /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SearchK it.framework/Versions/A/SearchKit
    0x91052000 - 0x9107bfff com.apple.Metadata 10.4.3 (121.20.2) /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Metadat a.framework/Versions/A/Metadata
    0x9108c000 - 0x9109afff libz.1.dylib /usr/lib/libz.1.dylib
    0x9109d000 - 0x9125ffff com.apple.security 4.2 (24844) /System/Library/Frameworks/Security.framework/Versions/A/Security
    0x91362000 - 0x9136bfff com.apple.DiskArbitration 2.1 /System/Library/Frameworks/DiskArbitration.framework/Versions/A/DiskArbitration
    0x91372000 - 0x91399fff com.apple.SystemConfiguration 1.8.1 /System/Library/Frameworks/SystemConfiguration.framework/Versions/A/SystemConfi guration
    0x913ac000 - 0x913b4fff libgcc_s.1.dylib /usr/lib/libgcc_s.1.dylib
    0x913b9000 - 0x913d9fff libmx.A.dylib /usr/lib/libmx.A.dylib
    0x913df000 - 0x913e7fff libbsm.dylib /usr/lib/libbsm.dylib
    0x913eb000 - 0x91469fff com.apple.audio.CoreAudio 3.0.1 /System/Library/Frameworks/CoreAudio.framework/Versions/A/CoreAudio
    0x914a7000 - 0x914a7fff com.apple.ApplicationServices 10.4 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Application Services
    0x914a9000 - 0x914e1fff com.apple.AE 1.5 (297) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ AE.framework/Versions/A/AE
    0x914fc000 - 0x915c9fff com.apple.ColorSync 4.4.3 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ColorSync.framework/Versions/A/ColorSync
    0x9161e000 - 0x916b1fff com.apple.print.framework.PrintCore 4.3 (172.3) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ PrintCore.framework/Versions/A/PrintCore
    0x916f8000 - 0x917b5fff com.apple.QD 3.8.18 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ QD.framework/Versions/A/QD
    0x917f3000 - 0x91851fff com.apple.HIServices 1.5.1 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ HIServices.framework/Versions/A/HIServices
    0x9187f000 - 0x918a3fff com.apple.LangAnalysis 1.6.1 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ LangAnalysis.framework/Versions/A/LangAnalysis
    0x918b7000 - 0x918dcfff com.apple.FindByContent 1.5 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ FindByContent.framework/Versions/A/FindByContent
    0x918ef000 - 0x91931fff com.apple.LaunchServices 10.4.5 (168) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ LaunchServices.framework/Versions/A/LaunchServices
    0x9194d000 - 0x91961fff com.apple.speech.synthesis.framework 3.3 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ SpeechSynthesis.framework/Versions/A/SpeechSynthesis
    0x9196f000 - 0x919a8fff com.apple.ImageIO.framework 1.4.3 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/ImageIO
    0x919bd000 - 0x91a83fff libcrypto.0.9.7.dylib /usr/lib/libcrypto.0.9.7.dylib
    0x91ad0000 - 0x91ae5fff libcups.2.dylib /usr/lib/libcups.2.dylib
    0x91aea000 - 0x91b06fff libJPEG.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libJPEG.dylib
    0x91b0b000 - 0x91b7afff libJP2.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libJP2.dylib
    0x91b91000 - 0x91b95fff libGIF.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libGIF.dylib
    0x91b97000 - 0x91bc8fff libRaw.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libRaw.dylib
    0x91bcc000 - 0x91c0ffff libTIFF.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libTIFF.dylib
    0x91c16000 - 0x91c2ffff libPng.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libPng.dylib
    0x91c34000 - 0x91c37fff libRadiance.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libRadiance.dylib
    0x91c39000 - 0x91c39fff com.apple.Accelerate 1.1.1 (Accelerate 1.1.1) /System/Library/Frameworks/Accelerate.framework/Versions/A/Accelerate
    0x91c3b000 - 0x91d25fff com.apple.vImage 2.0 /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vImage.fr amework/Versions/A/vImage
    0x91d2d000 - 0x91d4cfff com.apple.Accelerate.vecLib 3.1.1 (vecLib 3.1.1) /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/vecLib
    0x91db8000 - 0x91e1dfff libvMisc.dylib /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvMisc.dylib
    0x91e27000 - 0x91eb9fff libvDSP.dylib /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvDSP.dylib
    0x91ed3000 - 0x92463fff libBLAS.dylib /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libBLAS.dylib
    0x924ab000 - 0x927bbfff libLAPACK.dylib /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libLAPACK.dylib
    0x927e8000 - 0x92874fff com.apple.DesktopServices 1.3.1 /System/Library/PrivateFrameworks/DesktopServicesPriv.framework/Versions/A/Desk topServicesPriv
    0x928b6000 - 0x92ae0fff com.apple.Foundation 6.4.2 (567.21) /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
    0x92bfe000 - 0x92cdcfff libxml2.2.dylib /usr/lib/libxml2.2.dylib
    0x92cfc000 - 0x92deafff libiconv.2.dylib /usr/lib/libiconv.2.dylib
    0x92dfc000 - 0x92e1afff libGL.dylib /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib
    0x92e25000 - 0x92e7ffff libGLU.dylib /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLU.dylib
    0x92e9d000 - 0x92e9dfff com.apple.Carbon 10.4 (???) /System/Library/Frameworks/Carbon.framework/Versions/A/Carbon
    0x92e9f000 - 0x92eb3fff com.apple.ImageCapture 3.0 /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/ImageCapture. framework/Versions/A/ImageCapture
    0x92ecb000 - 0x92edbfff com.apple.speech.recognition.framework 3.4 /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SpeechRecogni tion.framework/Versions/A/SpeechRecognition
    0x92ee7000 - 0x92efcfff com.apple.securityhi 2.0 (203) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SecurityHI.fr amework/Versions/A/SecurityHI
    0x92f0e000 - 0x92f95fff com.apple.ink.framework 101.2 (69) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Ink.framework /Versions/A/Ink
    0x92fa9000 - 0x92fb4fff com.apple.help 1.0.3 (32) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Help.framewor k/Versions/A/Help
    0x92fbe000 - 0x92febfff com.apple.openscripting 1.2.3 (???) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/OpenScripting .framework/Versions/A/OpenScripting
    0x93005000 - 0x93015fff com.apple.print.framework.Print 5.0 (190.1) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Print.framewo rk/Versions/A/Print
    0x93021000 - 0x93087fff com.apple.htmlrendering 1.1.2 /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HTMLRendering .framework/Versions/A/HTMLRendering
    0x930b8000 - 0x9310afff com.apple.NavigationServices 3.4.2 /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/NavigationSer vices.framework/Versions/A/NavigationServices
    0x93136000 - 0x93153fff com.apple.audio.SoundManager 3.9 /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CarbonSound.f ramework/Versions/A/CarbonSound
    0x93165000 - 0x93172fff com.apple.CommonPanels 1.2.2 (73) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CommonPanels. framework/Versions/A/CommonPanels
    0x9317b000 - 0x9348dfff com.apple.HIToolbox 1.4.4 (???) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.fra mework/Versions/A/HIToolbox
    0x935d9000 - 0x935e5fff com.apple.opengl 1.4.6 /System/Library/Frameworks/OpenGL.framework/Versions/A/OpenGL
    0x93656000 - 0x93656fff com.apple.Cocoa 6.4 (???) /System/Library/Frameworks/Cocoa.framework/Versions/A/Cocoa
    0x93658000 - 0x93c8bfff com.apple.AppKit 6.4.3 (824.23) /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit
    0x94017000 - 0x94086fff com.apple.CoreData 50 (77) /System/Library/Frameworks/CoreData.framework/Versions/A/CoreData
    0x940bf000 - 0x94189fff com.apple.audio.toolbox.AudioToolbox 1.4.1 /System/Library/Frameworks/AudioToolbox.framework/Versions/A/AudioToolbox
    0x941dd000 - 0x941ddfff com.apple.audio.units.AudioUnit 1.4 /System/Library/Frameworks/AudioUnit.framework/Versions/A/AudioUnit
    0x941df000 - 0x94357fff com.apple.QuartzCore 1.4.3 /System/Library/Frameworks/QuartzCore.framework/Versions/A/QuartzCore
    0x943a1000 - 0x943defff libsqlite3.0.dylib /usr/lib/libsqlite3.0.dylib
    0x943e6000 - 0x94436fff libGLImage.dylib /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLImage.dyl ib
    0x945d8000 - 0x945e7fff libCGATS.A.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCGATS.A.dylib
    0x945ef000 - 0x945fbfff libCSync.A.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCSync.A.dylib
    0x94640000 - 0x94658fff libRIP.A.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libRIP.A.dylib
    0x95d2c000 - 0x95d5efff com.apple.PDFKit 1.0.1 /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/PDFKit.framew ork/Versions/A/PDFKit
    0x97fbd000 - 0x98055fff com.apple.QuartzComposer 1.1.1 (30.1) /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuartzCompose r.framework/Versions/A/QuartzComposer
    0x980a6000 - 0x980a6fff com.apple.quartzframework 1.0 /System/Library/Frameworks/Quartz.framework/Versions/A/Quartz
    0x9821e000 - 0x98236fff com.apple.slideshow 1.0.3 (1.0) /System/Library/PrivateFrameworks/Slideshow.framework/Versions/A/Slideshow
    Model: PowerBook6,7, BootROM 4.9.3f0, 1 processors, PowerPC G4 (1.5), 1.33 GHz, 1.5 GB
    Graphics: ATI Mobility Radeon 9550, ATY,M12, AGP, 32 MB
    Memory Module: DIMM0/BUILT-IN, 512 MB, built-in, built-in
    Memory Module: DIMM1/J7, 1 GB, DDR SDRAM, PC2700U-25330
    AirPort: AirPort Extreme, 404.2 (3.90.34.0.p16)
    Modem: Jump, , V.92, Version 1.0,
    Bluetooth: Version 1.6.6f22, 2 service, 1 devices, 1 incoming serial ports
    Network Service: AirPort, AirPort, en1
    PCI Card: pci106b,4318, sppci_othernetwork, SLOT-B
    Parallel ATA Device: MATSHITACD-RW CW-8124, 559.34 MB
    Parallel ATA Device: FUJITSU MHV2100AT, 93.16 GB
    USB Device: Bluetooth HCI, , Up to 12 Mb/sec, 500 mA
    USB Device: Apple Internal Trackpad, Apple Computer, Up to 12 Mb/sec, 500 mA
    Thanks for your help,
    Dan

    Everytime I try to print something. The program crashes. I tried repairing permissions, but it didn't help. Here is the error log:
    Date/Time: 2005-11-25 10:04:34.322 -0600
    OS Version: 10.4.3 (Build 8F46)
    Report Version: 3
    Command: Preview
    Path: /Applications/Preview.app/Contents/MacOS/Preview
    Parent: WindowServer [58]
    Version: 3.0.3 (398)
    Build Version: 1
    Project Name: Preview
    Source Version: 3980000
    PID: 243
    Thread: 0
    Exception: EXCBADACCESS (0x0001)
    Codes: KERNPROTECTIONFAILURE (0x0002) at 0x00000000
    Thread 0 Crashed:
    0 com.apple.CoreFoundation 0x90763060 CFStringCreateMutableCopy + 64
    1 libdjHPUtils.6.1.dylib 0x06621e14 _as__9AHPStringPC10_CFString + 1208
    2 com.hp.print.pde.Puffin 0x056edab8 dyldstubmemchr + 90206292
    3 com.hp.print.pde.Puffin 0x056e0028 dyldstubmemchr + 90150340
    4 com.hp.print.pde.Puffin 0x056dfe34 dyldstubmemchr + 90149840
    5 com.hp.print.pde.Puffin 0x0582c59c .Q2t19ABasicClassRegistry3Z13ACRControllerZt20AKeyMapRegistryModel1Z9AHPStringZ22 KeyMapRegistryModelTagt16ClassFactoryType2Z28ADriverInformationControllerZQ2t21A KeyClassFactorySpace1ZB323KeyClassFactoryProtocol + 864
    6 com.hp.print.pde.Puffin 0x0572d8d0 DriverInformationPdePluginFactory + 14404
    7 com.hp.print.pde.Puffin 0x05728aac TwoSidedPrintingPdePluginFactory + 8908
    8 com.hp.print.pde.Puffin 0x05727904 TwoSidedPrintingPdePluginFactory + 4388
    9 ...int.framework.Print.Private 0x054d3fbc PrinterPopupEventHandler(OpaqueEventHandlerCallRef*, OpaqueEventRef*, void*) + 1000
    10 ...int.framework.Print.Private 0x054c6210 DeallocPageSetupDialogHandlerTimer(__EventLoopTimer*, void*) + 1392
    11 ...int.framework.Print.Private 0x054c78a8 DeallocPageSetupDialogHandlerTimer(__EventLoopTimer*, void*) + 7176
    12 ...int.framework.Print.Private 0x054c66f8 DeallocPageSetupDialogHandlerTimer(__EventLoopTimer*, void*) + 2648
    13 ...int.framework.Print.Private 0x054c6da4 DeallocPageSetupDialogHandlerTimer(__EventLoopTimer*, void*) + 4356
    14 ...int.framework.Print.Private 0x054cc838 PMPrivateSetItemProc + 1096
    15 ...int.framework.Print.Private 0x054cd208 PMPrivateSetItemProc + 3608
    16 ...int.framework.Print.Private 0x054cbee4 PMPrivatePrepareAppKitPrintDialog + 228
    17 ...apple.print.framework.Print 0x93005e48 PJCPrepareAppKitPrintDialog + 124
    18 ...apple.print.framework.Print 0x93005d60 PMPrepareAppKitPrintDialog + 128
    19 com.apple.AppKit 0x93858bf4 -[NSPrintPanel beginSheetWithPrintInfo:modalForWindow:delegate:didEndSelector:contextInfo:] + 276
    20 com.apple.Preview 0x0002ede0 0x1000 + 187872
    21 com.apple.AppKit 0x93701a20 -[NSApplication sendAction:to:from:] + 108
    22 com.apple.AppKit 0x9375c254 -[NSMenu performActionForItemAtIndex:] + 392
    23 com.apple.AppKit 0x9375bfd8 -[NSCarbonMenuImpl performActionWithHighlightingForItemAtIndex:] + 104
    24 com.apple.AppKit 0x93663320 _NSHandleCarbonMenuEvent + 372
    25 com.apple.AppKit 0x93660c84 _DPSNextEvent + 1280
    26 com.apple.AppKit 0x936605c8 -[NSApplication nextEventMatchingMask:untilDate:inMode:dequeue:] + 116
    27 com.apple.AppKit 0x9365cb0c -[NSApplication run] + 472
    28 com.apple.AppKit 0x9374d618 NSApplicationMain + 452
    29 com.apple.Preview 0x0000203c 0x1000 + 4156
    30 com.apple.Preview 0x0001ee3c 0x1000 + 122428
    Thread 1:
    0 libSystem.B.dylib 0x90031aac wait4 + 12
    1 com.apple.Foundation 0x928c9988 _waitForTermination + 40
    2 libSystem.B.dylib 0x9002b200 pthreadbody + 96
    Thread 2:
    0 libSystem.B.dylib 0x9001422c read + 12
    1 com.apple.Foundation 0x928fc018 _backgroundActivity + 252
    2 libSystem.B.dylib 0x9002b200 pthreadbody + 96
    Thread 3:
    0 libSystem.B.dylib 0x9001f20c select + 12
    1 com.apple.CoreFoundation 0x9076f99c __CFSocketManager + 472
    2 libSystem.B.dylib 0x9002b200 pthreadbody + 96
    Thread 0 crashed with PPC Thread State 64:
    srr0: 0x0000000090763060 srr1: 0x000000000200f030 vrsave: 0x0000000000000000
    cr: 0x24042422 xer: 0x0000000000000007 lr: 0x000000009076302c ctr: 0x0000000090763020
    r0: 0x00000000a073a674 r1: 0x00000000bfffdb60 r2: 0x00000000a073a274 r3: 0x0000000000000000
    r4: 0x0000000000000000 r5: 0x0000000000000000 r6: 0x00000000ffffffff r7: 0x00000000000000fa
    r8: 0x00000000060da961 r9: 0x000000000000001c r10: 0x0000000000000001 r11: 0x0000000006b0fd54
    r12: 0x0000000090763020 r13: 0x0000000000000000 r14: 0x0000000000000000 r15: 0x0000000000000000
    r16: 0x00000000054f6bd4 r17: 0x00000000054f6bd4 r18: 0x0000000000000000 r19: 0x0000000000325510
    r20: 0x00000000ffffffff r21: 0x00000000054f6bd4 r22: 0x0000000000000000 r23: 0x0000000006c177bc
    r24: 0x0000000006c177d0 r25: 0x0000000000000000 r26: 0x00000000bfffdc7c r27: 0x00000000bfffdd70
    r28: 0x0000000000000000 r29: 0x0000000000000000 r30: 0x0000000005a940e0 r31: 0x000000009076302c
    Binary Images Description:
    0x1000 - 0x61fff com.apple.Preview 3.0.3 (398) /Applications/Preview.app/Contents/MacOS/Preview
    0x54c2000 - 0x54edfff com.apple.print.framework.Print.Private 4.3 (157.7) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Print.framewo rk/Versions/Current/Plugins/PrintCocoaUI.bundle/Contents/MacOS/PrintCocoaUI
    0x5663000 - 0x591cfff com.hp.print.pde.Puffin 2.6 /Library/Printers/hp/deskjet/hpdjPDE.plugin/Contents/MacOS/hpdjPDE
    0x6586000 - 0x6b05fff libdjHPUtils.6.1.dylib /Library/Printers/hp/deskjet/libdjHPUtils.6.1.dylib
    0x8fe00000 - 0x8fe54fff dyld 44.2 /usr/lib/dyld
    0x90000000 - 0x901b3fff libSystem.B.dylib /usr/lib/libSystem.B.dylib
    0x9020b000 - 0x9020ffff libmathCommon.A.dylib /usr/lib/system/libmathCommon.A.dylib
    0x90211000 - 0x90264fff com.apple.CoreText 1.0.1 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreText.framework/Versions/A/CoreText
    0x90291000 - 0x90342fff ATS /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/ATS
    0x90371000 - 0x906aefff com.apple.CoreGraphics 1.256.27 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/CoreGraphics
    0x9073a000 - 0x90813fff com.apple.CoreFoundation 6.4.4 (368.18) /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
    0x9085c000 - 0x9085cfff com.apple.CoreServices 10.4 (???) /System/Library/Frameworks/CoreServices.framework/Versions/A/CoreServices
    0x9085e000 - 0x90960fff libicucore.A.dylib /usr/lib/libicucore.A.dylib
    0x909ba000 - 0x90a3efff libobjc.A.dylib /usr/lib/libobjc.A.dylib
    0x90a68000 - 0x90ad6fff com.apple.framework.IOKit 1.4.1 (???) /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit
    0x90aed000 - 0x90afffff libauto.dylib /usr/lib/libauto.dylib
    0x90b06000 - 0x90dddfff com.apple.CoreServices.CarbonCore 671.2 /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonC ore.framework/Versions/A/CarbonCore
    0x90e43000 - 0x90ec3fff com.apple.CoreServices.OSServices 4.1 /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/OSServi ces.framework/Versions/A/OSServices
    0x90f0d000 - 0x90f4efff com.apple.CFNetwork 10.4.3 (129.2) /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CFNetwo rk.framework/Versions/A/CFNetwork
    0x90f63000 - 0x90f7bfff com.apple.WebServices 1.1.2 (1.1.0) /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/WebServ icesCore.framework/Versions/A/WebServicesCore
    0x90f8b000 - 0x9100cfff com.apple.SearchKit 1.0.4 /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SearchK it.framework/Versions/A/SearchKit
    0x91052000 - 0x9107bfff com.apple.Metadata 10.4.3 (121.20.2) /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Metadat a.framework/Versions/A/Metadata
    0x9108c000 - 0x9109afff libz.1.dylib /usr/lib/libz.1.dylib
    0x9109d000 - 0x9125ffff com.apple.security 4.2 (24844) /System/Library/Frameworks/Security.framework/Versions/A/Security
    0x91362000 - 0x9136bfff com.apple.DiskArbitration 2.1 /System/Library/Frameworks/DiskArbitration.framework/Versions/A/DiskArbitration
    0x91372000 - 0x91399fff com.apple.SystemConfiguration 1.8.1 /System/Library/Frameworks/SystemConfiguration.framework/Versions/A/SystemConfi guration
    0x913ac000 - 0x913b4fff libgcc_s.1.dylib /usr/lib/libgcc_s.1.dylib
    0x913b9000 - 0x913d9fff libmx.A.dylib /usr/lib/libmx.A.dylib
    0x913df000 - 0x913e7fff libbsm.dylib /usr/lib/libbsm.dylib
    0x913eb000 - 0x91469fff com.apple.audio.CoreAudio 3.0.1 /System/Library/Frameworks/CoreAudio.framework/Versions/A/CoreAudio
    0x914a7000 - 0x914a7fff com.apple.ApplicationServices 10.4 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Application Services
    0x914a9000 - 0x914e1fff com.apple.AE 1.5 (297) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ AE.framework/Versions/A/AE
    0x914fc000 - 0x915c9fff com.apple.ColorSync 4.4.3 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ColorSync.framework/Versions/A/ColorSync
    0x9161e000 - 0x916b1fff com.apple.print.framework.PrintCore 4.3 (172.3) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ PrintCore.framework/Versions/A/PrintCore
    0x916f8000 - 0x917b5fff com.apple.QD 3.8.18 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ QD.framework/Versions/A/QD
    0x917f3000 - 0x91851fff com.apple.HIServices 1.5.1 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ HIServices.framework/Versions/A/HIServices
    0x9187f000 - 0x918a3fff com.apple.LangAnalysis 1.6.1 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ LangAnalysis.framework/Versions/A/LangAnalysis
    0x918b7000 - 0x918dcfff com.apple.FindByContent 1.5 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ FindByContent.framework/Versions/A/FindByContent
    0x918ef000 - 0x91931fff com.apple.LaunchServices 10.4.5 (168) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ LaunchServices.framework/Versions/A/LaunchServices
    0x9194d000 - 0x91961fff com.apple.speech.synthesis.framework 3.3 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ SpeechSynthesis.framework/Versions/A/SpeechSynthesis
    0x9196f000 - 0x919a8fff com.apple.ImageIO.framework 1.4.3 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/ImageIO
    0x919bd000 - 0x91a83fff libcrypto.0.9.7.dylib /usr/lib/libcrypto.0.9.7.dylib
    0x91ad0000 - 0x91ae5fff libcups.2.dylib /usr/lib/libcups.2.dylib
    0x91aea000 - 0x91b06fff libJPEG.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libJPEG.dylib
    0x91b0b000 - 0x91b7afff libJP2.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libJP2.dylib
    0x91b91000 - 0x91b95fff libGIF.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libGIF.dylib
    0x91b97000 - 0x91bc8fff libRaw.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libRaw.dylib
    0x91bcc000 - 0x91c0ffff libTIFF.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libTIFF.dylib
    0x91c16000 - 0x91c2ffff libPng.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libPng.dylib
    0x91c34000 - 0x91c37fff libRadiance.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libRadiance.dylib
    0x91c39000 - 0x91c39fff com.apple.Accelerate 1.1.1 (Accelerate 1.1.1) /System/Library/Frameworks/Accelerate.framework/Versions/A/Accelerate
    0x91c3b000 - 0x91d25fff com.apple.vImage 2.0 /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vImage.fr amework/Versions/A/vImage
    0x91d2d000 - 0x91d4cfff com.apple.Accelerate.vecLib 3.1.1 (vecLib 3.1.1) /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/vecLib
    0x91db8000 - 0x91e1dfff libvMisc.dylib /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvMisc.dylib
    0x91e27000 - 0x91eb9fff libvDSP.dylib /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvDSP.dylib
    0x91ed3000 - 0x92463fff libBLAS.dylib /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libBLAS.dylib
    0x924ab000 - 0x927bbfff libLAPACK.dylib /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libLAPACK.dylib
    0x927e8000 - 0x92874fff com.apple.DesktopServices 1.3.1 /System/Library/PrivateFrameworks/DesktopServicesPriv.framework/Versions/A/Desk topServicesPriv
    0x928b6000 - 0x92ae0fff com.apple.Foundation 6.4.2 (567.21) /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
    0x92bfe000 - 0x92cdcfff libxml2.2.dylib /usr/lib/libxml2.2.dylib
    0x92cfc000 - 0x92deafff libiconv.2.dylib /usr/lib/libiconv.2.dylib
    0x92dfc000 - 0x92e1afff libGL.dylib /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib
    0x92e25000 - 0x92e7ffff libGLU.dylib /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLU.dylib
    0x92e9d000 - 0x92e9dfff com.apple.Carbon 10.4 (???) /System/Library/Frameworks/Carbon.framework/Versions/A/Carbon
    0x92e9f000 - 0x92eb3fff com.apple.ImageCapture 3.0 /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/ImageCapture. framework/Versions/A/ImageCapture
    0x92ecb000 - 0x92edbfff com.apple.speech.recognition.framework 3.4 /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SpeechRecogni tion.framework/Versions/A/SpeechRecognition
    0x92ee7000 - 0x92efcfff com.apple.securityhi 2.0 (203) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SecurityHI.fr amework/Versions/A/SecurityHI
    0x92f0e000 - 0x92f95fff com.apple.ink.framework 101.2 (69) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Ink.framework /Versions/A/Ink
    0x92fa9000 - 0x92fb4fff com.apple.help 1.0.3 (32) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Help.framewor k/Versions/A/Help
    0x92fbe000 - 0x92febfff com.apple.openscripting 1.2.3 (???) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/OpenScripting .framework/Versions/A/OpenScripting
    0x93005000 - 0x93015fff com.apple.print.framework.Print 5.0 (190.1) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Print.framewo rk/Versions/A/Print
    0x93021000 - 0x93087fff com.apple.htmlrendering 1.1.2 /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HTMLRendering .framework/Versions/A/HTMLRendering
    0x930b8000 - 0x9310afff com.apple.NavigationServices 3.4.2 /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/NavigationSer vices.framework/Versions/A/NavigationServices
    0x93136000 - 0x93153fff com.apple.audio.SoundManager 3.9 /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CarbonSound.f ramework/Versions/A/CarbonSound
    0x93165000 - 0x93172fff com.apple.CommonPanels 1.2.2 (73) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CommonPanels. framework/Versions/A/CommonPanels
    0x9317b000 - 0x9348dfff com.apple.HIToolbox 1.4.4 (???) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.fra mework/Versions/A/HIToolbox
    0x935d9000 - 0x935e5fff com.apple.opengl 1.4.6 /System/Library/Frameworks/OpenGL.framework/Versions/A/OpenGL
    0x93656000 - 0x93656fff com.apple.Cocoa 6.4 (???) /System/Library/Frameworks/Cocoa.framework/Versions/A/Cocoa
    0x93658000 - 0x93c8bfff com.apple.AppKit 6.4.3 (824.23) /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit
    0x94017000 - 0x94086fff com.apple.CoreData 50 (77) /System/Library/Frameworks/CoreData.framework/Versions/A/CoreData
    0x940bf000 - 0x94189fff com.apple.audio.toolbox.AudioToolbox 1.4.1 /System/Library/Frameworks/AudioToolbox.framework/Versions/A/AudioToolbox
    0x941dd000 - 0x941ddfff com.apple.audio.units.AudioUnit 1.4 /System/Library/Frameworks/AudioUnit.framework/Versions/A/AudioUnit
    0x941df000 - 0x94357fff com.apple.QuartzCore 1.4.3 /System/Library/Frameworks/QuartzCore.framework/Versions/A/QuartzCore
    0x943a1000 - 0x943defff libsqlite3.0.dylib /usr/lib/libsqlite3.0.dylib
    0x943e6000 - 0x94436fff libGLImage.dylib /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLImage.dyl ib
    0x945d8000 - 0x945e7fff libCGATS.A.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCGATS.A.dylib
    0x945ef000 - 0x945fbfff libCSync.A.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCSync.A.dylib
    0x94640000 - 0x94658fff libRIP.A.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libRIP.A.dylib
    0x95d2c000 - 0x95d5efff com.apple.PDFKit 1.0.1 /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/PDFKit.framew ork/Versions/A/PDFKit
    0x97fbd000 - 0x98055fff com.apple.QuartzComposer 1.1.1 (30.1) /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuartzCompose r.framework/Versions/A/QuartzComposer
    0x980a6000 - 0x980a6fff com.apple.quartzframework 1.0 /System/Library/Frameworks/Quartz.framework/Versions/A/Quartz
    0x9821e000 - 0x98236fff com.apple.slideshow 1.0.3 (1.0) /System/Library/PrivateFrameworks/Slideshow.framework/Versions/A/Slideshow
    Model: PowerBook6,7, BootROM 4.9.3f0, 1 processors, PowerPC G4 (1.5), 1.33 GHz, 1.5 GB
    Graphics: ATI Mobility Radeon 9550, ATY,M12, AGP, 32 MB
    Memory Module: DIMM0/BUILT-IN, 512 MB, built-in, built-in
    Memory Module: DIMM1/J7, 1 GB, DDR SDRAM, PC2700U-25330
    AirPort: AirPort Extreme, 404.2 (3.90.34.0.p16)
    Modem: Jump, , V.92, Version 1.0,
    Bluetooth: Version 1.6.6f22, 2 service, 1 devices, 1 incoming serial ports
    Network Service: AirPort, AirPort, en1
    PCI Card: pci106b,4318, sppci_othernetwork, SLOT-B
    Parallel ATA Device: MATSHITACD-RW CW-8124, 559.34 MB
    Parallel ATA Device: FUJITSU MHV2100AT, 93.16 GB
    USB Device: Bluetooth HCI, , Up to 12 Mb/sec, 500 mA
    USB Device: Apple Internal Trackpad, Apple Computer, Up to 12 Mb/sec, 500 mA
    Thanks for your help,
    Dan

  • Issues with restarting after a program crash- please help

    Two questions regarding restarting after a program has crashed on Leopard.
    1. I had an issue where Parallels crashed and I had to restart. When restarting, the dock closes and it goes to a point where there is a circle timer. This does not stop and an error comes up stating that I need to hit the power button. Is this "normal" after a program crash and restarting? On a side note, I couldn't close the program with Force Quit. This seems to be happening often.
    2. How often does it occur for you where a program will not close with Force Quit? I've had Parallels crash and some other programs. When this happens, Force Quit doesn't do anything. Any other options?
    Thanks for your help.

    You should check your startup drive as a starting point, if programs are crashing regularly. That's obviously not "normal." Run +Repair Disk Permissions+ in Disk Utility while started up normally. Then, start up from another disc and run Disk Utility to use the +Repair Disk+ on the startup drive, to look for disk directory issues (you can startup from the Mac OS X installation disc to run Disk Utility).
    When this happens, Force Quit doesn't do anything. Any other options?
    You can start the Activity Monitor program and quit processes that look relevant to the app. Sometimes, force quit does not work to quit an app because an underlying process keeps running. Sometimes, the Mac is not able to restart or shutdown normally because an app refuses to quit, due to this problem. It is often difficult to know if you should kill a process, so after doing it to make an app quit, it would be a good idea to restart.

  • Hi! I was using Microsoft Word. And it said that there server was offline when I went to save it. The program  crashed, and  I have lost my report! Help!!!

    Hi! I was using Microsoft Word. And it said that the server was offline when I went to save it. The program  crashed, and  I have lost my report! Help!!!
    I was thinking there has to be a recovery file on the computer somewhere! Right?
    Help!

    Versions of Word on Windows make a backup file with the extension .abk, if that has been enabled in their options, I do not know whether the Mac versions do, or whether you enabled it but try using Spotlight to search for .abk or just abk.
    Where were you trying to save? a network server drive?

  • Saving onto Apple Time Capsule, any Adobe program crashes, then machine crashes. Help.

    The file actually saves, but the program crashes. This is happening mainly in Photoshop and Illustrator (CS6), and most of the time I am forced to restart my machine to get it going again as I try to force quit the program and the OS crashes.
    Any thoughts?
    I'm on a Mac Pro running on Lion, but it also happens on my Macbook Pro, also on Lion.
    Cheers

    Hi, there is a long years old thread on the apple forum about this problem, and neither Adobe or Apple seems to pay any attention to it. Hundreds (if not thousands) of users experience complete system lockup's when they try to save files from Illustrator, Photoshop, Fireworks, Dreamweaver, etc. CS4 through CS6 versions to an Apple Time Capsule wireless device whether connected by ethernet or not. The problem is exclusively happening on Adobe products and only on the Time Capsules (oldest or newest version of hardware and software). I just felt like writing about it because I crashed my Mac Pro desktop when saving from Fireworks CS6 to my brand new Time Capsule, went over to my Macbook Pro to continue to work and it locked it up as well. It is a complete system failure and you cannot do anything but turn off your computer and re-power up, even after force quit attempts on the offending Adobe products.
    It is singularily the most frustrating thing I've ever encountered on a Mac, and the only time I have ever had it truly lock the system hardware. I only wish Adobe and Apple would pay attention to their forums and do something about it. Meanwhile what we all do is save our work to our desktops and then transfer it to the Time Capsule, and less than stellar user experience.
    Thought I'd mention it - maybe if enough people know about the issues (which has reported countless times to both Adobe and Apple), it will get investigated and fixed.
    BK

  • Program crashes when I try to load EPUB/ASCM ebook file or transfer the file to Nook ereader.

    I recently checked out an ebook from my library's OverDrive and downloaded the EPub file to my Mac OS 10.10.1 computer. File downloaded to computer without incident, showing up as a acsm file in my Downloads folder. But when I attempt to open the file in Adobe Digital Editions 4.0.2 in order to transfer it to my Nook ereader, a message comes up saying it is fulfilling (similar to normal) but then the program crashes.
    I get this error message:
    (Adobe Digital Editions quit unexpectedly.
    Click Reopen to open the application again. Click Report to see more
    detailed information and send a report to Apple.
    With buttons that say: Ignore    Report     Reopen)
    Then when I reopen Adobe Digital Editions, it appears as thought the file is in the Adobe Digital Editions browser, but if I click on it to open it or try and transfer it to my Nook ereader device the program crashes again. (Same error message)
    I've tried erasing the file and redownloading the ebook from Google Chrome, Safari and Firefox and the same thing happens. I've also tried restarting my computer and looking for updates to resolve the issue (there were none). I've used this program before with no issues, so this problem is new. I've also tried opening other files since, they most of those seem to open as well.I've used this program before with no issues, so this problem is new.
    Running out of ideas. Please help!

    Mike, that worked -- I think! I couldn't change the printer without a document open, but while I was in the File menu, I noticed the "Browse in Bridge" command, and it occurred to me that I hadn't tried opening a file from Bridge. It opened first to the templates, and I realized I had not tried opening a template. So I did, that worked, and I changed the printer from where it was set (Adobe pdf) to my regular printer. Now I can create new files, and all files seem to open without a problem. Thanks!

  • Does anyone know how to display (in LabVIEW) the memory use during execution of an image and data acquisition VI to predict when it is time to cease the acquisition to prevent the program crashing?

    Does anyone know how to display (in LabVIEW) the memory use during execution of an image and data acquisition VI to predict when it is time to cease the acquisition to prevent the program crashing?
    I am acquiring images and data to a buffer on the edge of the while loop, and am finding that the crashing of the program is unpredictable, but almost always due to a memory saturation when the buffers gets too big.
    I have attached the VI.
    Thanks for the help
    Attachments:
    new_control_and_acquisition_program.vi ‏946 KB

    Take a look at this document that discusses how to monitor IMAQ memory usage:
    http://digital.ni.com/public.nsf/websearch/8C6E405861C60DE786256DB400755957
    Hope this helps -
    Julie

  • Multiple programs crashing wSegmentation fault in __lll_unlock_elision

    Hi,
    Recently I've noticed different programs crashing with Segmentation fault in __lll_unlock_elision from /usr/lib/libpthread.so.0
    It has happened in chromium, vlc, gtk-query-immodules-2.0 and others.
    Has anyone else had this issue?
    I'm on xfce, compositor enabled, nvidia proprietary drivers.
    Relevant packages:
    nvidia 349.16-2
    xfwm4 4.12.2-1
    glibc 2.21-3
    Sample backtrace:
    (gdb) bt
    #0 0x00007ffff6e30150 in __lll_unlock_elision () from /usr/lib/libpthread.so.0
    #1 0x00007ffff28c312c in ?? () from /usr/lib/libEGL.so.1
    #2 0x00007ffff28558c2 in ?? () from /usr/lib/libEGL.so.1
    #3 0x00007fffffffea80 in ?? ()
    #4 0x00007ffff28d4831 in ?? () from /usr/lib/libEGL.so.1
    #5 0x00007fffffffea80 in ?? ()
    #6 0x00007ffff7dea815 in _dl_fini () from /lib64/ld-linux-x86-64.so.2
    Backtrace stopped: previous frame inner to this frame (corrupt stack?)
    dmesg
    [ 1037.049770] traps: exo-open[4639] general protection ip:7fcf8cde1150 sp:7ffdb47b3f68 error:0 in libpthread-2.21.so[7fcf8cdcf000+18000]
    [ 1037.338044] traps: chromium[4643] general protection ip:7f6e9248f150 sp:7ffc2b329c48 error:0 in libpthread-2.21.so[7f6e9247d000+18000]
    [ 1038.637627] traps: exo-helper-1[4641] general protection ip:7fc9bc586150 sp:7ffc590b11b8 error:0 in libpthread-2.21.so[7fc9bc574000+18000]
    [ 1563.263410] traps: exo-open[5860] general protection ip:7fbcafcb1150 sp:7fffaf2b1b88 error:0 in libpthread-2.21.so[7fbcafc9f000+18000]
    [ 1563.541248] traps: chromium[5865] general protection ip:7f6571529150 sp:7fff0e0d9898 error:0 in libpthread-2.21.so[7f6571517000+18000]
    [ 1565.023467] traps: exo-helper-1[5863] general protection ip:7f7008a5b150 sp:7ffe8751b268 error:0 in libpthread-2.21.so[7f7008a49000+18000]
    [ 1565.806110] traps: exo-open[5912] general protection ip:7f378156e150 sp:7ffff5e809a8 error:0 in libpthread-2.21.so[7f378155c000+18000]
    [ 1566.082173] traps: chromium[5917] general protection ip:7f5178539150 sp:7ffc84f4f198 error:0 in libpthread-2.21.so[7f5178527000+18000]
    [ 1572.868808] traps: exo-helper-1[5915] general protection ip:7f42957c9150 sp:7ffddf89f388 error:0 in libpthread-2.21.so[7f42957b7000+18000]
    [ 1669.886865] traps: chromium[5969] general protection ip:7f5a4a39e150 sp:7ffc84639608 error:0 in libpthread-2.21.so[7f5a4a38c000+18000]
    [ 2465.870363] traps: chromium[7316] general protection ip:7f5a4a39e150 sp:7ffc84639608 error:0 in libpthread-2.21.so[7f5a4a38c000+18000]
    [ 2858.156512] traps: chromium[8279] general protection ip:7f5a4a39e150 sp:7ffc84639608 error:0 in libpthread-2.21.so[7f5a4a38c000+18000]
    [ 3546.898166] traps: chromium[9480] general protection ip:7f5a4a39e150 sp:7ffc84639608 error:0 in libpthread-2.21.so[7f5a4a38c000+18000]
    [ 3554.046413] traps: chromium[9553] general protection ip:7f5a4a39e150 sp:7ffc84639608 error:0 in libpthread-2.21.so[7f5a4a38c000+18000]
    [ 3642.230049] traps: exo-open[10018] general protection ip:7f77ee5b9150 sp:7ffd33e39638 error:0 in libpthread-2.21.so[7f77ee5a7000+18000]
    [ 3642.523830] traps: chromium[10022] general protection ip:7f58b485a150 sp:7ffc760c0758 error:0 in libpthread-2.21.so[7f58b4848000+18000]
    [ 3643.896904] traps: exo-helper-1[10020] general protection ip:7fa3a1acd150 sp:7ffcc63571f8 error:0 in libpthread-2.21.so[7fa3a1abb000+18000]
    [ 3733.354116] traps: chromium[10119] general protection ip:7f8399457150 sp:7ffc4c08cd88 error:0 in libpthread-2.21.so[7f8399445000+18000]
    [ 3799.896620] traps: exo-open[10230] general protection ip:7f3d85ad0150 sp:7ffcb3a82548 error:0 in libpthread-2.21.so[7f3d85abe000+18000]
    [ 3800.185212] traps: chromium[10235] general protection ip:7f2c089d1150 sp:7ffd5a5464b8 error:0 in libpthread-2.21.so[7f2c089bf000+18000]
    [ 3935.735541] traps: exo-helper-1[10233] general protection ip:7fa760400150 sp:7ffe0b4254e8 error:0 in libpthread-2.21.so[7fa7603ee000+18000]
    [ 3957.291621] traps: chromium[10778] general protection ip:7f4b88304150 sp:7ffee14f9e18 error:0 in libpthread-2.21.so[7f4b882f2000+18000]
    [ 3977.318568] traps: gdk-pixbuf-quer[11058] general protection ip:7f00c88a7150 sp:7ffc3b04d858 error:0 in libpthread-2.21.so[7f00c8895000+18000]
    [ 3982.911193] traps: gtk-query-immod[11069] general protection ip:7fae4d428150 sp:7ffd2a514258 error:0 in libpthread-2.21.so[7fae4d416000+18000]
    [ 4018.309394] traps: gtk-query-immod[11146] general protection ip:7fce99a59150 sp:7ffce1f6d848 error:0 in libpthread-2.21.so[7fce99a47000+18000]
    [ 4042.815698] traps: gdk-pixbuf-quer[11159] general protection ip:7f847b535150 sp:7fff9b265548 error:0 in libpthread-2.21.so[7f847b523000+18000]
    [ 4133.933755] traps: gdk-pixbuf-quer[11293] general protection ip:7f9df0e1a150 sp:7fffa149ee88 error:0 in libpthread-2.21.so[7f9df0e08000+18000]
    [ 4790.014695] traps: gtk-query-immod[12378] general protection ip:7f3c51a72150 sp:7fff1222de48 error:0 in libpthread-2.21.so[7f3c51a60000+18000]

    https://www.archlinux.org/news/changes- … deupdates/

  • Several programs crash with Glib-GIO error

    in my notebook several programs crash with an error ouput:
    (here for firefox)
    (firefox:6303): GLib-GIO-CRITICAL **: g_simple_async_result_set_from_error: assertion `error != NULL' failed
    (firefox:6303): GLib-CRITICAL **: g_error_free: assertion `error != NULL' failed
    (firefox:6303): GLib-GIO-CRITICAL **: g_simple_async_result_set_from_error: assertion `error != NULL' failed
    (firefox:6303): GLib-GIO-WARNING **: (gfile.c:5244):IA__g_file_load_partial_contents_finish: runtime check failed: (g_simple_async_result_get_source_tag (simple) == g_file_load_contents_async)
    Speicherzugriffsfehler
    - firefox crashes every time i try to browse for a file (fileupload form).
    - nautilus --no-desktop crashes also before the gui is loaded with the same error output.
    - same to brasero
    - same to gnomebaker
    - evince crashes on open/file (again when browser should be opened)
    thunar works, seems there is a problem with nautilus or any gnome's lib
    on my another pc also running arch, there are no such problems.. would be great if anyone would help.
    every hint is welcome, since i'm pretty frustrated.. google and irc didn't help.
    thank you in advance

    Hi
    I experience a very similar problem.
    Whenever I insert a blank CDrom or a blank dvd some applications crash that somehow access the dvd drive. these are brasero or listen, that I'm aware of, for the moment.
    others like gnome-baker do fine. nautilus as well is doing fine.
    brasero:
    (brasero:25610): GLib-GIO-CRITICAL **: g_simple_async_result_set_from_error: assertion `error != NULL' failed
    (brasero:25610): GLib-CRITICAL **: g_error_free: assertion `error != NULL' failed
    (brasero:25610): GLib-GIO-CRITICAL **: g_simple_async_result_set_from_error: assertion `error != NULL' failed
    (brasero:25610): GLib-GIO-WARNING **: (gfile.c:5244):IA__g_file_load_partial_contents_finish: runtime check failed: (g_simple_async_result_get_source_tag (simple) == g_file_load_contents_async)
    Segmentation fault
    listen does:
    (listen.py:25694): GLib-GIO-CRITICAL **: g_simple_async_result_set_from_error: assertion `error != NULL' failed
    sys:1: Warning: g_error_free: assertion `error != NULL' failed
    (listen.py:25694): GLib-GIO-CRITICAL **: g_simple_async_result_set_from_error: assertion `error != NULL' failed
    (listen.py:25694): GLib-GIO-WARNING **: (gfile.c:5244):IA__g_file_load_partial_contents_finish: runtime check failed: (g_simple_async_result_get_source_tag (simple) == g_file_load_contents_async)
    /usr/bin/listen: line 1: 25694 Segmentation fault LD_LIBRARY_PATH=/usr/lib/firefox python -OO /usr/lib/listen/listen.py $@
    So it's bothering as all the time i want to burn something listen will crash.
    Otherwise I'm using gnome-baker for burning, so it's ok.
    but bothering.
    This might help you.
    If I can give u more information, just tell me (but I have to tell u: I'm not a big pro!)

  • Setup program crashes when you try to install a 2007 Office on a 64-bit version of Windows 7

    Hello there,
    I have a Dell Vostro machine with Windows 7 Pro 64-bit installed on it. It came with Office 2010 preinstalled on it. About 6 months ago I removed Office 2010 and installed Office 2007 with no problems. Yesterday a user messed up her office so badly
    that I had to uninstalled it in an attempt to reinstall to ensure that all missing files exist. A few seconds after selecting my options, the installation program crashes. I tried it with a few different users logged in to make sure it's something related
    to the profile of the user I was logged in as.
    Just to be clear, this is the same Office 2007 installation that was installed correctly on it about 6 months ago and the same product key.
    Why is this happening and how can I fix this issue without having to restore the computer to its default state?
    Any help is appreciated.
    Thank you,

    Hi,
    Please refer to this kb, use Microsoft Fix it 50154 to uninstall Office 2007 completely:
    http://support.microsoft.com/kb/928218/en-us
    Then try installing again.
    We can also perform a clean boot to install, which gets rid of the background program conflicts:
    http://support.microsoft.com/kb/929135
    Hope this can help.
    Regards,
    Melon Chen
    TechNet Community Support

Maybe you are looking for

  • Hallo ich hätte eine Frage zur Adobe Creative Cloud ?!

    Ich bin Schüler .... Wen ich mir ein Jahres Abo der Creative Cloud hole habe ich dann zugriff auf alle Produkte oder wie genau Funktioniert das .... Habe das nicht ganz verstanden ! Möchte After Effects Hauptsächlich .

  • I am unable to drag an e-mail address to another folder on some occassions

    I have my customers e-mail addresses broken into several alphabetical folders. I have a collected address folder that whenever I e-mail someone, their e-mail address is stored in that folder. I then drag the address from the collected folder to the c

  • Security Update 2010-005 and WiFi

    After installing the latest security update, I am unable to connect to by my WiFi (LinkSys). I enter the password (which I verified using my MacBook G4 which runs 10.5 and did not receive the update), but the password is not accepted.

  • Credit and debit enteries ADC

    HI all      As per excise law 4% cenvat credit is of additional customs duty and note additional excise duty (Goods of Special Importance) i.e. AED (GSI).       So we have to take credit as well as make debit entries in ADC head and note AED(GSI). So

  • Period (.) appearing at end of position displays

    Hello I've noticed that sometimes a period (.) is appearing at the end of position displays in the transport and event lists. eg 4 1 2 156. this can occur no matter how many digits are in the last number eg 4 1 2 1. Does this mean that some informati