sdk

iPhone SDK 3.0: where is the Bluetooth?!

i'm participating in the iPhone Developer Program and i have access to the iPhone 3.0 firmware and SDK. one of the new features of the iPhone 3.0 -- is ability to use Bluetooth, but i can't find any documentation about it. can someone point me please -- where is it? ...

Windows SDK "Samples" dir is missing

I want to look at sample code for the Wlan API (MSDN link). But C:\Program Files\Microsoft SDKs\Windows\<version number>\Samples\ doesn't exist for me. The only directories there are: bin Bootstrapper FXCop Include Lib I got my SDK (v7.0A) by installing the Visual Studio 2010 beta. OS is Windows Vista. ...

getaddrinfo returns always 11001 (host not found)

Although the searched FQDN appears in etc\hosts file. Any idea? Thanks a lot! ...

iPhone SDK: How come the following code only animates first frame?

Hello, I have been trying to animate using an NSTimer and I've set up my code like this: - (IBAction)startClick:(id)sender{ animationTimer = [NSTimer scheduledTimerWithTimeInterval:(.1/25.0) target:self selector:@selector(tick) userInfo:nil repeats:YES]; } - (void)tick{ [self animatePig]; } - (void)animatePig{ UIImage *pig...

Removing App ID from Developer Connection

How do I remove an App ID from the developer program portal area? I mistakenly added a couple of app id's under the wrong login and would like to remove them, but I am not seeing a way to do so. Any help would be appreciated! ...

MPMoviePlayerController on iPhone 3.0 SDK

Did Apple change anything about the MPMoviePlayerController class on the iPhone 3.0 SDK? My app no longer pops up a video when I tap the correct button, no error popup or anything. ...

NSMutableArray writeToUrl

Is it possible to use the: [NSMutableArray writeToURL:(NSString *)path atomically:(BOOL)AuxSomething]; In order to send a file (NSMutableArray) XML file to a url, and update the url to contain that file? for example: I have an array and I want to upload it to a specific URL and the next time the app launches I want to download tha...

SDK lives in C:\windows\assembly on a remote machine how do I add this into VS?

Hi all, I am using sharepoint based plugin that has an SDK, the SDK is installed as part of the plugin on the Sharepoint server, the SDK documentation mentions the assembly sharepoint.eplugin.dll, I couldn't find this file anywhere but I've been told everything I need is in the c:\windows\assembly folder, I've not come across this befor...

How do I get the groups belonging to a person ABAddressBook

hi, Is there a way to get all groups from the AddressBook belonging to a person without looping through all groups? thanks ...

PVR compression in animation - iphone sdk

im animating an 89 frame png sequence, that has been cut down to half by putting two frames per 512 x 512 frame. but im having major image qaulity issues (lossy) does anyone know of a good way to animate an 89 frame animation, without losing quality or chugging the processor? all the best. ...

Help with Expression Encoder SDK

I am currently experimenting with the Expression Encoder SDK, but I find it very confusing to use when it comes to live streaming. I am trying to capture a video stream from a webcam, encode with my program and then publish it as a live stream from my computer while also injecting script commands. I've been looking through the SDK but I ...

iPhone SDK: When running Object Alloc, GeneralBlock-0 show large number of net allocations?

I'm was running an iPhone application I'm working on through the Object Allocations performance tool, and I've noticed that "GeneralBlock-0 has a large (constantly growing) number of net allocations. Even so, the net and overall bytes for this group is consistently zero. Is this normal or does it indicate some a leak or memory manageme...

Problem Compiling in VS 2005 after installing microsoft platform SDK for Windows Server 2003 SP1

Hi As the title suggests I'm having a problem compiling MFC based applications, this problem started immediately after installing the windows server 2003 platform SDK and now even when I try to compile a new MFC project I get the following errors: c:\program files\microsoft platform sdk\include\zmouse.h(141) : error C2146: synta...

Is it possible to develop DirectX 9 apps using the latest DirectX SDK ?

I know that most people have DirectX9-capable cards but is it really necessary to install the DirectX9 SDK in order to develop DX9 apps or is it possible to do it using the latest DX SDK? ...

Read label for non multivalue properties in ABAddressBook (iPhone)

Hi, is there a way to read the label of non multivalue properties? For multivalue properties this is very convenient as I don't have to care about localization... but what about birthday label ? ...

What are the changes for programmatically accessing Office 2010 documents (a.k.a Office 14)?

What are the changes for programmatically accessing Office 2010 documents (a.k.a Office 14)? ...

Is there a way to create a non-rectangular UIButton?

I have buttons laid out diagonally with their image frames as shown in the picture below. How can I alter the corner points so the buttons don't significantly overlap? I know I could just create a rectangular UIButton and rotate it, but I may eventually need custom-shaped buttons anyway. Also, my button images are essentially text wit...

Are Flex charts available in the free Flex SDK?

Hmmmm... It appears that charts are only available through the Flex SDK that comes built-in with Flex Builder. This is a problem, since I want to use Flex 3.3, and Flex Builder came with 3.2. Eclipse is also ticking me off, and I prefer to use a different IDE (FlashDevelop). Any way around this? And is there anything else that isn't in...

Are there any e-Books (or books) covering the iPhone SDK 3.0?

The iPhone SDK 3.0 has been in beta for a few months, so I would think that by now there would be some good reference/tutorial material floating around in the form of e-books (it may be a little too early for print books). So far, I only came across iPhone SDK Development from The Pragmatic Bookshelf. It covers the SDK up to version 3....

Updating time in iphone sdk

Hi, I'm using the code provided below to display time and date. can anyone help me with atuomatically changing the time by seconds and the date by the day? NSDateFormatter *dateFormat = [[NSDateFormatter alloc] init]; [dateFormat setDateFormat:@"yyyy-MM-dd"]; NSDateFormatter *timeFormat = [[NSDateFormatter alloc] init]; [timeFormat set...