sdk

2d barcode reader Java ME sdk

Hi people, First ever question on stackoverflow! Yay! Does anyone know a good sdk for reading and decoding 2d barcodes (preferably Datamatrix or QR) from within a Java ME application? The application will be closed source, and while I'd prefer that the SDK be free (perhaps MIT or LGPL licenses), I would not mind forking over some cash ...

iphone programming, loading plist data, access it

Hi, i have a plist in the following form: Root (array)---> item 1 (dictionary) ----> Sch (string) ---> Name (string) ----> price (number) ----> item 2 (dictionary)----> .....same as item 1 how can i access each row (item1 to ...) and the its child (Sch...

How can I disable multiple buttons?

hi, I have 2 buttons on my view and i want to disable the first button when i click on an other button and disable the second when I click again on the button. I have tried with this code if (button1.enable = NO) { button2.enable = NO; } So I have in a NavigationBar a "+" button and 5 disable buttons in my view. When I push the...

How can I disable multiple buttons?

hi, So I have in a NavigationBar a "+" button and 5 disable buttons in my view. When I push the "+" button I want to enable the first button and when I push again that enable the second... I have tried with that code if (Button1.enabled == YES) { Button2.enabled = YES; } I really don't understand how I can do that... Thnaks f...

Can I show an UISegmentedControl object in vertical?

Is there anyone who can teach me how to show an UISegmentedControl object in vertical direction, instead of in horizontal direction? ...

What resources are available for SDK design and implementation?

Hi, I will soon be undertaking an SDK writing project at work and I was wondering if anyone could point me towards some good resources for design and implementation considerations, best practices etc. Or if anyone has any experience in the field and could offer some advice that would also be greatly appreciated. The project is based a...

Android touch events

I want to be able to touch (and hold) the screen, and have an event be triggered by this. This is what I have so far. class Player extends SurfaceView implements SurfaceHolder.Callback { public boolean onTouchEvent(MotionEvent event) { return true; } } Unfortunately this only recognizes when the touch is 'movin...

fbconnect facebook iphone sdk

Hi all I would like to make a button in order the user to be able to connect and join a group i have created in facebook...is this possible with fbconnect could you please give a tutorial or something? ...

Invalidating an NSTimer?

If I have an NSTimer that starts in viewdidload, where is the proper place to invalidate it when leaving that view? Is it also necessary to release it as well? ...

iPhone Not Deleting the Settings

I have just installed the latest update to the iPhone. I also have deleted my app from the iPhone and noticed that a previous install of my app has left the Settings bundle on my phone after I dis-installed the app. Now, I have a Settings bundle without the related app. This should not be possible as the older version sandbox shou...

Where to find CabWiz.exe

I am resetting up my development machine and I cannot seem to remember where I got CabWiz.exe (used for creating installation cab files for windows mobile). Is that on MSDN Downloads in some package? Or somewhere else? Does anyone know? I installed the Windows Mobile 5 SDK and I thought that was all I needed, but I guess there is som...

UISearch bar and didSelectRowAtIndexPath problem !

Hello , i have poem application , my poem titles show on table view .. i have 495 cells based on Plist file, each cell have specific title , the poets show with navigation controller on AnotherViewController ., and i implement UISearchBar [based on iPhone beginning Development book] before i implement UISearchbar and changed plist file ...

Android minSdkVersion

Hello, I've programmed my app with Eclipse and android 2.2. However I think that my app would work for previous version and so it would allow more users to use my app. The problem is that I'm not sure... for instance I'm using Gestures which I think is a more recent feature... but otherwise I'm just using some Button, ListView, and WebVi...

add something above of iPhone / iPad keyboard ?

i was wondering how can i add a view on ios Keyboard ? like this : ...

Add an attachment via the SDK to a work item without using a physical file

I'm looking at creating new work items for TFS 2010 via the client SDK. In the SDK you can do something like this: WorkItem item = ...; item.Attachments.Add(new Attachment("c:\\path\\on\\tfs\\server\\shot.png", "Screen shot")); item.Save(); But this requires the file being attached to be placed on either a network accessible path, or...

Nested UIViewController does not respond to device rotation.

Hello, I'm developing an app using a fork of LeavesViewController that changes to a two-page orientation when the device turns to landscape. When using the Leaves controller alone, everything works fine. When using the Leaves controller inside the view of my main UIViewController, it never gets any of the device rotation messages (how...

Adding items to a global list in TFS via the SDK

I wish to add or list items from a global list in TFS 2010 via the TFS SDK. I have discovered the following methods: XmlDocument WorkItemStore.ExportGlobalLists() void WorkItemStore.ImportGlobalLists(XmlElement listsElement); void WorkItemStore.ImportGlobalLists(string lists); Which appear to export/import all the global lists as a ...

Fetching the comment history for a work item in TFS

In most defect trackers there is a comment history associated with a ticket/incident/issue/work item. I wish to get this same information from TFS via the SDK for a work item - ideally: Who created the comment. The text of the comment. Who last updated/edited the comment (if that's event possible in TFS?) I have determined that a Wo...

save file on desk directly without viewing crystal report using java sdk

using java sdk i have created my application. i have download button in my application, if i click on that button it should ask the prompt to save file on my disk, how can i do? pls help ...

how to access randon items from an array in i phone sdk

i want to know how to aceess random items from array in iphone sdk? i have made an music player in which next song comes from array on button click but i want to get the songs randomly ...