Continue to Site

Welcome to EDAboard.com

Welcome to our site! EDAboard.com is an international Electronics Discussion Forum focused on EDA software, circuits, schematics, books, theory, papers, asic, pld, 8051, DSP, Network, RF, Analog Design, PCB, Service Manuals... and a whole lot more! To participate you need to register. Registration is free. Click here to register now.

Lookinf for a very simple tool to create a very simple app..

Status
Not open for further replies.

edaedaeda

Full Member level 4
Joined
Feb 27, 2002
Messages
201
Helped
24
Reputation
48
Reaction score
8
Trophy points
1,298
Location
USA
Activity points
1,305
Hello,
This request needs to start off like this: I am a complete newby when it comes to programming.....

What I would like to do is to create an app that does the following>>

1. bring up small window
2. at window user makes a selection between to applications
3. selected application starts

Currently, I use 2 batch files to do the above. The purpose of batch files are to set an environment variable to a certain value. Then I can run desired app.

It would be nice to integrate the above into a nifty and very simple app.
Any assistance in what tool for a complete amature to use would be great.

Eda
 

Re: Lookinf for a very simple tool to create a very simple a

Hi,

I think MFC application is what you need.

You can creat it using Visual C++.net

If you know C++, surely it is very simple.
 

Re: Lookinf for a very simple tool to create a very simple a

thank you miniuser,
What would be really nice is if I could get my hands on the basic code that I need then modify it to fit my requirement.
Any suggestion?

Eda
 

Re: Lookinf for a very simple tool to create a very simple a

Hi,
For a simple window that user can choose s.th. in it, I can write a sample for you if needed.

But what are your applications? I mean How they start?
 

Re: Lookinf for a very simple tool to create a very simple a

Hi Eda,
I would suggest to use Borland C++ Builder 5 . That tool is kind to beginers and is very easy to make simple applications. You start with one window and just write app logic.

put two buttons on main window.
modify properties (properties window on the right side) : "caption" is for text on button etc.
double click one button and code window pops up. Inside {} you can put this code :
Code:
{
    system("c:\tools\programmersnotepad.exe");
}

and it will run programmers notepad in my comp, change parameter to match your program that needs to start executing.

you can repeat this steps for the other button.

For this to work you need this line at top of all code :
Code:
#include <process.h>

If there is errors in your code, post all code chunk and we will debug it.

Best regards
 

Re: Lookinf for a very simple tool to create a very simple a

Yea Borland C++ Builder is a very friendly IDE.
 

Hi,
Try Visual basic. It is very simple. You ca n do what you need in 30 mn.
 

Status
Not open for further replies.

Part and Inventory Search

Welcome to EDABoard.com

Sponsor

Back
Top