IB Scroll View position problem

2008-12-10 Thread Randy Bradley
I have two scroll views in my application, each with a table view, in addition to a bunch of other items. Everything is locked to the upper left corner of the window view. When the window is resized, I would like the scroll views to expand and shrink along with the window. The smaller scrol

Re: Special Characters Edit Menu Item

2008-12-03 Thread Randy Bradley
David, I think there must be a way since this menu item doesn¹t show up in my Entourage compose mail window.To be honest, I never noticed this before. It seems to me that there are many cases where special characters are not appropriate. If it really bothered me I guess I would try to del

Re: Next Key View doesn't "go to" pushbutton

2008-10-07 Thread Randy Bradley
You could override the controlTextDidEndEditing method: - (void)controlTextDidEndEditing:(NSNotification *)aNotification{ ... if([[[aNotification userInfo] valueForKey:@"NSTextMovement"] intValue] == NSReturnTextMovement) { // invoke whatever button pressed code.

Re: Trying to compile an ObjectiveC and C++ program in XCode 3.1

2008-09-11 Thread Randy Bradley
> The ³.mm² extension is required for source that contains both C++ and Objective-C, thus called Objective-C++. Not required for pure C++ source. A couple ideas: 1. Be sure to add the C++ source files to your target. (ie, look for the checkmark in the target column) 2. Any objective-c source t

Oracle and Objective C++

2008-09-03 Thread Randy Bradley
I'm having difficulty importing data from an Oracle database into a Cocoa application. I've installed the Oracle client and OCCI examples. The example occidml.cpp seemed to make and run just fine from the command line. Now, I would like to get some data from Oracle into my Cocoa appli