CoreData and 3 level Master/Detail tableView

2011-12-20 Thread gumboots
I apologize in advance for subjecting the list members to another CoreData model description. To ease the pain here is a screen shot of the datamodel. http://codemuster.co.nz/images/datamodel.jpg The plan is to build a 10.7, document based, CoreData app that stores,sorts and displays scores fro

CoreData and 3 level Master/Detail tableView

2011-12-20 Thread gumboots
I apologize in advance for subjecting the list members to another CoreData model description. To ease the pain here is a screen shot of the datamodel. The plan is to build a 10.7, document based, CoreData app that stores,sorts and displays scores from clay target events around the country. It wi

Best practice for receiving data

2010-12-13 Thread gumboots
Hi everyone, This is probably an elementary question and I may be using the wrong terminology, so I apologise. My app takes measurements from a HP Data Acquisition unit (DAU). I push commands out to the DAU and wait for the values returned on a serial port (AMSerialPort). I have it sort of wo

Re: Another basic CoreData question

2010-07-09 Thread gumboots
do not post admin requests or moderator comments to the list. > Contact the moderators at cocoa-dev-admins(at)lists.apple.com > > Help/Unsubscribe/Update your Subscription: > http://lists.apple.com/mailman/options/cocoa-dev/gumboots%40mac.com > > This email sent to gumbo...@mac.c

Another basic CoreData question

2010-07-08 Thread gumboots
Using the standard Employee/Department example, Whats the best way to set a default department for an Employee? So that every employee is created with a relationship to the "mailRoom" department. ___ Cocoa-dev mailing list (Cocoa-dev@lists.apple.com)

Re: Revolving scoreboard

2010-01-03 Thread gumboots
>>> Cocoa-dev mailing list (Cocoa-dev@lists.apple.com) >>> >>> Please do not post admin requests or moderator comments to the list. >>> Contact the moderators at cocoa-dev-admins(at)lists.apple.com >>> >>> Help/Unsubscribe/Update your Subscriptio

Revolving scoreboard

2010-01-03 Thread gumboots
I have been asked to design a revolving scoreboard for a large Sporting Clays event. The plan is to have a MacBook connected to a large flat screen TV in the main tent. I will pull the scores from a CSV file (which is updated regularly) and sort them into arrays for display. Creating the on scre

Re: Display csv in a tableView with bindings

2009-07-26 Thread gumboots
Thanks People, This is excellent advice and very helpful. The main purpose of the app was to load the CSV (exported from Numbers) and turn the data into an HTML table with some hard coded CSS hooks. This works well now, but the format required from the CSV is not very flexible. So I thought

Display csv in a tableView with bindings

2009-07-24 Thread gumboots
I need some direction please. I would like to load a csv file and display the contents in an NSTableView. What is the best way to achieve this with bindings? Should the model store the data in an array of arrays (rows and columns) or a dictionary of arrays (keyed columns and rows)? __

Network communications help

2009-02-10 Thread gumboots
I currently have a RealBasic application that manages a furnace temperature controller. Using the TCPSocket class in RB the app listens to a port and I can query this application from other computers on the LAN and set parameters of the temperature controller, by passing strings. What I w

Increment object property

2008-10-22 Thread gumboots
Newbie question, Is it possible to have an object property that increments everytime an object is instantiated? @interface foo : NSObject { NSString*name; } @property (copy,readwrite) NSString *name; @end #import "foo.h" @implementation foo - (id) init { self = [super i