Question:
How do I write my own Executable program?
Jesse B
2009-05-27 21:06:54 UTC
I am trying to write my own program in windows, but I don't know what to use to write it. I am trying to make a telnet application with a gui. I will be using this program to telnet to a special video player I have. In the gui I want PLAY, PAUSE, STOP, NEXT, and PREVIOUS buttons, when you click these buttons, it will send the respective telnet commands, as well as a place to enter the IP address, username, and password with a connect button. In addition, I want a place where I can enter in commands, like a console, for debugging purposes. I have tried Visual Basic, but it requires all kinds of OCX files and DLLs, and I haven't been able to combine the console with the gui. I want a complete standalone .exe file that can run from anywhere, like a flash drive, and has all the components it needs to run built in. If you can give me the name of a programming software, sample codes, links, or build the whole thing for me, I will be very grateful. And don't say to google it please, I know that.
Five answers:
Anony Mus
2009-05-27 21:12:02 UTC
Visual Basic from microsoft.

ive made many programs
MEDSKER
2014-12-18 22:11:45 UTC
the best trading software http://tradingsolution.info

i have attended a lot of seminars, read counless books on forex trading and it all cost me thousands of dollars. the worst thing was i blew up my first account. after that i opened another account and the same thing happened again. i started to wonder why i couldn,t make any money in forex trading. at first i thought i knew everything about trading. finally i found that the main problem i have was i did not have the right mental in trading. as we know that psychology has great impact on our trading result. apart from psychology issue, there is another problem that we have to address. they are money management, market analysis, and entry/exit rules. to me money management is important in trading. i opened another account and start to trade profitably after i learnt from my past mistake. i don't trade emotionally anymore.

if you are serious about trading you need to address your weakness and try to fix it. no forex guru can make you Professional trader unless you want to learn from your mistake.
?
2009-05-28 02:01:36 UTC
What programming language are you using?
2009-05-27 21:22:10 UTC
Choose a language first:



1) Perl

2) C

3) C++

4) Java

5) Python



Then try a first application (This is Perl, this will NOT work on Windows, it is for linux. This is from the Perl page on wikipedia):



#!/usr/bin/perl -w



use strict;

use Gtk2 '-init';



# Create main window:

my $mw = Gtk2::Window->new('toplevel');



# Create main positioning table:

my $t = Gtk2::Table->new (10,10,0);

$mw->add($t);



# 'Hello world!' label:

my $label = Gtk2::Label->new('Hello world!');

$t->attach_defaults($label,0,5,0,5);

$label->show;



my $lab = Gtk2::Button->new('Crack It!');

$t->attach_defaults($lab,0,20,10,20);

$lab->signal_connect( 'clicked' => sub { exit } );

$button->show;



# Button to quit:

my $button = Gtk2::Button->new('Quit');

$t->attach_defaults($button,0,10,10,20);

$button->signal_connect( 'clicked' => sub { exit } );

$button->show;



# Main loop:

$mw->show_all;

Gtk2->main;

0;
jbxspartan
2009-05-27 21:11:23 UTC
google it.


This content was originally posted on Y! Answers, a Q&A website that shut down in 2021.
Loading...