|
-
Aug 31st, 2012, 08:55 PM
#1
Thread Starter
New Member
I need some Basic VB Help.
Alright, so I'm making a program for my self to use. Its really all just a Skyrim AIO ID and Console Command program, which displays the Names and ID's.. I am in need of some help though, http://i.imgur.com/aiVjU.jpg The first image shows what I mean, now when I click on it, nothing happens, I really don't know what to search on Google because I can't really define it.. Here is the code when I double click on it.. I don't know why its so big, the people on Youtube have only like 2 line codes.. Anyways, I'd like to able to click on that, and make a chart, like so... http://i.imgur.com/hndVT.jpg How will I be able to accomplish this? Thank you very much for all the help.
#pragma once
namespace SkyrimAIOIDs {
using namespace System;
using namespace System::ComponentModel;
using namespace System::Collections;
using namespace System::Windows::Forms;
using namespace System: ata;
using namespace System: rawing;
/// <summary>
/// Summary for Form1
/// </summary>
public ref class Form1 : public System::Windows::Forms::Form
{
public:
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::Button^ button1;
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)
{
this->button1 = (gcnew System::Windows::Forms::Button());
this->SuspendLayout();
//
// button1
//
this->button1->Location = System: rawing::Point(12, 36);
this->button1->Name = L"button1";
this->button1->Size = System: rawing::Size(140, 54);
this->button1->TabIndex = 0;
this->button1->Text = L"Overalls";
this->button1->UseVisualStyleBackColor = true;
this->button1->Click += gcnew System::EventHandler(this, &Form1::button1_Click);
//
// Form1
//
this->AutoScaleDimensions = System: rawing::SizeF(6, 13);
this->AutoScaleMode = System::Windows::Forms::AutoScaleMode::Font;
this->ClientSize = System: rawing::Size(703, 309);
this->Controls->Add(this->button1);
this->Name = L"Form1";
this->Text = L"Skyrim AIO ID\'s";
this->Load += gcnew System::EventHandler(this, &Form1::Form1_Load);
this->ResumeLayout(false);
}
#pragma endregion
private: System::Void Form1_Load(System::Object^ sender, System::EventArgs^ e) {
}
private: System::Void button1_Click(System::Object^ sender, System::EventArgs^ e) {
}
};
}
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|