Results 1 to 4 of 4

Thread: I need some Basic VB Help.

  1. #1
    New Member
    Join Date
    Aug 12
    Posts
    1

    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) {
    }
    };
    }

  2. #2
    Burning Member Niya's Avatar
    Join Date
    Nov 11
    Posts
    3,094

    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.
    Treeview with NodeAdded/NodesRemoved events | BlinkLabel control | Calculate Permutations | Object Enums | ComboBox with centered items | Create Sortable BindingList(not mine) | .Net Internals article(not mine) | Wizard Control | Understanding Multi-Threading


    C++ programmers will dismiss you as a cretinous simpleton for your inability to keep track of pointers chained 6 levels deep and Java programmers will pillory you for buying into the evils of Microsoft. Meanwhile C# programmers will get paid just a little bit more than you for writing exactly the same code and VB6 programmers will continue to whitter on about "footprints". - FunkyDexter

    There's just no reason to use garbage like InputBox. -jmcilhinney

  3. #3
    .NUT jmcilhinney's Avatar
    Join Date
    May 05
    Location
    Sydney, Australia
    Posts
    80,748

    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.

  4. #4
    Super Moderator koolsid's Avatar
    Join Date
    Feb 05
    Location
    Mumbai, India
    Posts
    11,405

    Re: I need some Basic VB Help.

    Moved to C++ Forum
    A good exercise for the Heart is to bend down and help another up...
    Please Mark your Thread "Resolved", if the query is solved

    Microsoft MVP: 2011 - Till Date IMP Links : Acceptable Use Policy, FAQ

    MyGear:
    Sony VGN-FZ27G with a triple boot between (XP+Office 2003+VB6), (VISTA+Office 2007+VS2008) and (Win7+Office 2010+VS2010) || Sony VPCCB-45FN with a Win7+Office 2010+VS2010. VM: (XP+Office 2003+VB6), (VISTA+Office 2007+VS2008), (Win8+Office 2010+VS2012) || Mac Book Pro (10.6.8) with Office 2011

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •