Search found 139 matches

by batchcc
04 Oct 2015 11:53
Forum: DOS Batch Forum
Topic: Set title as time
Replies: 2
Views: 2528

Set title as time

I have a question I was wondering how you can change the title every time the minute changes and not display the seconds just hour:minute This is wat I have so far. @echo off Cls set h=%TIME:~0,2% set m=%TIME:~3,2% set titletime=%h%:%m% Title %titletime% Pause But I want the code to continue and be ...
by batchcc
23 Sep 2015 08:45
Forum: DOS Batch Forum
Topic: calling saved data
Replies: 7
Views: 5716

Re: calling saved data

sorry Shadowtheif I am having an issue calling the stored name
by batchcc
22 Sep 2015 15:17
Forum: DOS Batch Forum
Topic: calling saved data
Replies: 7
Views: 5716

Re: calling saved data

So user enters his / her name which is stored in a batch or tmp file I can't figure out how to store it in a temp file so I used a batch file and then a second batch file a game will start by welcoming them for example hello user-name welcome.
Thanks
by batchcc
22 Sep 2015 13:31
Forum: DOS Batch Forum
Topic: calling saved data
Replies: 7
Views: 5716

calling saved data

sorry this question is so basic but using the following code @echo off cls Set /p name= @echo @echo off > co.bat @echo cls >> co.bat @echo SET Name=%Name% >> co.bat pause SET /p Name= <co.bat pause how can i call the variable %name% and print it on the screen or use it in other places from a diffent...
by batchcc
14 Sep 2015 08:02
Forum: DOS Batch Forum
Topic: moving grouped text backwards
Replies: 0
Views: 6304

moving grouped text backwards

My question is is it possible to move grouped text like images coverted ito ascii like seen here just backwards

Http://ss64.org/viewtopic.php?id=2022
by batchcc
05 Sep 2015 15:51
Forum: DOS Batch Forum
Topic: center text in a batch file
Replies: 8
Views: 10268

Re: center text in a batch file

Yes spaces will work as well.
by batchcc
04 Sep 2015 05:20
Forum: DOS Batch Forum
Topic: center text in a batch file
Replies: 8
Views: 10268

Re: center text in a batch file

I am using windows vista and the text doesn't have to be centered perfectly just moved over 4 or 5 tab indents.
by batchcc
03 Sep 2015 08:41
Forum: DOS Batch Forum
Topic: center text in a batch file
Replies: 8
Views: 10268

Re: center text in a batch file

Can I just start with the vbnr centered for 1 second then exit rather than having to move it manually
by batchcc
03 Sep 2015 05:21
Forum: DOS Batch Forum
Topic: center text in a batch file
Replies: 8
Views: 10268

center text in a batch file

I have an image of some text i randomized it because it was confidential but i converted it on text-image.com and added it to a text file and added about 7 tabs in front of it ( in notepad++ just select all and hit tab ) but this changes the formatting when a batch file uses the type command to type...
by batchcc
27 Aug 2015 15:47
Forum: DOS Batch Forum
Topic: remove the drectory attribute with cmd
Replies: 1
Views: 2256

remove the drectory attribute with cmd

Is it possible to remove the directory attribute from folders or add it to files using command prompt?
by batchcc
25 Aug 2015 14:48
Forum: DOS Batch Forum
Topic: Batch number system
Replies: 24
Views: 15298

Re: Batch number system

Cmd prints
CD
CCCC
is there a way to mask all text on the second line so it can't be seen ?
by batchcc
25 Aug 2015 11:06
Forum: DOS Batch Forum
Topic: Batch number system
Replies: 24
Views: 15298

Re: Batch number system

How could I suppress the next line that contains cccc I tryed deleting 400.txt and making a new one already
by batchcc
25 Aug 2015 11:04
Forum: DOS Batch Forum
Topic: batch store files in temp file
Replies: 6
Views: 5656

Re: batch store files in temp file

how could I also use copy /b file.ext and store it in a temp file then copy the binary back into a new file.ext ?
by batchcc
25 Aug 2015 06:29
Forum: DOS Batch Forum
Topic: Batch number system
Replies: 24
Views: 15298

Re: Batch number system

400.txt CD num.bat @echo off cls if %num% gtr 1000 ( type 1000.txt & set /a num=%num%-1000 ) if %num% gtr 900 ( type 900.txt & set /a num=%num%-900 ) if %num% gtr 800 ( type 800.txt & set /a num=%num%-800 ) if %num% gtr 700 ( type 700.txt & set /a num=%num%-700 ) if %num% gtr 600 ( t...
by batchcc
25 Aug 2015 06:15
Forum: DOS Batch Forum
Topic: Color Ascii Art
Replies: 8
Views: 29714

Re: Color Ascii Art

the batch file