Re: Core Data - attribute to hold an array of strings

2009-08-11 Thread parag vibhute
, whereas UIImage does not conform and requires this extra step to convert the image to an NSData object, which can be archived. John On Sunday Aug 9 4:10 PM, at 4:10 PM, Kyle Sluder wrote: On Aug 9, 2009, at 4:39 AM, parag vibhute parag.vibh...@gmail.com wrote: Yes, you can. Only thing

Re: Core Data - attribute to hold an array of strings

2009-08-09 Thread parag vibhute
Yes, you can. Only thing is you need to convert UIImage object to NSData object. There are two C APIs - UIImageJPEGRepresentationhttp://developer.apple.com/iPhone/library/documentation/UIKit/Reference/UIKitFunctionReference/Reference/reference.html#//apple_ref/c/func/UIImageJPEGRepresentation

Re: Re: How can I get rid of this message?

2009-07-01 Thread parag . vibhute
Perfect answer. I would like to add one point. Statement [NutArray addObject: SomeData] is wrong. It should be [NutArray addObject:singleNutData]. Please go through the docs of NSArray its subclasses. Regards, Parag On Jul 2, 2009 8:26am, Roland King r...@rols.org wrote: 1) NSArray

Re: Re: NSLog / Console / Console Messages

2009-07-01 Thread parag . vibhute
It is always better to create seperate log file programmatically write the log statements in that file. In this way, you can customize the log file the way you want. Only remember to set file extension as .log. Bcoz of this, your log file will always be opened by Console application by

Re: (no subject)

2009-02-20 Thread parag vibhute
HI Mukesh, Nick has mentioned nicely. Ask the *exact *question. Regards, Parag On Fri, Feb 20, 2009 at 11:42 PM, Nick Zitzmann n...@chronosnet.com wrote: On Feb 20, 2009, at 2:57 AM, mukesh wrote: I am building an application whose requirement is to develop an window same as in the

Re: Consola application

2008-10-25 Thread parag vibhute
Hi Marcus, Many thanks for source code of Consola. Thanks, Palav On 10/25/08, Marcus [EMAIL PROTECTED] wrote: Hello all, I have an open source application Consola (which I received from one of my friend). But I do not have its source code. FYI, there was an Open Source *Bluetooth*

Consola application

2008-10-24 Thread parag vibhute
Hello all, I have an open source application Consola (which I received from one of my friend). But I do not have its source code. FYI, there was an Open Source *Bluetooth* Proximity Media Server application Consola. This application its source code were available around Year 2005. If anybody

Installing Spin Control alone

2008-06-06 Thread parag vibhute
Hi all, I am sending this mail to this list because it is part of debugging cocoa application. I have implemented an application which hangs rarely on user's machine. To find out the cause, I to install Spin control application on user's machine but without needing to install XCode. I did

Re: Installing Spin Control alone

2008-06-06 Thread parag vibhute
without installing development tools. However you can try using Sample in Activity Monitor(App/Utilities) on the hanged app. (Double Click the hanged app in Activity Monitor to get console window and hit Sample) Thanks. - Vijay On Fri, Jun 6, 2008 at 4:43 PM, parag vibhute [EMAIL PROTECTED

How to enable crash log generation in 10.5?

2008-06-05 Thread parag vibhute
Hi all, I have implemented Cocoa application where I am handling exceptions through signal handling. I went through the Apple TechNote TN2123 ( http://developer.apple.com/technotes/tn2004/tn2123.html). It states following statement: *Prior to Mac OS X 10.5, if you wrote a program that cause an

Re: How to enable crash log generation in 10.5?

2008-06-05 Thread parag vibhute
, parag vibhute [EMAIL PROTECTED] wrote: Hi all, I have implemented Cocoa application where I am handling exceptions through signal handling. I went through the Apple TechNote TN2123 ( http://developer.apple.com/technotes/tn2004/tn2123.html). It states following statement: *Prior to Mac OS X

Re: Query about Zip command

2008-05-24 Thread parag vibhute
I am launching my app through applet. So passing arguments as command line is only current solution for me. Thanks, Palav On 5/24/08, Andreas Mayer [EMAIL PROTECTED] wrote: Am 24.05.2008 um 08:08 Uhr schrieb Andrew Farmer: GUI applications generally do not take arguments - opened files are

Re: Query about Zip command

2008-05-24 Thread parag vibhute
Sorry for my last email. That comment was incorrect(I was thinking something else). Sorry again. I will try with launchAppWithBundleIdentifier API will let u know the output. Thanks, Palav On 5/24/08, parag vibhute [EMAIL PROTECTED] wrote: I am launching my app through applet. So passing

Query about Zip command

2008-05-23 Thread parag vibhute
Hi all, I am developing cocoa application using NSApplescript class to do shell scripting which involves zip command. I am using zip command for zipping the files because there is no framework api available for it. Even though libz is available, it is not easy to use. (I can't use NSData because

Re: Query about Zip command

2008-05-23 Thread parag vibhute
I was looking for this answer only. Thanks a lot. Palav On Fri, May 23, 2008 at 2:23 PM, Andrew Farmer [EMAIL PROTECTED] wrote: On 23 May 08, at 01:26, parag vibhute wrote: I am developing cocoa application using NSApplescript class to do shell scripting which involves zip command. I am

Re: Query about Zip command

2008-05-23 Thread parag vibhute
Thanks for suggestion. I will definitely give a try. Palav On 5/23/08, Jens Alfke [EMAIL PROTECTED] wrote: On 23 May '08, at 1:26 AM, parag vibhute wrote: I am developing cocoa application using NSApplescript class to do shell scripting which involves zip command. Don't use AppleScript

Re: How to handle bad certificate error in NSURLDownload?

2008-05-22 Thread parag vibhute
or not. On 19 May '08, at 8:19 AM, parag vibhute wrote: I implemented same but whenever I launched my application it asks to change trust settings. Why is it like that? It's unclear what you mean here. If you used the Security Framework and it asks if you want to change trust settings

How to handle bad certificate error in NSURLDownload?

2008-05-19 Thread parag vibhute
Hi all, I am using NSURLDownload class to download a file through https. But I get error bad server certificate. I know this error occurs when HTTPS server has bad certificate. I want to allow this download even though certificate is bad. So can anybody tell how can I handle this? I searched

Re: How to handle bad certificate error in NSURLDownload?

2008-05-19 Thread parag vibhute
password required file(which is at server) gets partially downloaded. How can I overcome this? Thanks again, Palav On Mon, May 19, 2008 at 8:22 PM, ainxow [EMAIL PROTECTED] wrote: On May 19, 2008, at 8:35 AM, parag vibhute [EMAIL PROTECTED] wrote: I am using NSURLDownload class to download

Creating zip using cocoa framework

2008-05-08 Thread parag vibhute
Hi, I want to create zip file using Cocoa framework. I know I can do it using shell/apple scripting but want to know that is there any framework in Cocoa for creating zip file? Thanks, Palav -- There are many things in your life that will catch your eye but only a few will catch your

Re: How can i connect to database?

2008-04-29 Thread parag vibhute
While asking queries, be specific. Which database do u want to connect? and what do you mean 'how to make final exe'? If you don't know about making application on Mac, please go through the beginner's doc. On Tue, Apr 29, 2008 at 2:54 PM, [EMAIL PROTECTED] wrote: hi, I'm working in

Different ways of application installation

2008-04-18 Thread parag vibhute
Hi guys, I have build cocoa application. I am finding out as many ways as possible of application installation which can be done either locally or remotely. Can you please list all those ways? Thanks, Palav -- There are many things in your life that will catch your eye but only a few will

Re: Different ways of application installation

2008-04-18 Thread parag vibhute
Remotely means pushing software packages to clients on a network. Not understood meaning of An installer that pulls its payload from a remote server. Palav On Fri, Apr 18, 2008 at 7:31 PM, Michael Watson [EMAIL PROTECTED] wrote: It's worth noting that you also need to define more clearly what

Re: Different ways of application installation

2008-04-18 Thread parag vibhute
ya, option An installer that pulls its payload from a remote server will also be ok. Palav On Fri, Apr 18, 2008 at 7:53 PM, parag vibhute [EMAIL PROTECTED] wrote: Remotely means pushing software packages to clients on a network. Not understood meaning of An installer that pulls its payload

Re: Different ways of application installation

2008-04-18 Thread parag vibhute
I don't know much about Mac OS X Server, but does it have this type of remote installation without requiring ARD? Thanks, Palav On Fri, Apr 18, 2008 at 8:04 PM, I. Savant [EMAIL PROTECTED] wrote: Remotely means pushing software packages to clients on a network. Not understood meaning of An

Authenticatiion tool

2008-04-18 Thread parag vibhute
I am currently working on a project which is similar to an iChat application tool. I want to save the chat session as iChat does. Incase of iChat we have noted how when we click on save copy menu item it saves the copy of the chat session as a file with time. And when we want to see the chat

Re: Different ways of application installation

2008-04-18 Thread parag vibhute
Fine. Palav On Fri, Apr 18, 2008 at 8:30 PM, I. Savant [EMAIL PROTECTED] wrote: On Fri, Apr 18, 2008 at 10:56 AM, parag vibhute [EMAIL PROTECTED] wrote: I don't know much about Mac OS X Server, but does it have this type of remote installation without requiring ARD? This is definitely

Re: Getting feedback from application

2008-04-16 Thread parag vibhute
wrote: Please read one of the many fine tutorials on the subject, including this one: http://developer.apple.com/documentation/Cocoa/Conceptual/ObjCTutorial/objctutorial.pdf Regards, Mike On Apr 15, 2008, at 1:31 AM, parag vibhute wrote: Hi guys, I have created a cocoa

Re: Getting feedback from application

2008-04-16 Thread parag vibhute
Fleckner [EMAIL PROTECTED] wrote: On 16/04/2008, at 6:19 PM, parag vibhute wrote: Thanks for url. But this earlier urls which I received in this thread are for tutorials for making an application like stuff. What I require is adding native functionality by using which user

Getting feedback from application

2008-04-15 Thread parag vibhute
Hi guys, I have created a cocoa application. Now I would like to have functionality such that there will be a button, on clicking that application will send feedback to me. Is there any class or any documentation available for this? Please give your feedback/comments. Thank, Parag -- There

How to fetch remote file?

2008-04-15 Thread parag vibhute
Hi, I have implemented cocoa application in which I want to fetch a file which is kept on remote machine. I know url of that file. But don't know how to download that file. Can anybody please guide me how to do this? Thanks, Palav -- There are many things in your life that will catch your eye

Re: How to fetch remote file?

2008-04-15 Thread parag vibhute
Thanks guys. I am going through the documentation of those classes if have any query then will ask. Thanks again. Regards, Palav On Tue, Apr 15, 2008 at 3:50 PM, Chris Suter [EMAIL PROTECTED] wrote: On 15/04/2008, at 8:12 PM, Mike Abdullah wrote: NSURLDownload would be the one. Or

Re: Setting Web Proxy programmatically

2008-03-20 Thread parag vibhute
programmatically. Thanks, Palav On Wed, Mar 19, 2008 at 12:00 PM, parag vibhute [EMAIL PROTECTED] wrote: Following is a part of preferences.plist: keyProxies/key dict keyAppleProxyConfigurationSelected/key integer1/integer

Re: Setting Web Proxy programmatically

2008-03-20 Thread parag vibhute
20 mars 08 à 13:26, parag vibhute a écrit : I am glad to say that I am able to write the code which can set all four keys releated to PAC file URL. As suggested, I used System Configuration framework. But I think System Configuartion framework ( scutil command) only accesses the dynamic

Re: Setting Web Proxy programmatically

2008-03-19 Thread parag vibhute
: And the kSCPropNetProxiesProxyAutoConfigEnable key does not do that? Le 18 mars 08 à 16:50, parag vibhute a écrit : Thanks for URL. I went through code system configuation framework. There I found that you can set HTTP(HTTPS etc.) proxy and also PAC file URL (using

Re: Setting Web Proxy programmatically

2008-03-18 Thread parag vibhute
On Tue, Mar 18, 2008 at 2:22 PM, parag vibhute [EMAIL PROTECTED] wrote: Hi all, My requirement is to set Web Proxy Secure Web proxy which appears in Network pane of System Preferences. I want to achieve this programmatically. Is this possible? Which framework should I use? Thanks

Re: Setting Web Proxy programmatically

2008-03-18 Thread parag vibhute
by Basavaraj, all proxy settings are accessible using the SystemConfiguration Framework. Le 18 mars 08 à 13:37, parag vibhute a écrit : My requirement is to set proxy via selecting Using a PAC file in Configure proxy drop-down button of Network pane of system preferences. I have

Re: Setting Web Proxy programmatically

2008-03-18 Thread parag vibhute
There is a bunch of helper to retreive and change configuration. Le 18 mars 08 à 14:38, parag vibhute a écrit : Thank for reply. As you said, they are accessible but are they writable? Through search, I think they are only readable or for getting notification. But my requirement

How to solve application hang issue?

2008-03-13 Thread parag vibhute
Hi guys, I have implemented cocoa application in which I am using threading. While running the application hangs in between I am unable to find out where exactly in code it is hanging. Can you tell me how to debug hang issue? Thanks, Palav -- There are many things in your life that will