Date Registered: September 28, 2010, 01:16:14 PM
You were inactive for nearly 3 years.
No, I was not inactive, I have been reading this forum since 2009.
Show us some of your C code. Then I will believe you. You're a brightest of the bunch C programmer? Ok, have you ever contributed anything to open source? What have you worked on?
Ok, Here is a little c# code from my own tabbed browser called Internet Cruiser that I wrote about 10 years ago and submitted to Microsoft.
using System;
using System.Collections;
using System.ComponentModel;
using System.Drawing;
using System.Data;
using System.Windows.Forms;
namespace ICruiser
{
///
/// Summary description for BrowserWindow.
/// public class BrowserWindow : System.Windows.Forms.UserControl
{
private AxSHDocVw.AxWebBrowser axWebBrowser1;
private String strStartPage;
///
/// Required designer variable.
/// private System.ComponentModel.Container components = null;
public BrowserWindow()
{
// This call is required by the Windows.Forms Form Designer.
InitializeComponent();
object o=null;
axWebBrowser1.Navigate("
http://www.google.com/search?as_q=&num=10&hl=en&ie=UTF-8&oe=UTF-8&btnG=Google+Search&as_epq=test&as_oq=&as_eq=&lr=&as_ft=i&as_filetype=&as_qdr=all&as_occt=any&as_dt=i&as_sitesearch=&safe=images",ref o,ref o,ref o, ref o);
}
public BrowserWindow(String URL)
{
strStartPage = URL;
// This call is required by the Windows.Forms Form Designer.
InitializeComponent();
object o=null;
axWebBrowser1.Navigate(URL,ref o,ref o,ref o, ref o);
}
///
/// Clean up any resources being used.
/// protected override void Dispose( bool disposing )
{
if( disposing )
{
if(components != null)
{
components.Dispose();
}
}
base.Dispose( disposing );
}
#region Component Designer generated code
///
/// Required method for Designer support - do not modify
/// the contents of this method with the code editor.
/// private void InitializeComponent()
{
System.Resources.ResourceManager resources = new System.Resources.ResourceManager(typeof(BrowserWindow));
this.axWebBrowser1 = new AxSHDocVw.AxWebBrowser();
((System.ComponentModel.ISupportInitialize)(this.axWebBrowser1)).BeginInit();
this.SuspendLayout();
//
// axWebBrowser1
//
this.axWebBrowser1.Enabled = true;
this.axWebBrowser1.Location = new System.Drawing.Point(0, 0);
this.axWebBrowser1.OcxState = ((System.Windows.Forms.AxHost.State)(resources.GetObject("axWebBrowser1.OcxState")));
this.axWebBrowser1.Size = new System.Drawing.Size(1344, 600);
this.axWebBrowser1.TabIndex = 0;
//
// BrowserWindow
//
this.Controls.Add(this.axWebBrowser1);
this.Name = "BrowserWindow";
this.Size = new System.Drawing.Size(1344, 592);
((System.ComponentModel.ISupportInitialize)(this.axWebBrowser1)).EndInit();
this.ResumeLayout(false);
}
#endregion
}
}