home hardware prices news articles forums photos user reviews
Go Back   Tech Support Forums - TechIMO.com > PC Hardware and Tech > Webmastering and Programming
Ask a Tech Support Question (free)!

Newbie that wants to run a free standing EXE for fun

Reply
Get bargains at  »  Dealighted.com
 
Thread Tools Search this Thread
Currently Active Users: 1492
Discussions: 200,952, Posts: 2,379,477, Members: 246,315
Old February 20th, 2007, 02:06 AM   Digg it!   #1 (permalink)
Member
 
Join Date: Aug 2004
Posts: 190
Newbie that wants to run a free standing EXE for fun

Hey guys,

Do you guys suggest any possible freeware programs, or even not free programs that are easy to use, and will help me create simple exe programs ?

I've heard a lot about python, VB, visual studio 6.0 - which i have, etc.

I'm looking for something that is for a COMPLETE newbie, that will almost guide me through the process of just making a simple exe file to see if I can do it.

Basically an exe that runs and says, "temp files are now being deleted" click ok to continue...etc.

Something simple like that, I just want to see if it's something I'd be interested in. I did a few searches and a lot of the freeware programs for programming cant create stand alone exes.

will visual studio 6.0 do it for me? and it is a hard language to learn ? VB i mean?

Please, any direction or help would be great. thanks.
pos_user is offline   Reply With Quote
Old February 20th, 2007, 04:52 AM     #2 (permalink)
Ultimate Member
 
outlaw2001it's Avatar
 
Join Date: Sep 2006
Location: Wherever I land.
Posts: 2,278
Blog Entries: 1
Send a message via Skype™ to outlaw2001it
Hello,
You can make a Dos Batch file in notepad, for something simple like clean the Prefetch Folder, or delete files in a directory...etc. This is an example:
1. Open notepad and type or copy paste: del c:\windows\prefetch\*.* /Q
What you are doing is telling the computer to delete the stuff that has been accumulating in the prefetch folder of Windows (program installations...etc).
del - delete
c:\windows\prefetch - this is the directory you want to go to
*.* - meaning tag all files
/q - means to do it quietly, don't prompt or ask for confirmation.
2. Save the File As: Clean Prefetch.exe
3. In the Save File Box change the extension from txt documents to
all files
4. Press Save
This is just an idea of how easy it is. For the list of commands that are available you can go here http://www.easydos.com/dosindex.html. I hoped that this helped. Take Care.

Last edited by outlaw2001it : February 20th, 2007 at 04:54 AM.
outlaw2001it is offline   Reply With Quote
Old February 20th, 2007, 08:11 AM     #3 (permalink)
Member
 
Join Date: Aug 2004
Posts: 190
Thanks for the help. Any information on small writing language to make EXE's out of the same thing or same idea?

Quote:
Originally Posted by outlaw2001it View Post
Hello,
You can make a Dos Batch file in notepad, for something simple like clean the Prefetch Folder, or delete files in a directory...etc. This is an example:
1. Open notepad and type or copy paste: del c:\windows\prefetch\*.* /Q
What you are doing is telling the computer to delete the stuff that has been accumulating in the prefetch folder of Windows (program installations...etc).
del - delete
c:\windows\prefetch - this is the directory you want to go to
*.* - meaning tag all files
/q - means to do it quietly, don't prompt or ask for confirmation.
2. Save the File As: Clean Prefetch.exe
3. In the Save File Box change the extension from txt documents to
all files
4. Press Save
This is just an idea of how easy it is. For the list of commands that are available you can go here http://www.easydos.com/dosindex.html. I hoped that this helped. Take Care.

pos_user is offline   Reply With Quote
Old February 20th, 2007, 08:53 AM     #4 (permalink)
Member
 
qx9r7man's Avatar
 
Join Date: Sep 2006
Posts: 126
Try grabbing a copy of whatever language you want -for dummies. They are great books, but the beginning of the book will most likely be dedicated to understanding how a program works. For me, that part is a waste of words, but if you're just starting in programming, read throughly.

Try the library first, most will have some technical books.
__________________
I is an Kollage student.

Last edited by qx9r7man : February 20th, 2007 at 08:55 AM. Reason: forgot something
qx9r7man is offline   Reply With Quote
Old February 20th, 2007, 10:19 AM     #5 (permalink)
Caveat Emptor
 
Rootstonian's Avatar
 
Join Date: Mar 2005
Location: Out of my mind
Posts: 3,241
Send a message via AIM to Rootstonian
Console applications in C++ are easy to do in VS Studio....assuming you know how to program in C++

Code:
#include <iostream>
#include "stdafx.h"
#include <cstdlib>
#include <ctime>

using namespace std;

int _tmain(int argc, _TCHAR* argv[])
{
	int random_integer;

	cout << "2 Random Numbers from 1 to 600" << endl;
	srand(static_cast<unsigned>(time(0)));

	for (int i = 0; i < 2; ++i) {
		random_integer = 1 + (rand()%600);	
		cout << random_integer << endl;
	}

	system("PAUSE");
	return 0;
}
Rootstonian is offline   Reply With Quote
Old March 2nd, 2007, 02:54 PM     #6 (permalink)
Banned
 
Iturea's Avatar
 
Join Date: Jan 2004
Location: Earth
Posts: 420
Lightbulb

It would be useful to have an IDE to create your executable.

You can download some free ones here: http://msdn.microsoft.com/vstudio/express/default.aspx

Have fun!
Iturea is offline   Reply With Quote
Old March 2nd, 2007, 05:35 PM     #7 (permalink)
Super F@D Folder
 
Join Date: Jun 2004
Posts: 5,083
Send a message via AIM to sr71000
I recommend c#. I use it almost exclusively for the work i do right now. You can get everything you need for free from microsoft and it compiles to .net code so it can run on any windows machine with .net . If you're interested in learning I'd be happy to work with you. Start off really easy and go from there! I love to teach....to be honest some day I'd love to be a professor.....hehehe. It's a great language because it's very easy to begin with, includes sooo many new features to programming languages....has a wonderful ide to develop in for free!!! and when you're ready to start taking more control, you have the ability. If you're seriously 100% interested im me on aim. i'm sr71000 just like here on the forum. I'm not gonna do it for you...and i'm not gonna sit down and spoon feed it to you...it'll be work....but if you really wanna learn I think it's a good language and i know it well enough to help you along the way It's also a lot of fun to finish a project and go HOLY SHIT I DID THAT!!!!1111 lol
sr71000 is offline   Reply With Quote
Reply
Thread Tools Search this Thread
Search this Thread:

Advanced Search

Similar Threads
Thread Thread Starter Forum Replies Last Post
newbie question: after i install something.. how do i run it? zskillz Linux and Unix 3 November 9th, 2004 01:21 PM
Windows XP icons missing on startup until Explorer.exe is manually run ktew Applications and Operating Systems 5 August 10th, 2004 03:21 PM
Chyang Fun Cases at Newegg - Cheap + Free Shipping = HOT! zepper ResellerRatings Homepage Deals 14 October 21st, 2003 06:24 PM
Cannot run setup.exe Undeadlord Applications and Operating Systems 10 June 6th, 2003 10:49 PM
CrimsonLand - Free, Fun & Addictive! JayMan General Gaming Discussion 2 November 5th, 2002 06:01 PM


Currently Active Users Viewing This Thread: 1 (0 members and 1 guests)
 
Most Active Discussions
The disrespect of Obama by Russian .. (41)
Is It Just Me? (2943)
Making Health Care Worse (178)
Wireless Televisions. (12)
CPU fan stops spinning randomly (8)
windows 7 problem (7)
Regular Build (11)
Is the PSU I received dead? (12)
radeon x850xt platinum & shader.. (6)
Print spooler problem (15)
windows vista security holes (10)
HIS HD5770 graphic card question (15)
Install XP pro and a Vista laptop ?.. (11)
Foreign voltage (10)
Recent Discussions
How to Enjoy Your Favorite Videos on .. (0)
EVGA 9800 gtx help with finding a goo.. (11)
Regular Build (11)
Help with onclick and buttons (0)
Modern Warfare 2: Who Bought It? (63)
Virus advise (8)
My monitor won't turn on after instal.. (1)
Laptop with wireless problem. (3)
Internet Lost (3)
Dept. of HS: NSA 'Helped' Develop Vis.. (16)
windows vista security holes (10)
Point and Shoot Camera Suggestions. (4)
Multiple Restarts Required at Boot (2)
Ideal cheap graph card for PC-Gaming? (18)
radeon x850xt platinum & shader 3 (6)
Graphics Card Upgrade Question (4)
For Sale BFG GTX285 OC2 with 10 year .. (3)
How to convert MP3's (4)
Wireless Televisions. (12)
Hp Artist Edition + Matching Bag (0)
Asus P4G8X Mobo (6)
Xbox 360 GTA: SA disk error (1)
Is the PSU I received dead? (12)
windows 7 internet problem (5)
BSOD On Startup (ntoskrnl.exe) (2)


All times are GMT -4. The time now is 02:44 AM.
TechIMO Copyright 2009 All Enthusiast, Inc.



1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28