sdk

Screen cast/screen share/remote desktop controk SDK for .NET

Hi, I am working on a project needs a screen cast/screen share/remote desktop control feature. The software should be able to broadcast the screen of one PC to at least 16 other PCs in real-time and the administrator can monitor and control activities at any PC in real-time also. Is there any SDK (free or commercial) available? Thanks ...

Keeping XML files in iPhone apps safe from jailbreak?

As you may know, jailbreaking allows you to access the directories of apps that iPhone developers make. For example, there are many websites that show people with jailbreaks the file path of some of the XML files in fieldrunners app. After changing these you can change nearly anything and make each paid weapon free. I was thinking ab...

Take a random Number from one ViewController and use it in a second ViewController - Update

Hi, I have two ViewControllers: The RedButtonViewController and the TweetViewController. The RedButtonViewController generates random numbers in Textlabels and I want to use the number or the label with the TweetViewController. How can I make this? Thanks for your help! My TweetViewController will be opened with this code in the RedBut...

iPhone SDK initializing NSString warning messag

I think this is a quick question and answer - I'm reading a dictionary entry for a detail view which is pushed from a tableview row. but in the detail view, when I'm picking up the data to display (as an HTML page) I'm getting the message: incompatible Objective-C types initializing 'struct NSDictionary *'. expected 'struct NSString *' C...

Adding newer Flex SDK to Flex Builder 3 - how?

Hi, I have a Flex Builder 3.0.2. It was shipped with Flex SDK 2.0.1 and 3.2. I would like to add the new Flex SDK 3.5. I followed the documentation: http://livedocs.adobe.com/flex/3/html/help.html?content=build%5F6.html#162812: - extracted SDK 3.5 - added into my SDK list - set to default - restart Flex Builder - clean project But it's...

iPhone SDK - Leak when viewing PPT file

I use UIWebView to display many type of file on iPhone. Everything look good except with a PowerPoint file. After the PPT is displayed, there are many Leaks are shown. When I clicked on 1 of leaks, I got this: Responsible Library: Foundation and Responsible Caller: -[NSCFString appendFormat:] Does anyone met this problem befor...

Why there save and load file code works on iphone simulator but failed on device.

(void) loadDataFromDisk { NSMutableData *data = [[NSMutableData alloc] initWithContentsOfFile:[self pathToDataFile]]; NSKeyedUnarchiver *unarchiver = [[NSKeyedUnarchiver alloc] initForReadingWithData:data]; _cells = [[unarchiver decodeObjectForKey:@"Board"] retain]; [unarchiver release]; [data release]; } (void) ...

Android listview/navigation based app

How can I create a navigation based app using the android sdk? Not navigating as in using maps, but like how the settings app works. You click on item, and it goes to a new page of items to click. I can't find any good samples or documentation. Yes, I've looked through the Android developers website. ...

custom Back Button image on the Navigation Bar doesn't Work ! [iPhone SDK]

Hi guys i create a custom navigation back button , but when i add this code , my back animation doesn't work and go back with animation .why ? i think it depends on my @selector action ! - (void)viewDidLoad { UIButton *button = [UIButton buttonWithType:UIButtonTypeCustom]; [button setImage:[UIImage imageNamed:@"goback.png"]...

is it possible to show download dialog box in case of file download if the file is located on amazon server

i am using amazon s3 service. now i want to show download dialog box in my asp.net application when user come on download page. i am using amazon sdk. ...

How to get a string from a UITextField?

How would I go about getting a string from a UITextField in the iPhone SDK? I'm trying to insert it into another concatenated string. ...

Android SDK fails to install

When I try to install the android SDK it fails to install. My OS is Windows XP I just downloaded and installed Java JDK 1.6 Java -version from the command line returns: http://stackoverflow.com/questions/ask java version "1.6.0_17" Java(TM) SE Runtime Environment (build 1.6.0_17-b04) Java HotSpot(TM) Client VM (build 14.3-b01, mixed mod...

Adding a UIWindow in xcode iPhone SDK

Hi there. I am creating a project in which i have to change the main.m file, so that UIApplication doesnt appear straight away, so i deleted the following line from main.m int retVal = UIApplicationMain(argc, argv, nil, nil); and deleted these lines from AppDelegate - (void)applicationDidFinishLaunching:(UIApplication *)application ...

How to control a camera with Delphi

A Delphi programm should make produkt photos with a Nikon D5000AF SDX. The only commands I need are "make a photo", "get me the photo". Which library or API can help me? ...

Check if the entered text uses only English letters

I am working on an iPhone application and need to make sure the entered text is composed of only a to z and numbers. I don't want the user to use other languages letters like those with accents or dots above them. EDIT: I am new to this RegEx, so if you please give me a code or a link, i will be really thankful. ...

Can i use iphone's wifi to comunicate with my own wifi module?

Including data exchange. I can not find such api in apple doc site. If it is not open in 3.1.2 sdk ,would apple release it in sdk4.0? I've heared that google released wireless api on android earlier . Thanks! ...

What is correct xmlns url for AdMob in Android Layout XML

I am testing the AdMob for Android SDK. I can't set the admob:testing="true" because the admob attribute is unknown. <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" xmlns:admob="http://schemas.android.com/apk/res/org.ifies.android" android:layout_width="fill_parent" android:layout_height="fill_parent" ...

Nooby Android Developer

Hi all, so I just recently (yesterday) started developing on the Android platform. So far I have created a Hello World application as described in their tutorial, but it does not run. When I run it, it waits at the blinky Android screen, then finally moves to the screen where it says Android in a fancy font and its kind of glossy and sil...

Powershell and overriden comparision operators

How can one create an object that when its operators, such as: operator > (Object obj1, Object obj2) operator < (Object obj1, Object obj2) , are overridden PowerShell utilizes these operators? Such that: where-object { $CustomObject -gt 12 } would call: public static bool operator > (Object object1, Object object2) Is it pos...

iTunes SDK COM - Notification that iTunes has been started

I'm currently developing an application which uses the iTunes COM (Win32) to hook into the iTunes application. At the moment, I have managed to unhook the COM when iTunes closes through the use of the OnQuittingEvent which is great, iTunes doesn't display the application interface dialog so everything is good. My problem arises when I...