api

Managing C++ Garmin API in C#

I want to call Garmin API (http://developer.garmin.com/mobile/mobile-sdk/) in VB.Net Compact Framework project. The API is in C++, so i´m making a C# dll project as intermediate way between API dll and VB.Net. I have some problems while executing my code because it throw a NotSupportedException (bad arguments type, i think) in QueCreateP...

about sending SMS by writing program

Exccuse me, may I ask is there any API for sending SMS mesaages to mobile phone through programming? If there is any, may I ask if there is any recommended one which is morer reliable and have more reasonable prices? ...

Accessing Facebook wall posts

Is there a way, via FQL or the Facebook API, to access the wall posts to a fan page (not a profile)? ...

How can I customize a twitter client in objective c

Hi Folks, I am designing a twitter iPhone app for my school. I wanted to moderate the users who can access the school account. In simple terms i do not want to use the original twitter server but make it local to only few users. Simply lets say a twitter for class. This will be running on our server and only few people can access it. I ...

image colors extractor API

Hi, Do you know any API to extract main colors from a given image (URL) ? I'd like to use this to make a dynamic CSS color scheme. Thank you. ...

eCommerce Third Party API Data Best Practice

What would be best practice for the following situation. I have an ecommerce store that pulls down inventory levels from a distributor. Should the site, for everytime a user loads a product detail page use the third party API for the most up to date data? Or, should the site using third party APIs and then store that data for a certain a...

Mail API for CE 5.0

Hi, Does someone can give me a hint how I can send emails with my application on Windows CE 5.0 using C#. Which libraries/APIs I have to use and where can I find them? I have googled a lot but only found descriptions for CE 2.0 (using C++) or Windows Mobile. Thank you very much! ...

How do you know there may be an exception?

Do I have to take a look at the java api everytime I instantiate an object / call a method from a class in it? Also, do I always have to know which classes are in the java api and which are not? ...

C# - Possible to use Subinacl or something else (an api maybe?) from C# code?

I've created a program in C# which creates users and adds them to groups, everything is working fine. But I also want to create a "home folder", which is on another server, and the share will be like this: 81file01/users/username. And of course set the rights of the folder to the newly created AD-user. Now we're using a vb-script to do t...

Using undocumented native code APIs to install items into the GAC

I'm working on a project whose setup uses the APIs documented in Microsoft Knowledge Base article KB317540 to install and uninstall assemblies into the GAC. The KB article states: SUMMARY The native code application programming interfaces (APIs) that allow you to interact with the Global Assembly Cache (GAC) are not documen...

google and yahoo login like stackoverflow?

Dear all, I'm researching about Single Sign On (SSO), using google,yahoo and openID account to login in my site. Some professional can tell me which is method to implement it. API OR LIBRARY to work with it. Thanks Nguyen ...

looking for a keyboard API

looking for a library for accessing the keyboards functions, key states, etc. the language I'm planning on using is C++ ...

Twitter - Max Statuses Per Hour

The Twitter API states that there is a limit of 150 request/hour, but also states that there is a limit of 3200 requests/page. Am I to understand that the number of statuses/hour is limited to 150*3200? ...

getwindowtext not retrieving text

I tried the following code but it does not retrieve text from foreground window! procedure TForm1.Button1Click(Sender: TObject); var title : pansichar; s : string; begin GetWindowText(GetForegroundWindow(), title,GetWindowTextLength(GetForegroundWindow()) + 1); s := title; showmessage(s); end; ...

Facebook API: Set User Status with "@mentions" integration

StackOverflow'ers, I realize the new "@mentions" is a very new feature to facebook, but can any of you think of how to access this feature using the Facebook API? I would assume there would need to be a separate call to get a list of available users/applications/ect... I am just brainstorming here, I realize this may not be possib...

CakePHP REST API documentation

Hi! I've created a public restful application and I would like to generate API documentation for users. For REST i think I have to provide URLs and parameters. What is the best way to prepare it? Thanks! ...

ejabberd: Difference between "disco_local_identity" and "disco_sm_identity" ?

What is the difference between "disco_local_identity" and "disco_sm_identity" module API methods? ...

Tortoisesvn API for C#.NET

How to integrate tortoisesvn Diff API(tool) for C#.Net? I should be able to use DIFF Tool in Tortoisesvn in my C# application. ...

How to create new Change Requests programmatically using TFS SDK/API?

I am in the process of learning about using the TFS SDK to fully control what Team Foundation does programmatically like: Creating new Workitems(is this the same as creating change requests?) Creating new team projects Creating a new Source code branch,etc. I am developing a Windows app that can include all these tasks so it can be ...

Abstracting away an API

I've been writing a framework for myself in C# and my framework works on top of the Xna framework. In application code that uses this framework, I often have to include references to my framework and Xna's framework. Most of the time those Xna references are only to include some the struct classes like Vector2 and Rectangle. Because of t...