Does not allow to Uninstall the application when it is running.

2011-04-19 Thread kirankumar
Hi All, I have one application for this i developed uninstall application when i run uninstall utility it completely uninstalling successfull upto here it is fine. But when i open the application also the uninstall utility is running completely successfull its a wrong process . if application

No Driver Dependencies

2010-10-26 Thread kirankumar
Hi All, I am using 64-bit MacBookPro.My question is i open the terminal and type kextstat i saw the below kpi.xxx,but there is no com.apple.kernel.bsd, com.apple.kernel.iokit, com.apple.kernel.libkern, com.apple.kernel.mach. For that i need to install any other file. 2 23 0x00x0

remove icon from Dock

2010-10-12 Thread kirankumar
Hi All, Need help , is there any command line for removing icon from Dock. I don't want to do drag option and aslo do not want right click on Remove from Dock. Regards, kiran.k The information contained in this email and any attachments is confidential and may be subject to copyright or oth

Is it possible to load 64-bit EFI in Mac Pro

2010-10-11 Thread kirankumar
Hi All, We have a Mac Pro Dual Core Intel Xeon 2,66Ghz machine (Model Number: MacPro1,1) This model cannot boot the 64-bit kernel and the hardware design only allowed use of a 32-bit kernel. some Macs with 64-bit processors won’t be able to load the 64-bit kernel because they have a 32-bit EFI.

IrDA protocols

2010-09-02 Thread kirankumar
Hi All Mac os x does not support IrDA protocols (IrLAP, IrLMP, IrNET).why? These are higher layer protocols of the IrDA stack that use xxx driver and hardware operating at the Data Link Layer to communicate with other devices(like mobiles, etc.,). It is not possible for us to provide these hig

Dragging the window its goes to top of the screen.

2010-09-01 Thread kirankumar
Hi everyone, I develope one application its working fine,but when i change the system resolution to 800x600 here problem appears. The problem is when i drag my window to anywhere on the screen it goes to top of the screen. I didn't wrote any code for resolution in my app.Can anyone tell th

Re: Erratic Cocoa Behavior

2010-08-16 Thread kirankumar
try to reloadDate whenever it possible On Aug 17, 2010, at 8:44 AM, k...@highrolls.net wrote: Thanks. I am not doing any Quartz debug, so I rule that out. I have nothing set in info.plist for NSShowAllDrawing. -koko On Aug 16, 2010, at 8:16 PM, John C. Randolph wrote: That looks like wha

Re: Run application before Login starts?

2010-07-07 Thread kirankumar
nts/ $ sudo cp PreLoginAgentCarbon/com.yourscompany.myapplication.plist\ /Library/LaunchAgents/ 5. Log out. At the login screen you will see a window displaying the name of the sample. When you log in, the agent will quit and the window will go away. On Jul 5, 2010, at 11:22 PM, Greg Guerin wrot

Re: Run application before Login starts?

2010-07-05 Thread kirankumar
e and Password for that i need to use my keyboard and mouse(these are present in LAN).ie, these keyboard and mouse are not connected to my CPU. Thanks, kiran.k On Jul 6, 2010, at 4:37 AM, John Joyce wrote: On Jul 5, 2010, at 7:16 AM, kirankumar wrote: Hi All, How to run a application before

Run application before Login starts?

2010-07-05 Thread kirankumar
Hi All, How to run a application before login starts (ie, before when we enter username and password). For example , Mouse And Keyboard starts before login ,like that i need to start my application to work my devices before login. Is ther any script or placing a plist in /Library/Preferences ,

how to terminate first AlertPanel when second AlertPanel appears?

2010-05-14 Thread kirankumar
Hi All, I am developing one application in that i want to add device request feature ,for that i am sending a message like "DeviceRequest" . if this message is send to other pc in that pc it shows one Alert message (NSRunAlertPanel(@"Request",@"Please Disconnect the device",@"ok",@"",nil); But

changing ipaddress

2010-01-19 Thread kirankumar
hi everyone, I am developing an application to change IPADDRESS for my network card (device) i am using command like : 1)ifconfig en5 192.168.2.99 or 2)sudo ifconfig en5 alias 192.168.2.99 netmask 255.255.255.255 After reboot the system ipaddress is not set to my card ie,it s not tak

launching my application at startup(whenever pc starts)

2009-12-29 Thread kirankumar
hi everyone, i develop an application that i want to launch at startup ie, every time when i start my system my application has to launch ,can any one help me plz. Is there any script to keep at PackageMarker. Regards, kiran. The information contained in this email and any attachments is conf

Re: minimize the window & launch startup

2009-12-18 Thread kirankumar
and then maybe have some other action make it be visible? Daniel J. Brieck Jr. On Dec 17, 2009, at 8:43 AM, kirankumar wrote: hi everyone, i am developing an application in that application when i launch the app, i want to minimize the mainwindow , i use this code in aWakeFromNib, but its

minimize the window

2009-12-17 Thread kirankumar
hi everyone, i am developing an application in that application when i launch the app, i want to minimize the mainwindow , i use this code in aWakeFromNib, but its not working , can anyone help me plz. [mainwindow setIsMiniaturized:TRUE]; Regarde, kiran

Re: Drag-Move the Transparent windowed app over the screen

2009-11-13 Thread kirankumar
Hi, goto attributes for your window ,enable the texture checkbox so that you can drag your window. Regards, kiran. On Nov 12, 2009, at 2:09 PM, Symadept wrote: Hi, My app's window is a BorderLess Window because of which I will not have the Titlebar (Ref: RoundTransparentWindow of Apple e

Re: Close/Minimize the app

2009-11-13 Thread kirankumar
hi, this will help you keep this 3lines of code in awakeFromNib, and mpwindow is you are window name. id closeButton = [mpWindow standardWindowButton:NSWindowCloseButton ]; [closeButton setAction:@selector(closeapp:)]; [closeButton setTarget:self]; - (IBAction)closeapp:(id)sender { exit(0)