Simple Chat Program in Batch
by Tinker Bench in Circuits > Microsoft
16834 Views, 2 Favorites, 0 Comments
Simple Chat Program in Batch
I'll Show you today how to make a simple batch program. I believe batch is one of the simplest language(is it??) of it's kind. Watch the video An you'll understand it. I had explained all the line but the quality of video is not as much as I thought I'll try to make it betteHer's the video
r
Let's Setup Something..
To get started for this project you just need knowledge in batch file programming and a simple text editor.
For the text editor, you can simply go with notepad but I recommend you go with notepad++. You can download it from here : Notepad++7.4.1. As batch file will only run on windows (As it's the command line for windows), I believe you have ms windows(I said this as some people use linux distributions or mac or other os).
Let's Start Coding...
If you don't like coding then jump to last step....
Now for those who love coding let's move on..
What we are going to do is pretty simple.
First We'll get inputs from user.
Second We'll put it in a text file
Third Using another program we'll read it.
Which means we need 2 programs: one to write and one to read.
Let's see the First code. You can download it from here.
See the video where i explain every line..
Code to Write.. Don't Forget to Save With .bat Extension
@echo off title Chat :reg set /p "name= Enter your name: " echo %name% Joined the chat (%time%::%date%) >> log.cdat cls start read.bat :mes set /p "message=>>" echo %name%:%message%>>mes.cdat cls goto mes
Downloads
The Program to Read
@echo off
title Messages
:read
type log.cdat
type mes.cdat
timeout /t 1
cls
goto read
You can download it from here..
Downloads
For the Lazy Guys Like Me
If you are lazy, like me to do all this, Then just run the program below it'll do all the things you just don't have to care about... it