Click here to Skip to main content
Page 1 of 12
Page Size: 10 · 25 · 50


Tag filtered by:  API [x]
Tip/Trick 7 May 2013   license: CPOL
This tip/trick discusses about hosting a Windows Form user control in an MFC dialog box and View windows.
Question 7 May 2013   license: CPOL
Hi Friends what i need is yelp login api in my projectsimilar like Facebook,LinkedIn,etc.....Looking for your help friends hurry . . .
Answer 7 May 2013   license: CPOL
I would refer you to the Yelp website http://www.yelp.com/developers/documentation/v2/authentication[^]or to their developers forum https://groups.google.com/forum/?fromgroups#!forum/yelp-developer-support[^]
Question 6 May 2013   license: CPOL
Hii want to know how can i use the createpopupmenu() with api, i write class like this:using System;using System.Collections.Generic;using System.Text;using System.Runtime.InteropServices;namespace test{ [DllImport("user32.dll")] public static extern int...
Answer 6 May 2013   license: CPOL
What do you expect? Just calling them won't do much. Have a look at some docs and examples:http://msdn.microsoft.com/nl-nl/library/windows/desktop/ms647626%28v=vs.85%29.aspx[^]http://www.winprog.org/tutorial/menus.html[^]Good luck!
Question 6 May 2013   license: CPOL
Hi...i want to know how can i create menu with createpopupmenu() this method...i write this but it dont work...any idea...?[DllImport("user32.dll")] static extern long DestroyMenu(long hMenu); [DllImport("user32.dll")] static extern long...
Question 2 May 2013   license: CPOL
I tried to start a process in service session ( session 0 : window 2008 server (session 0 isolation)) with user account. then I use LogonUser and createProcessAsUser api.....but, user account('frank') //session id :0 //process name: notepad.exe when interactive service and desktop is...
Article 1 May 2013   license: CPOL
Using JavaScript for oAuth with three major identity providers: Facebook, Google, and Twitter.
Article 30 Apr 2013   license: CPOL
Learn how to build a self-made home video surveillance system
Answer 27 Apr 2013   license: CPOL
My experience is with C++, but I would guess this is the same for C (except that of course you won't have classes; only functions).Create a dll project. Define a variable on the compiler line (usually using the /d switch).E.g. for your example, you might choose something like...
Answer 27 Apr 2013   license: CPOL
You didn't say what platform or IDE you are using, which is important for this type of question.The quick and easy answer is to create 2 dummy projects: an executable (console) app and a dll app of the type you want to convert to. Look at the details of the .dsp/.dsw/.sln/.vcproj/.vcxproj...
Question 27 Apr 2013   license: CPOL
i have a C-console application program ,with functions and headers which record and plays sound with windows APIs using MCIs, now i need a record and play APIs .DLL,but i dont know how can i use my console application to make this .DLL,please help me,this is urgent for me.tanx
Catalog 24 Apr 2013   license: Commercial
Monetize your apps with the Payment API. The Payment API can give your customers the convenience and security of having their in-app purchases charged directly to their AT&T bill.
Catalog 24 Apr 2013   license: Commercial
Drive further engagement with your customers by allowing them to share information with friends and family directly from within your app, using their own mobile number.
Catalog 24 Apr 2013   license: Commercial
Say Hello to Revenue with In-App Mobile Ads And say goodbye to hassle. Easily monetize your apps with the new in-app mobile advertising API from AT&T and take home an 80% rev share.
Catalog 24 Apr 2013   license: Commercial
The AT&T Speech API simplifies the process of adding Speech-to-Text and Text-to-Speech capabilies to your app with our contexts and custom hints.
Catalog 24 Apr 2013   license: Commercial
The AT&T Speech API simplifies the process of adding Speech-to-Text and Text-to-Speech capabilies to your app with our contexts and custom hints.
Article 22 Apr 2013   license: CPOL
How to invoke Java methods from a .NET application.
Answer 19 Apr 2013   license: CPOL
Yes, you are on the right path. WebTrends is also a good product. Personally, I would use an existing product to do it.
Question 18 Apr 2013   license: CPOL
hii wrote a code for capture my mouse in panel use user32.dll and SetCapture() method:[DllImport("user32.dll")] static extern IntPtr SetCapture(long hWnd); [DllImport("user32.dll")] static extern long ReleaseCapture();and in my button write...
Answer 18 Apr 2013   license: CPOL
UINT SetupDeleteError( __in HWND hwndParent, __in PCTSTR DialogTitle, __in PCTSTR File, __out UINT Win32ErrorCode, __in DWORD Style);ParametershwndParent [in] Handle to the parent window for this dialog box.DialogTitle [in] Optional pointer to a...
Question 18 Apr 2013   license: CPOL
hii know , i explain again and its been close....i only need header of setupdeleteerror() method from user32.dll (which parameter it get).[DllImport("user32.dll")] public static extern SetupDeleteError(?,?,?,?) its still vague..?
Question 17 Apr 2013   license: CPOL
Hi, I'm am trying to design a system that tracks the most clicked links on a website.I am new to this so please forgive my ignorance. I see two possibilities:1. When link is clicked, use Javascript to pass info on element to a PHP script, which inserts info into a MySql database.2....
Answer 17 Apr 2013   license: CPOL
hi, It is best to use Web Service, It doesn't matter whether u use asp .net or MVC and it is secured compared to exchanging XML files...
Answer 17 Apr 2013   license: CPOL
HiHave you tried writing the data to be exchanged to xml file? What ypu could do is. For example if u want to exchange user credentials to another application you can try writing the data to an xml file as shown below:...
Tip/Trick 16 Apr 2013   license: CPOL
A complete solution that seamlessly integrates Tumblr into your C# .net website
Question 6 Apr 2013   license: CPOL
hello everybodyi am writing a Win32 API program which works with files. in run time when i want to close the program the close button in right top side of window is disabled and when i try to close the program the 'End Program' and 'this program is not responding' appears and i should close...
Question 4 Apr 2013   license: CPOL
I Have URL Like:http://data.mtgox.com/api/1/BTCUSD/ticker[^]while i used the like below: public void getValues() { HttpWebRequest request = WebRequest.Create("http://data.mtgox.com/api/1/BTCUSD/ticker") as HttpWebRequest; using (HttpWebResponse response =...
Article 3 Apr 2013   license: CPOL
How to write iPhone application to authenticate to SharePoint and read the contents of a list provided by the SharePoint REST API.
Answer 3 Apr 2013   license: CPOL
You have a JSON string there. You can follow this article to read it: http://aspdotnet.hotinit.com/2012/01/get-json-data-from-url.html[^] and than you have to choose how to process the string. I suggest you consult following article for a comparison of JSON libraries: fastJSON[^] - and of...
Question 31 Mar 2013   license: CPOL
Hi all,I want to exchange information like list of products and user information (like user credentials, purchase/shopping order status, etc.)among two applications developed using ASP.NET 2.0 & ASP.NET MVC 4.0. I am planning to develop and WEB API for the same. The other possibilities would...
Answer 28 Mar 2013   license: CPOL
I'm a bit loathe to answer this as I don't think there is an answer, as such the following is an opinion and hopefully you'll get multiple opinions. Given what you describe, I'd beef up the EF model and make that the business model, negating the need for the third set of classes, this keeps...
Answer 27 Mar 2013   license: CPOL
Please see:http://msdn.microsoft.com/en-us/library/windows/desktop/ms724950%28v=vs.85%29.aspx[^],http://msdn.microsoft.com/en-us/library/windows/desktop/ms724284%28v=vs.85%29.aspx[^].As you can see, you have two logically equivalent time data structures, with conversion between...
Question 27 Mar 2013   license: CPOL
Hi,I want to write a program which will run every day, but show some information to user after 5 days. I am planning to do this by saving in the registry as a date. But can any one tell me the API which will help me getting the date after 5 day from current day???I mean I want a api...
Question 27 Mar 2013   license: CPOL
I am currently in the process of designing a REST API but got into a debate at work about the makeup of the objects. We currently have an Entity Framework model with some controller wrappers around them used as the DAL. We also obviously have the REST service part which will be based on ASP.NET...
Question 25 Mar 2013   license: CPOL
Hi All How can I throw the ping at all the computers in a network and also get infomation as:-Computer name -IP address -MAC address I want use windows api at this project ? Help me please regards
Answer 25 Mar 2013   license: CPOL
Get IP adresses in LAN[^]Yes - Ping is needed since there is no API for this. Sadly.Get the Mac-Adress by IP of remote machine[^]Get Host name by IP address[^]Hope it helps you & cheers,Marco Bertschi
Answer 21 Mar 2013   license: CPOL
As stated in solution #1, you can get this if the file is open with write or otherwise unshared access in another process. When you are developing software, it is common to write a version of your program which does not close files or terminate properly ... so an older errant version of your...
Question 20 Mar 2013   license: CPOL
I'm trying to achieve something like this http://petstore.swagger.wordnik.com/#!/store/placeOrder_post_2 I want to set a complex type as DataType of ServiceStack.ServiceHost.ApiMember attribute as I want to have JSON schema to this field. In the swagger-ui documentation is written:The...
Answer 20 Mar 2013   license: CPOL
In the preview-handler - I can only write in a LocalLow-directory likeC:\Users\\AppData\LocalLow\thanks
Question 20 Mar 2013   license: CPOL
I’m trying to write a twitter program to get my tinme line. I’m using Abraham Williams authentication codeerrors that appearNotice: Undefined property: stdClass::$screen_name in G:\xampp\htdocs\fake.php on line 12Connected as @Notice: Trying to get property of non-object in...
Question 18 Mar 2013   license: CPOL
Hi, I just want to compare two pdf documents using vb.net . I tried one method to compare the pdf documents using the advanced option of acrobat "Compare Documents". I called those menu items using API . But i cant proceed after one step. so please give me some ideas to compare pdf documents...
Answer 17 Mar 2013   license: CPOL
but i am unable to understand how to use,so please help me
Answer 17 Mar 2013   license: CPOL
With reference to the API, everything to know is mentioned here: https://developers.google.com/maps/documentation/tracks/[^]
Question 17 Mar 2013   license: CPOL
I am trying to make an application based on GPS.Now i have found that Google maps tracks API can help me to track my vehicles and all,but i am unable to understand coding part of it.So if possible please give me examples of Google Maps tracks API
Answer 14 Mar 2013   license: CPOL
Do you mean a default image for the marker, http://econym.org.uk/gmap/custom.htm[^]or the default place the marker should be?There's no such thing -- you have to manually add each one.

Page 1 of 12
1 2 3 4 5 6 7 8 9 10


Advertise | Privacy | Mobile
Web04 | 2.6.130513.1 | Last Updated 14 May 2013
Copyright © CodeProject, 1999-2013
All Rights Reserved. Terms of Use
Layout: fixed | fluid