|
-
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) {
}
};
}
-
Sep 1st, 2012, 10:35 PM
#2
Re: I need some Basic VB Help.
In the future, post this in the C# section of the forums. That is C# code. As for your problem, I believe its specific. I don;t know anything about SkyRim so I can't offer a solution. It does however sound like a modding issue. If this SkyRim has a forum about modding it(games usually do), you should ask there.
-
Sep 1st, 2012, 10:58 PM
#3
Re: I need some Basic VB Help.
That's actually C++/CLI, not C#. This a VB.NET forum so this question obviously doesn't belong here. I've asked the mods to move this thread to the appropriate forum.
-
Sep 1st, 2012, 11:26 PM
#4
Re: I need some Basic VB Help.
A good exercise for the Heart is to bend down and help another up...
Please Mark your Thread " Resolved", if the query is solved
MyGear:
★ CPU ★ Ryzen 5 5800X
★ GPU ★ NVIDIA GeForce RTX 3080 TI Founder Edition
★ RAM ★ G. Skill Trident Z RGB 32GB 3600MHz
★ MB ★ ASUS TUF GAMING X570 (WI-FI) ATX Gaming
★ Storage ★ SSD SB-ROCKET-1TB + SEAGATE 2TB Barracuda IHD
★ Cooling ★ NOCTUA NH-D15 CHROMAX BLACK 140mm + 10 of Noctua NF-F12 PWM
★ PSU ★ ANTEC HCG-1000-EXTREME 1000 Watt 80 Plus Gold Fully Modular PSU
★ Case ★ LIAN LI PC-O11 DYNAMIC XL ROG (BLACK) (G99.O11DXL-X)
★ Monitor ★ LG Ultragear 27" 240Hz Gaming Monitor
★ Keyboard ★ TVS Electronics Gold Keyboard
★ Mouse ★ Logitech G502 Hero
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
|