Post: [C++] Source Code Basic Web browser
03-01-2011, 12:09 AM #1
(adsbygoogle = window.adsbygoogle || []).push({}); Just made a simple web-browser using Visual Studio 2010.

Heres the source code of the form

    #include<iostream>
#include<string.h>
#pragma once

namespace Uberwebs {

using namespace System;
using namespace System::ComponentModel;
using namespace System::Collections;
using namespace System::Windows::Forms;
using namespace System:Happyata;
using namespace System:Happyrawing;

/// <summary>
/// Summary for Form1
/// </summary>
public ref class Form1 : public System::Windows::Forms::Form
{
public:
static System::Uri^ back;
static System::Uri^ forward;

Form1(void)
{
InitializeComponent();
//
//TODO: Add the constructor code here
//
}

protected:
/// <summary>
/// Clean up any resources being used.
/// </summary>
~Form1()
{
if (components)
{
delete components;
}
}
private: System::Windows::Forms::WebBrowser^ webBrowser1;
private: System::Windows::Forms::TextBox^ textBox1;
private: System::Windows::Forms::Button^ button1;
private: System::Windows::Forms::Button^ button2;
private: System::Windows::Forms::Button^ button3;
protected:

private:
/// <summary>
/// Required designer variable.
/// </summary>
System::ComponentModel::Container ^components;

#pragma region Windows Form Designer generated code
/// <summary>
/// Required method for Designer support - do not modify
/// the contents of this method with the code editor.
/// </summary>
void InitializeComponent(void)
{
System::ComponentModel::ComponentResourceManager^ resources = (gcnew System::ComponentModel::ComponentResourceManager(Form1::typeid));
this->webBrowser1 = (gcnew System::Windows::Forms::WebBrowser());
this->textBox1 = (gcnew System::Windows::Forms::TextBox());
this->button1 = (gcnew System::Windows::Forms::Button());
this->button2 = (gcnew System::Windows::Forms::Button());
this->button3 = (gcnew System::Windows::Forms::Button());
this->SuspendLayout();
//
// webBrowser1
//
this->webBrowser1->Location = System:Happyrawing::Point(12, 34);
this->webBrowser1->MinimumSize = System:Happyrawing::Size(20, 20);
this->webBrowser1->Name = L"webBrowser1";
this->webBrowser1->Size = System:Happyrawing::Size(951, 615);
this->webBrowser1->TabIndex = 0;
this->webBrowser1->Url = (gcnew System::Uri(L"https://www.google.co.uk/", System::UriKind::Absolute));
this->webBrowser1->Awesome faceocumentCompleted += gcnew System::Windows::Forms::WebBrowserDocumentCompletedEventHandler(this, &Form1::webBrowser1_DocumentCompleted);
//
// textBox1
//
this->textBox1->Location = System:Happyrawing::Point(184, 7);
this->textBox1->Name = L"textBox1";
this->textBox1->Size = System:Happyrawing::Size(697, 20);
this->textBox1->TabIndex = 1;
//
// button1
//
this->button1->Location = System:Happyrawing::Point(888, 7);
this->button1->Name = L"button1";
this->button1->Size = System:Happyrawing::Size(75, 22);
this->button1->TabIndex = 2;
this->button1->Text = L"Go";
this->button1->UseVisualStyleBackColor = true;
this->button1->Click += gcnew System::EventHandler(this, &Form1::button1_Click);
//
// button2
//
this->button2->Location = System:Happyrawing::Point(12, 6);
this->button2->Name = L"button2";
this->button2->Size = System:Happyrawing::Size(75, 22);
this->button2->TabIndex = 3;
this->button2->Text = L"Back";
this->button2->UseVisualStyleBackColor = true;
this->button2->Click += gcnew System::EventHandler(this, &Form1::button2_Click);
//
// button3
//
this->button3->Location = System:Happyrawing::Point(93, 5);
this->button3->Name = L"button3";
this->button3->Size = System:Happyrawing::Size(75, 22);
this->button3->TabIndex = 4;
this->button3->Text = L"Forward";
this->button3->UseVisualStyleBackColor = true;
this->button3->Click += gcnew System::EventHandler(this, &Form1::button3_Click);
//
// Form1
//
this->AutoScaleDimensions = System:Happyrawing::SizeF(6, 13);
this->AutoScaleMode = System::Windows::Forms::AutoScaleMode::Font;
this->ClientSize = System:Happyrawing::Size(975, 661);
this->Controls->Add(this->button3);
this->Controls->Add(this->button2);
this->Controls->Add(this->button1);
this->Controls->Add(this->textBox1);
this->Controls->Add(this->webBrowser1);
this->FormBorderStyle = System::Windows::Forms::FormBorderStyle::FixedSingle;
this->Icon = (cli::safe_cast<System:Happyrawing::Icon^ >(resources->GetObject(L"$this.Icon")));
this->MaximizeBox = false;
this->Name = L"Form1";
this->Text = L"Uber Browser";
this->ResumeLayout(false);
this->PerformLayout();

}
#pragma endregion
private: System::Void webBrowser1_DocumentCompleted(System::Object^ sender, System::Windows::Forms::WebBrowserDocumentCompletedEventArgs^ e) {
}
private: System::Void button1_Click(System::Object^ sender, System::EventArgs^ e) {
back = this->webBrowser1->Url;
this->webBrowser1->Url = (gcnew System::Uri(this->textBox1->Text, System::UriKind::Absolute));
}
private: System::Void button2_Click(System::Object^ sender, System::EventArgs^ e) {
forward = this->webBrowser1->Url;
this->webBrowser1->Url = back;
}
private: System::Void button3_Click(System::Object^ sender, System::EventArgs^ e) {
back = this->webBrowser1->Url;
this->webBrowser1->Url = forward;
}
};
}



You must login or register to view this content.

OutieSome Real C++ :'Winky Winky

The following user thanked TheUberFail for this useful post:

Skylines
03-01-2011, 12:17 AM #2
Skylines
The Forgotten
OMG!!! I have no idea what this is or what it does! I'm pretty sure it's useful, BUT IDGAF!!!! THANKS FOR HELPING MEMBERS HERE WITH THIS! YOUR SO FREAKING AWESOME!

The following 2 users say thank you to Skylines for this useful post:

St0rM, TheUberFail
03-01-2011, 12:39 AM #3
kiwimoosical
Bounty hunter
This is managed C++. Your better off using C#. Managed C++ is an overcomplicated C# with C++ syntax. Just saying.
03-01-2011, 08:50 AM #4
Originally posted by kiwimoosical View Post
This is managed C++. Your better off using C#. Managed C++ is an overcomplicated C# with C++ syntax. Just saying.


Yea, i was just trying out MS Visual Studio, its pretty neat though, made that in like 5 seconds xD. :hitman:
03-01-2011, 08:08 PM #5
kiwimoosical
Bounty hunter
Originally posted by TheUberFail View Post
Yea, i was just trying out MS Visual Studio, its pretty neat though, made that in like 5 seconds xD. :hitman:


Its all good :P
I would stick to unmanaged C++ or C, just saying Smile
Managed C++ doesn't have nearly as much memory management which is what C++ is primarily aimed at. But anyways, nice job I guess... lulz Happy
03-02-2011, 11:48 PM #6
St0rM
Treasure hunter
We all have to start some where.

The following user thanked St0rM for this useful post:

Skylines
03-06-2011, 06:03 PM #7
Girby2K11
☮ ☯ ☢ ✔ ➝
i used to make web browser's on Visual basic Express, BEFORE if knew how to program, by just copy and pasting code i didnt know hwat it does xD it could of blown my computer up lol.


but know im learning C++

Copyright © 2024, NextGenUpdate.
All Rights Reserved.

Gray NextGenUpdate Logo