Click here to Skip to main content
Licence 
First Posted 12 Jan 2005
Views 26,237
Bookmarked 18 times

API Browser

By | 12 Jan 2005 | Article
A Windows API browser that shows you all the definitions and help on API methods.

Sample Image

Introduction

This is just a basic article that shows how to create a program that uses the Microsoft Web Browser control, it is also just a posting that gives you a helpful API browser.

Using the code

// // basic source // 

private System.Windows.Forms.ListBox Functions_listBox; 
public AxSHDocVw.AxWebBrowser WebBrowser1;

/// /// The main entry point for the application. /// 

[STAThread] 
static void Main() 
{
  Application.Run(new APIBrowser()); 
}
public static object nullObject = 0; 
public static string str = ""; 
public static object nullObjStr = str; 

private void Functions_listBox_SelectedIndexChanged(object sender, 
                                               System.EventArgs e) 
{
  WebBrowser1.Navigate("http://custom.programming-in.net/" + 
        "articles/art9-1.asp?f=" + 
        Functions_listBox.SelectedItem.ToString(), 
        ref nullObject, ref nullObjStr, 
        ref nullObjStr, ref nullObjStr);
}

private void Functions_listBox_DoubleClick(object 
                      sender, System.EventArgs e) 
{
  WebBrowser1.Navigate("http://www.google.com/search?hl=en&q=" + 
         Functions_listBox.SelectedItem.ToString() + 
         "&btnG=Google+Search", ref nullObject, 
         ref nullObjStr, ref nullObjStr, ref nullObjStr);
}

private void Form1_Resize(object sender, System.EventArgs e) 
{
  Functions_listBox.Width = 264;
  WebBrowser1.Width = this.Width - Functions_listBox.Width - 5; 
}

Points of Interest

I learned that the web browser can be useful in linking to help documents not on your computer.

License

This article has no explicit license attached to it but may contain usage terms in the article text or the download files themselves. If in doubt please contact the author via the discussion board below.

A list of licenses authors might use can be found here

About the Author

kbrryder



United States United States

Member



Sign Up to vote   Poor Excellent
Add a reason or comment to your vote: x
Votes of 3 or less require a comment

Comments and Discussions

 
You must Sign In to use this message board. (secure sign-in)
 
Search this forum  
 FAQ
    Noise  Layout  Per page   
  Refresh
QuestionThis is an article ? PinmemberThomas Weller4:33 8 May '09  

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.

Permalink | Advertise | Privacy | Mobile
Web04 | 2.5.120517.1 | Last Updated 13 Jan 2005
Article Copyright 2005 by kbrryder
Everything else Copyright © CodeProject, 1999-2012
Terms of Use
Layout: fixed | fluid