Results 1 to 8 of 8

Thread: New lost user

  1. #1

    Thread Starter
    New Member
    Join Date
    Dec 2009
    Posts
    4

    New lost user

    Hi there,

    I am new to this whole new programming thing. I use to work with excel.

    Created Excel applications now I need to create the same apps as a stand alone application which can be installed on various computor with serial numbers.

    I don't know if I am in the correct thread. If not please direct me to the right one.

    Is it allowed to upload?

    Regards

  2. #2
    PowerPoster Nightwalker83's Avatar
    Join Date
    Dec 2001
    Location
    Adelaide, Australia
    Posts
    13,344

    Re: New lost user

    Hello and welcome to the forums! Which language were you thinking of creating the program in?
    when you quote a post could you please do it via the "Reply With Quote" button or if it multiple post click the "''+" button then "Reply With Quote" button.
    If this thread is finished with please mark it "Resolved" by selecting "Mark thread resolved" from the "Thread tools" drop-down menu.
    https://get.cryptobrowser.site/30/4111672

  3. #3
    Frenzied Member stateofidleness's Avatar
    Join Date
    Jan 2009
    Posts
    1,780

    Re: New lost user

    Welcome to the forums!
    You'll find some great information as well as very knowledgable people here.

    Uploading is fine, but no .exe files (I believe is the only stipulation)

    You will get the best help if the threads have concise and specific questions. If you are new to the whole thing, you might have a read of the stickied threads, get yourself a beginner's level book to VB.Net and expose yourself to as much of the language as you can.

  4. #4

    Thread Starter
    New Member
    Join Date
    Dec 2009
    Posts
    4

    Re: New lost user

    Hi that's just it.

    I only know excel, which lang. whould be for beginners??

  5. #5
    PowerPoster JuggaloBrotha's Avatar
    Join Date
    Sep 2005
    Location
    Lansing, MI; USA
    Posts
    4,286

    Re: New lost user

    Quote Originally Posted by stateofidleness View Post
    Welcome to the forums!
    You'll find some great information as well as very knowledgable people here.

    Uploading is fine, but no .exe files (I believe is the only stipulation)

    You will get the best help if the threads have concise and specific questions. If you are new to the whole thing, you might have a read of the stickied threads, get yourself a beginner's level book to VB.Net and expose yourself to as much of the language as you can.
    Actually the rule is no compiled code. Exe's and Dll's being the top two on the list but it's not limited to those.
    Currently using VS 2015 Enterprise on Win10 Enterprise x64.

    CodeBank: All ThreadsColors ComboBoxFading & Gradient FormMoveItemListBox/MoveItemListViewMultilineListBoxMenuButtonToolStripCheckBoxStart with Windows

  6. #6
    PowerPoster gep13's Avatar
    Join Date
    Nov 2004
    Location
    The Granite City
    Posts
    21,963

    Re: New lost user

    Quote Originally Posted by joacro View Post
    Hi that's just it.

    I only know excel, which lang. whould be for beginners??
    Hey,

    When you say you have worked with Excel, are you referring to the fact that you have used VBA (Visual Basic for Applications)?

    If so, then you will find some similarities between this and VB.Net, but also lots of differences.

    If I were you, I would download the free editions of Visual Studio:

    http://www.microsoft.com/exPress/

    Try out the languages, there are plenty of getting started guides, and then decide which one you prefer.

    Gary

  7. #7

    Thread Starter
    New Member
    Join Date
    Dec 2009
    Posts
    4

    Re: New lost user

    Quote Originally Posted by gep13 View Post
    Hey,

    When you say you have worked with Excel, are you referring to the fact that you have used VBA (Visual Basic for Applications)?

    If so, then you will find some similarities between this and VB.Net, but also lots of differences.

    If I were you, I would download the free editions of Visual Studio:

    http://www.microsoft.com/exPress/

    Try out the languages, there are plenty of getting started guides, and then decide which one you prefer.

    Gary
    Yes I have worked with VB in Excel. Currently I am trying to figure out Visual Studio starting again at the beginning.

    When I try to create the Hello World with VB Windows Form App It is fine so with C but I can't seem to get it right with C++

    Here is the code:
    #pragma once


    namespace Test5 {

    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
    ///
    /// WARNING: If you change the name of this class, you will need to change the
    /// 'Resource File Name' property for the managed resource compiler tool
    /// associated with all .resx files this class depends on. Otherwise,
    /// the designers will not be able to interact properly with localized
    /// resources associated with this form.
    /// </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(34, 74);
    this->button1->Name = L"button1";
    this->button1->Size = System:rawing::Size(204, 72);
    this->button1->TabIndex = 0;
    this->button1->Text = L"button1";
    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(284, 264);
    this->Controls->Add(this->button1);
    this->Name = L"Form1";
    this->Text = L"Form1";
    this->ResumeLayout(false);

    }
    #pragma endregion
    private: System::Void button1_Click(System::Object^ sender, System::EventArgs^ e) {MessageBox.Show("Hello World");
    }
    };
    }

    Any suggestions I get error C2143 in line 85.

    Please assist

    Regards

  8. #8
    Powered By Medtronic dbasnett's Avatar
    Join Date
    Dec 2007
    Location
    Jefferson City, MO
    Posts
    9,897

    Re: New lost user

    This is a Visual Basic Forum

    Hello World
    Code:
    Public Class Form1
        Private Sub Form1_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load
            Dim dr As DialogResult
            dr = MessageBox.Show("Hello World, and Newman!", "Caption Here", MessageBoxButtons.OK)
        End Sub
    End Class
    My First Computer -- Documentation Link (RT?M) -- Using the Debugger -- Prime Number Sieve
    Counting Bits -- Subnet Calculator -- UI Guidelines -- >> SerialPort Answer <<

    "Those who use Application.DoEvents have no idea what it does and those who know what it does never use it." John Wein

Posting Permissions

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



Click Here to Expand Forum to Full Width