simple program maker

Discussion in 'Windows 7' started by lunar21, Oct 4, 2009.

  1. lunar21

    lunar21 MDL Addicted

    Dec 14, 2008
    753
    270
    30
    Hello I was wondering if there was a simple program out there that I could make a custom exe file that i can make buttons that when pressed would open other files (like a batch file or another exe file). If there is please show me the way :D
     
    Stop hovering to collapse... Click to collapse... Hover to expand... Click to expand...
  2. Hazar

    Hazar MDL Guru

    Jul 29, 2009
    2,489
    458
    90
    Autorun makers.

    But seriously, that sorta stuff is easy to program and just read on some tutorials and do some simple shell launches
     
  3. HotCarl

    HotCarl MDL Addicted

    Jul 21, 2009
    830
    17
    30
    Ummm...that's called Microsoft Visual Basic. :p
     
  4. bachett

    bachett MDL Novice

    May 31, 2007
    43
    19
    0
    Visual Studio is simple to use for some but not for others...
     
  5. Reign_Of_Freedom

    Reign_Of_Freedom MDL Expert

    Aug 1, 2009
    1,246
    467
    60
    If your just starting out...Visual Basic 6.0 Easy to use and there are tons of custom controls that you can use.
     
  6. Valoni

    Valoni MDL Junior Member

    Aug 5, 2009
    69
    22
    0
    #6 Valoni, Oct 4, 2009
    Last edited: Oct 4, 2009

    try to use Winrar 3.x to create exe that run batch on silence mode

    example :

    and i comment tabs when write
    Enter a comment manually :

    Setup=batchfile.bat
    TempMode
    Silent=1
    Overwrite=1


    and compress file "winrar is good tools for that"

    or

    Create an simple application "with forms and buttons" in any programming languages such are Delphi/VB.NET/C#/C++ etc.

    p.s.
    if you made for Vista/7/2008 is good to use Netframework's languages VB.NET/C# for fast and well integration to these system with Visual Studio Express at least!
     
    Stop hovering to collapse... Click to collapse... Hover to expand... Click to expand...
  7. Mr Jinje

    Mr Jinje MDL Expert

    Aug 19, 2009
    1,769
    1,106
    60
    #7 Mr Jinje, Oct 4, 2009
    Last edited by a moderator: Apr 29, 2017
  8. PAYMYRENT

    PAYMYRENT MDL Developer

    Jul 28, 2009
    1,460
    421
    60
    #8 PAYMYRENT, Oct 5, 2009
    Last edited by a moderator: Apr 20, 2017
    simple visual basic code to start another program
    vb.net

    Code:
                    Dim consoleApp As New Process
                    With consoleApp
                        .StartInfo.WindowStyle = ProcessWindowStyle.Hidden
                        .StartInfo.UseShellExecute = True
                        .StartInfo.CreateNoWindow = False
                        .StartInfo.FileName =
                        .StartInfo.Arguments =
                        .Start()
    
                    End With