Need some clarity about iOS developer Registration.

2012-09-27 Thread kiran kumar
Hi All, Need some clarity about iOS developer Registration. If i get the individual account for $99, does it support multiple iphone or ipad devices and what about PC's ? Thus this account support no.of PC's? Regards, Kiran.K The information contained in thi

Registering iOS developer program

2012-09-27 Thread kiran kumar
Hi All, For registering iOS developer program, is same cost $99 for individual and company. Regards, Kiran.K The information contained in this email and any attachments is confidential and may be subject to copyright or other intellectual property protection. If you are not the intended rec

app developed for iPhone is compatible with iPad

2012-09-26 Thread kiran kumar
Hi Everyone, I am new to iOS development. Is the app developed for iPhone is compatible with iPad / we need to take care in code for window resizing etc? Regards, Kiran.K The information contained in this email and any attachments is confidential and may be

Re: need to run a ln command for every boot

2011-10-05 Thread kiran kumar
creates a shortcut icon on desktop ,when i uninstall and install again (second time) there is no shortcut icon on my desktop. Regards, Kiran On Oct 5, 2011, at 1:44 PM, Conrad Shultz wrote: -BEGIN PGP SIGNED MESSAGE- Hash: SHA1 On 10/5/11 12:16 AM, kiran kumar wrote: Hi All, I need to run

need to run a ln command for every boot

2011-10-05 Thread kiran kumar
Hi All, I need to run this ln -s /Applications/test.app ~/Desktop/ command for every boot on Mac OS 10.6. Please can any one suggest me how to do this . Regards, Kiran The information contained in this email and any attachments is confidential and may be s

Re: Core Data Save As Binary Error

2009-12-14 Thread Kiran Kumar S
Have you changed the storetype to binary in info.plist file Regards SKiran On 14-Dec-09, at 6:11 PM, Richard Somers wrote: I have a Core Data document based application. Saving the file as XML or SQLite works fine. Saving as binary results in an error: *** -[NSKeyedArchiver encodeValue

Re: Custom background in NSTableHeaderView

2009-11-17 Thread Kiran Kumar S
Hi, CellAttributes are used by button and button cell for displaying image and text accordingly, but tableHeaderCell doesn't uses these attributes for displaying image and text.. Customize the NSTableHeaderCell and draw the image and text in drawWithFrame method. Thanks SKiranKumar

Re: Multiple relationships between two entities

2009-10-12 Thread Kiran Kumar S
Create a Link Entity by adding another property linkType which decides the normal or alternate link. In Item entity make to-many- relationShip for relationship link Thanks Kiran On 13-Oct-09, at 11:34 AM, Rob Keniger wrote: I'm just getting started with Core Data so go easy on me. I am mo

Re: display Mac id

2009-06-29 Thread Kiran Kumar
controllerService,CFSTR(kIOMACAddress), kCFAllocatorDefault, 0); //release what is needed CFRelease(macAddressData); IOObjectRelease(controllerService); IOObjectRelease(tmpService); On Jun 23, 2009, at 9:04 AM, Kiran Kumar wrote: Hi all, i am doing project to change MAC Address ,i want to

display Mac id

2009-06-23 Thread Kiran Kumar
Hi all, i am doing project to change MAC Address ,i want to display MACID in a single textbox like 00:15:e9:4c:c3:d7 or 00-15-e9-4c-c3-d7 can any one help me plz ... Thanks, kiran The information contained in this email and any attachments is confidential and may be subject to copyright or

Wrong selection Index

2009-05-13 Thread Kiran Kumar S
I had a table with 3 columns(col1, col2, col3(buttonCell)) in which col1 and col2 columns are binded to an Array Controller .Col3 is button cell which is targeted to an action method. When changed selection by clicking the button , in the button cell target method if i ask for selection

problem with NSTimer

2009-05-08 Thread Kiran Kumar S
according to documentation for beginSheet:modalForWindow:modalDelegate:didEndSelector:contextInfo: it says that While the application is in the run loop, it does not respond to any other events (including mouse, keyboard, or window- close events) unless they are associated with the sheet. I

NSDistantObject exception when server trying to access registered clients using DO

2009-05-06 Thread Kiran Kumar S
I am developing a client/server application using distributed objects. I developed server and in that i vended an object to be accessible by clients.In the client side i am getting the vended object, and getting required info from server.Every thing works fine. Until now my client ask serve

Re: Registering Clients using DO

2009-05-05 Thread Kiran Kumar S
sendPort:nil]; [receivePort release]; [connection enableMultipleThreads]; [connection setRootObject:[ServerObject sharedServerObject]]; [connection addRunLoop:runloop]; [connection setDelegate:self]; [receivePort release]; Regards SKiran On 05-May-09, at 11:10

Exception

2009-05-04 Thread Kiran Kumar S
i am developing a client/server app using Distributed objects, i register my client to server. when server pings the client the following exception occurs. Can any one suggest me why this exception occurs, 2009-05-05 12:12:29.023 Project X[5278:10b] *** NSDistantObject initWithCoder: 0x1 n

Re: Registering Clients using DO

2009-05-04 Thread Kiran Kumar S
quits. Regards SKiran On 30-Apr-09, at 2:08 PM, Ken Thomases wrote: On Apr 30, 2009, at 3:06 AM, Kiran Kumar S wrote: On 30-Apr-09, at 12:03 PM, Ken Thomases wrote: On Apr 30, 2009, at 12:47 AM, Kiran Kumar S wrote: I am developing a client/server application using DO. In server an

Registering Clients using DO

2009-04-29 Thread Kiran Kumar S
I am developing a client/server application using DO. In server an object is vended to be accessible by clients.In the client side i am accessing vended object and get required info from server.Every thing works fine. Until now my client queries server and server replies to that. But on ser

Remote host reachability

2009-04-28 Thread Kiran Kumar S
what is the best way to check remote host reachability without effecting main thread, at the time of lauching itself i am trying to access remote host thru DO, and if the remote host is up then there is no problem , but if the remote is down its taking long time to launch. Please help me o

Re: Long Time Dealy When getting Vended Object

2009-04-23 Thread Kiran Kumar S
ort release]; } return serverConnection; } Regards SKiran On 24-Apr-09, at 6:11 AM, Ken Thomases wrote: On Apr 23, 2009, at 12:05 AM, Kiran Kumar S wrote: These are the lines of code i got blocked 1. When Remote Machine is not in Network 553 -[PXDistributedOb

Re: Long Time Dealy When getting Vended Object

2009-04-22 Thread Kiran Kumar S
553 -[NSDistantObject forwardInvocation:] 553 -[NSConnection sendInvocation:internal:] 553 -[NSConnection sendInvocation:internal:] On 22-Apr-09, at 3:33 PM, Kiran Kumar S

Re: Long Time Dealy When getting Vended Object

2009-04-22 Thread Kiran Kumar S
wrote: On Apr 22, 2009, at 1:14 AM, Kiran Kumar S wrote: Really going mad, it is taking long time response when i am trying to get vended Object from the remote machine which doesn't exist in the network. . I am facing same long time delay(more than 60 sec) when i am trying t

Long Time Dealy When getting Vended Object

2009-04-21 Thread Kiran Kumar S
Hi, Really going mad, it is taking long time response when i am trying to get vended Object from the remote machine which doesn't exist in the network. . I am facing same long time delay(more than 60 sec) when i am trying to get vended object from the remote machine which gone to sleep

SocketPort allocating

2008-12-19 Thread Kiran Kumar S
I had Distributed object which can used by any client, i am establishing connection using a port , every thing works fine.My object is vended and the client can use the vended object . But i am getting problem when i restart my server which supplies vended object. When i am restarting somet

Popups Binding problem

2008-11-20 Thread Kiran Kumar S
Hi, I have two popups which I want to bind together; the first popup contains a list of Categories, which has an array of reports. The reports array is a content array of the second popup. I want to select a Category in the first popup and get a list of reports in the second popup. When user chan