Friday, 26 September 2014

Programming tutorial number 2

Hello everyone sorry for no posts but today we are going to be doing a notepad programming tutorial with pictures! type this in notepad

@echo off
color 0a
:menu
cls
echo Hello And Welcome to the program!
echo the numbers then enter on the keyboard!
echo 1)Start
echo 2)Exit
set /p choice=Choice:

if %choice% == 1 goto start
if %choice% == 2 exit

:start
cls
echo Hello And welcome to the program!
pause
exit


the goto command will take you to a cyber location.
as you see start is made a cyber location so if you typed in 1 it would go to that location.
save the file a as a .bat extension file. then run the program an voila!

Tuesday, 23 September 2014

Here is the download link for the screen capture:
Download Screen capture
once downloaded open it click file then Capture then save to see if it works.
good luck!
Props to DrX360mods!.

My new screen capture device

Thanks to this guy on youtube called DrX360mods i made a screen capture device so now i can take screen shots for this blog! i made it in visual basic and it is awsome.
nothing else!EDIT:Now for download!!!

Title Changer

This is my first visual basic program. i learnt this from a guy forgot who he was but download this!
Download My Title Changer
once you put some text in click Push me or whatever button it was
then click next to change the title again!
I made this with...
visual basic
a label
2 buttons
simple coding skills
textbox
and a Form style program in VB!
Enjoy!

Programming languages that you should learn.

these are some programming languages that you should learn.
C++. Downloadable at visualstudio.com
Visual basic 2010 express.downloadable at visualstudio.com
Python.available at python.org

These are some simple programming languages to learn but not C++
but visual basic and python is easy and i use python and visual basic (VB).
the wordconverter was made from python and i converted it to exe.

programming is love,programming is life.
(remake of shrek is love, shrek is life.)

Programming With Notepad

Hello everyone and today i will be showing you how to program in notepad (Simple programs)
first open up notepad (windows 7 and xp etc) and type
@echo off
color 0a
:menu
cls
echo Hello world.
pause

now save it as all files and save it as whatever you want then add the extension .bat
that will save it as a batch file.

Code Definitions for the code in thus program
@echo off - hides the code
color 0a - changes the text color to green and background to black. First letter is the background and second is the text color type color red in cmd for color codes.
:menu or :(whatever you want) makes a location in the program.
cls - clears the screen
echo - says what you typed after echo
pause - Says Press any key to continue... ALWAYS PUT THIS IN THE END OF THE PROGRAM
TO STOP IT FROM CLOSING AUTOMATTICALY ONCE YOU START THE PROGRAM
UP.
there you go!
Hello and welcome to my website!
i will upload my programs i make and probably give you some programming tutorials
in notepad and other programming languages.
this is my first program:
Download my word converter
this program will convert your words into seperate letters.
for example you said Google
it will come out like this.
G
o
o
g
l
e
then you press enter to exit the program