Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations gkittelson on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Visual C++ for API

Status
Not open for further replies.

kksching

Programmer
Aug 7, 2004
1
CA
Is there a easy way to write an API using Visual C++? Or I should use VB, because the GUI can be done in graphically? sorry, I'm very confused....
 
Uhm.. I don't quite get what you mean to say.

APIs are interfaces to an operating system (usually). Think of them as a layer between your program and the operating system. Any request that your program needs to make to the operating system is done through the APIs. I don't think that you can write your own APIs, unless you are designing APIs for your own operating system, applications, or library.

About GUI, you can design the GUI visually in Visual C++ (That's why it's called Visual C++). It should be pretty much like VB, except that you have to code in the specific behaviour that you want.
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top