Search found 19 matches
- 15 Dec 2022 08:44
- Forum: DOS Batch Forum
- Topic: Increasing text size in a batch file
- Replies: 7
- Views: 16126
Re: Increasing text size in a batch file
There is only one problem. How do I run code that I have already made with this preset? for example, i tried to do @echo off reg import tinytonCMD.reg cd Kernel start "game.bat" exit That doesn't work for some reason, it will start the game without the preset in the registry file. It works fine with...
- 15 Dec 2022 08:14
- Forum: DOS Batch Forum
- Topic: Increasing text size in a batch file
- Replies: 7
- Views: 16126
Re: Increasing text size in a batch file
thx ill try it
- 14 Dec 2022 12:27
- Forum: DOS Batch Forum
- Topic: Increasing text size in a batch file
- Replies: 7
- Views: 16126
Increasing text size in a batch file
Hi I'm making a program in batch and I need the text to be bigger without altering anything at the properties menu.
It doesn't matter if it's an external command or pure batch, anything works.
Thanks
It doesn't matter if it's an external command or pure batch, anything works.
Thanks
- 07 Dec 2022 21:08
- Forum: DOS Batch Forum
- Topic: This is really stupid but
- Replies: 1
- Views: 7433
This is really stupid but
Is it possible to send a notification to a totally different computer in some way with batch?
This is probably seeming pretty ridiculous but just like some way to detect that something triggered in the batch file on the other computer
This is probably seeming pretty ridiculous but just like some way to detect that something triggered in the batch file on the other computer
- 07 Dec 2022 19:40
- Forum: DOS Batch Forum
- Topic: This is really stupid but
- Replies: 1
- Views: 7167
This is really stupid but
Is it possible to send a notification to a totally different computer in some way with batch?
This is probably seeming pretty ridiculous but just like some way to detect that something triggered in the batch file on the other computer
This is probably seeming pretty ridiculous but just like some way to detect that something triggered in the batch file on the other computer
- 07 Dec 2022 19:35
- Forum: DOS Batch Forum
- Topic: Maze game questions
- Replies: 3
- Views: 9221
Re: Maze game questions
thanks I was able to make it
- 03 Dec 2022 13:22
- Forum: DOS Batch Forum
- Topic: Maze game questions
- Replies: 3
- Views: 9221
Maze game questions
Hello. I've got a maze game that I'm trying to make. I want it to have collision, an array of 10 maze "rooms" that the file can procedurally generate, and a monster that moves by itself. I've got the prodecurally generated part down (probably), and collision will take a long time but it's possible, ...
- 06 Sep 2021 06:14
- Forum: DOS Batch Forum
- Topic: How to return ascii value in 'bg _Kbd'
- Replies: 9
- Views: 8513
Re: How to return ascii value in 'bg _Kbd'
@aGerman & @penpen
Ah, thank you for explaining this to me.
Ah, thank you for explaining this to me.
- 05 Sep 2021 11:03
- Forum: DOS Batch Forum
- Topic: How to return ascii value in 'bg _Kbd'
- Replies: 9
- Views: 8513
Re: How to return ascii value in 'bg _Kbd'
@aGerman I have. On this post (https://www.dostips.com/forum/viewtopic.php?t=4094) it states there is an option called "_Kbd" to wait until a key was pressed. @penpen The reason I'm using _Kbd is to wait 3 seconds to give you time to press a key, The issue with Kbd is you have to press a key instead...
- 05 Sep 2021 06:38
- Forum: DOS Batch Forum
- Topic: How to return ascii value in 'bg _Kbd'
- Replies: 9
- Views: 8513
Re: How to return ascii value in 'bg _Kbd'
@T3RRY Well, I have tried this code which stores the ERRORLEVEL in a different variable, but it still returns 0. @echo off echo Press any key. bg.exe _Kbd set key=%ERRORLEVEL% timeout 3 /nobreak >nul echo %key% pause exit I've also tried 'bg sleep 3000' instead of timeout and it still doesn't work A...
- 04 Sep 2021 17:49
- Forum: DOS Batch Forum
- Topic: How to make a custom mouse cursor in batch?
- Replies: 16
- Views: 13968
Re: How to make a custom mouse cursor in batch?
@aGerman
Wow!! Thank you so much, you saved me alot of time!
Wow!! Thank you so much, you saved me alot of time!
- 04 Sep 2021 17:47
- Forum: DOS Batch Forum
- Topic: How to return ascii value in 'bg _Kbd'
- Replies: 9
- Views: 8513
How to return ascii value in 'bg _Kbd'
I'm using BG.EXE 2.5 by @carlos on Windows 10
My code is
But when I press a key, it doesn't return a value in ERRORLEVEL, instead 0.
How do I fix this?
My code is
Code: Select all
@echo off
echo Press any key.
bg.exe _Kbd
timeout 3 /nobreak >nul
echo %ERRORLEVEL%
pause
exit
How do I fix this?
- 28 Aug 2021 09:20
- Forum: DOS Batch Forum
- Topic: How to make a custom mouse cursor in batch?
- Replies: 16
- Views: 13968
Re: How to make a custom mouse cursor in batch?
@ShadowThief
Well, are there any tricks in the WIN32 api or C++ for this?
Again, I can't code in C++ or use the Win32 Api.
Well, are there any tricks in the WIN32 api or C++ for this?
Again, I can't code in C++ or use the Win32 Api.
- 21 Aug 2021 13:15
- Forum: DOS Batch Forum
- Topic: How to make a custom mouse cursor in batch?
- Replies: 16
- Views: 13968
Re: How to make a custom mouse cursor in batch?
Well, I'm dumb as a rock when it comes to Win32 API and programming
Are there any currently published external commands to accomplish this?
Are there any currently published external commands to accomplish this?
- 21 Aug 2021 11:44
- Forum: DOS Batch Forum
- Topic: How to make a custom mouse cursor in batch?
- Replies: 16
- Views: 13968
Re: How to make a custom mouse cursor in batch?
@aGerman
I mean a mouse cursor as shown in this clip:
https://streamable.com/mqhntk
Do you know how I can get this?
If so, it would be very much appreciated!
I mean a mouse cursor as shown in this clip:
https://streamable.com/mqhntk
Do you know how I can get this?
If so, it would be very much appreciated!