NSBezierPath

2008-12-20 Thread Amr Nashaat
Hi, does anyone knows how can I use the NSBezierPath function to create a circle? thanx. ___ 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-de

Re: How to set default value for NSTextField from program before window is displayed?

2008-03-21 Thread Amr Nashaat
hi, values in NSTextField are not set by the convetional way, the are set by using the SetStringValue command. so for example if you have a certain string in variable called temp and you want to display it in a text field the command will be as follows: [textField setStringValue:temp];