3 Simple Ways to
Share What You Make

With Instructables you can share what you make with the world — and tap into an ever-growing community of creative experts.

PhotosPhotos

Share one or more photos of a project, recipe, or whatever you've made, quickly and easily.

Step by StepStep-By-Step

Share your step-by-step photos with text instructions of what you made so others can do it too!

VideoVideo

Share your how-to video. You'll need your embed code from a video site such as YouTube.

Batch Maker

Batch Maker
UPDATE V2.0 NOW OUT!!! DOWNLOAD BELOW

This is a project i have been working on for a little wile..
it is made with vb.net 2008 and it makes making a batch simple for the newbies...

!!!!!!!!PLEASE NOTE!!!!!!!!!!!!!
THIS WILL ONLY WORK ON VISTA
it's because i made this on Vista now when i try it on an XP machine it comes up with an error message.. sorry people.

I have to thank TATcreator because even know he doesn't know it he gave me the idea to make this .. lol.


Make sure you look at the First step 'installation' before downloading!!!!


I really hope you like it..
and if you find any problems with it please leave a comment or pm me so i can fix them and repost it...

please comment on what you think to and don't forget to rate it =)
 
Remove these adsRemove these ads by Signing Up
 

Step 1Installation

installation
To install follow the steps and pics closely!!!
1) Follow pic 1 if you just get a page with alot of text when you click on the link

2)Click save

3) Make sure you get all the red bits right!!!
Save as .exe And Make sure you save as 'All Files' or it will not work!!!!!
« Previous StepDownload PDFView All StepsNext Step »
73 comments
1-40 of 73next »
May 29, 2009. 8:32 AMwill421 says:
When I click on the X when I accidentally poped up the Edit Command popup it said "The value of "index" cannot be "-1"" and the (unhelpful) details button said:

See the end of this message for details on invoking
just-in-time (JIT) debugging instead of this dialog box.

************** Exception Text **************
System.ArgumentOutOfRangeException: InvalidArgument=Value of '-1' is not valid for 'index'.
Parameter name: index
at System.Windows.Forms.ListBox.ObjectCollection.Insert(Int32 index, Object item)
at MakeABatch.Start.ListBox1_MouseDoubleClick(Object sender, MouseEventArgs e)
at System.Windows.Forms.Control.OnMouseDoubleClick(MouseEventArgs e)
at System.Windows.Forms.ListBox.WndProc(Message& m)
at System.Windows.Forms.Control.ControlNativeWindow.OnMessage(Message& m)
at System.Windows.Forms.Control.ControlNativeWindow.WndProc(Message& m)
at System.Windows.Forms.NativeWindow.Callback(IntPtr hWnd, Int32 msg, IntPtr wparam, IntPtr lparam)

************** Loaded Assemblies **************
mscorlib
Assembly Version: 2.0.0.0
Win32 Version: 2.0.50727.1433 (REDBITS.050727-1400)
CodeBase: file:///C:/WINDOWS/Microsoft.NET/Framework/v2.0.50727/mscorlib.dll

MakeABatch
Assembly Version: 1.0.0.0
Win32 Version: 1.0.0.0
CodeBase: file:///C:/Documents%20and%20Settings/Bob/My%20Documents/Will%60s%20files/MakeABatch.exe

Microsoft.VisualBasic
Assembly Version: 8.0.0.0
Win32 Version: 8.0.50727.1433 (REDBITS.050727-1400)
CodeBase: file:///C:/WINDOWS/assembly/GAC_MSIL/Microsoft.VisualBasic/8.0.0.0__b03f5f7f11d50a3a/Microsoft.VisualBasic.dll

System
Assembly Version: 2.0.0.0
Win32 Version: 2.0.50727.1433 (REDBITS.050727-1400)
CodeBase: file:///C:/WINDOWS/assembly/GAC_MSIL/System/2.0.0.0__b77a5c561934e089/System.dll

System.Windows.Forms
Assembly Version: 2.0.0.0
Win32 Version: 2.0.50727.1433 (REDBITS.050727-1400)
CodeBase: file:///C:/WINDOWS/assembly/GAC_MSIL/System.Windows.Forms/2.0.0.0__b77a5c561934e089/System.Windows.Forms.dll

System.Drawing
Assembly Version: 2.0.0.0
Win32 Version: 2.0.50727.1433 (REDBITS.050727-1400)
CodeBase: file:///C:/WINDOWS/assembly/GAC_MSIL/System.Drawing/2.0.0.0__b03f5f7f11d50a3a/System.Drawing.dll

System.Runtime.Remoting
Assembly Version: 2.0.0.0
Win32 Version: 2.0.50727.1433 (REDBITS.050727-1400)
CodeBase: file:///C:/WINDOWS/assembly/GAC_MSIL/System.Runtime.Remoting/2.0.0.0__b77a5c561934e089/System.Runtime.Remoting.dll


************** JIT Debugging **************
To enable just-in-time (JIT) debugging, the .config file for this
application or computer (machine.config) must have the
jitDebugging value set in the system.windows.forms section.
The application must also be compiled with debugging
enabled.

For example:

<configuration>
<system.windows.forms jitDebugging="true" />
</configuration>

When JIT debugging is enabled, any unhandled exception
will be sent to the JIT debugger registered on the computer
rather than be handled by this dialog box.
Jun 2, 2009. 5:32 PMwill421 says:
Heh, the lowest value for a array`s data in C++ (and maybe C) is 1, very confusing for beginners.
Apr 18, 2011. 12:38 AMmichaelb958 says:
Um, what? C, C++, C# and VB.NET index their arrays from zero.
* VB.NET: heaven knows why... but see http://msdn.microsoft.com/en-us/library/2k7ayc03%28v=VS.80%29.aspx anyway.
* In C, it was pointer-array equivalence. In C, array[index] == *(array + index). So the first element had to be element 0 or you lost space equal to the size of the type held by the array, and back in 1972 that was a Bad Thing.
* C++ and C# desired backwards compatibility with C. See above.

On the other hand, several languages index from 1, and one (I think) indexed from a programmer-specified positive integer. Either way, accessing negatively-indexed array items is Not A Good Idea.
Sep 7, 2011. 2:51 PMwill421 says:
Sorry. I was dumb back then.
May 29, 2009. 8:33 AMwill421 says:
Ignore the links.
Aug 30, 2010. 1:05 AMmichaelb958 says:
Executable excellence! I'm a bit past the stage where I need this, but it's quite a good program. In fact, you've inspired me to create Script Maker, an application which allows you to create [in this manner] batch files and VBScripts [with WScript or CScript]. I might even include JavaScript in version 2.0.
Dec 10, 2010. 2:44 AMmichaelb958 says:
Script Maker was getting too complicated, so I scrapped it and moved on to something a bit easier - C. (That's the programming language.) I figure I could have the program read subroutines out of the libraries.
Oct 5, 2010. 5:50 PMmichaelb958 says:
You could simplify that code immensely by using Select Case instead of all those Ifs.
Aug 5, 2010. 10:36 AMmaxoomen says:
It works also on windows XP you only need to download the newest version of microsoft .net
Jul 8, 2010. 3:16 PMaccount3r2 says:
:( i dont have vista. i only have xp. i love batch and things.
Oct 30, 2009. 5:03 PMlunchboxslayer27 says:
if it doesnt work for you, save the .tmp file, and just rename it to *whatever you want*.bat. it didnt work for me as an exe, but it worked as a tmp renamed to a bat
Jul 13, 2009. 2:25 AMerikals says:
got this to work in xp, cool Great work. I like it.
May 27, 2009. 9:35 PMJakash3 says:
For those of you who cannot run this, you probably don't have .NET Framework installed. This is needed in order to run programs that were programmed in Visual Basic .NET

Download it here: http://www.microsoft.com/downloads/details.aspx?familyid=0856eacb-4362-4b0d-8edd-aab15c5e04f5&displaylang=en
Jun 1, 2009. 1:36 PMwill421 says:
Taking a long long long long long long long long long long long long long long long time to download...
Jun 1, 2009. 2:40 PMwill421 says:
*sigh* That time was wasted...
Jun 15, 2009. 1:50 PMwill421 says:
Or not. But when I try to run MakeABatch.exe it just shows this error message "C:/windows/Microsoft.NET/Framework/v2.0.50727/mscorwks.dll could not be loaded". Help?
Jun 18, 2009. 11:55 AMwill421 says:
Yes.
May 29, 2009. 8:35 AMwill421 says:
Wine will not take anything from Microsoft.
May 29, 2009. 8:36 AMwill421 says:
Not even IE. *sigh*
May 31, 2009. 1:48 PMfwjs28 says:
then you probably don't have WINe configured correctly (and why would you want IE when linux has far superior browsers to any MS browser)
Jun 1, 2009. 1:31 PMwill421 says:
It does have its own (crappy) version of IE! And I want Microsoft`s IE because of VBS. (It won`t even understand stand-alone VBS scripts!)
Feb 25, 2009. 1:39 PMTATcreator says:
You are welcome.
May 29, 2009. 8:49 AMwill421 says:
You mean Your welcome, I`m right, right?
May 31, 2009. 1:43 PMfwjs28 says:
not You're welcome is the proper term or better yet is You are...
Jun 1, 2009. 1:32 PMwill421 says:
Oops, brain got stuck.
Jun 1, 2009. 1:35 PMfwjs28 says:
then get it un-stuck (im guessing by now its un-stuck(ed-ed?)
Jun 2, 2009. 5:29 PMwill421 says:
It was stuck, like, 19 days ago and 1 minute ago. Don`t you think that I would have unstuck before now? P.S. I was actually thinking of you`re but then my brain shortned it to your.
Jun 3, 2009. 12:18 PMfwjs28 says:
some people take time to get un-stuck...just checking...ps, you comprise of like 99% of the comments i receive, lol
Jun 7, 2009. 8:55 AMwill421 says:
And I have 99 comments right now...
Jun 8, 2009. 12:27 PMfwjs28 says:
woot?
Jun 9, 2009. 12:13 PMfwjs28 says:
massive?
Jun 9, 2009. 1:44 PMwill421 says:
289 comments!!!!!!!!!!!!!!!!!
1-40 of 73next »

Pro

Get More Out of Instructables

Already have an Account?

close

All Steps Viewing
View all steps of an Instructable on the same page when you're a Pro Member.

Upgrade to Pro today!
12
Followers
8
Author:iRule