Would there be any sort of code that-
1 Downloads a picture from the internet
2 Displays it in full screen
Just asking...
Search found 16 matches
- 12 Mar 2010 21:55
- Forum: DOS Batch Forum
- Topic: Unusual? Script.
- Replies: 2
- Views: 4930
- 06 Mar 2010 19:46
- Forum: DOS Batch Forum
- Topic: When m key pressed, goto
- Replies: 3
- Views: 5851
Re: When m key pressed, goto
@echo off
cls
:menu
echo Hello
if %password%==password (
doing something and looping
if m key pressed goto menu
)
Something like above.
"Is choice.exe available for you?"
Yes, yes it is.
cls
:menu
echo Hello
if %password%==password (
doing something and looping
if m key pressed goto menu
)
Something like above.
"Is choice.exe available for you?"
Yes, yes it is.
- 06 Mar 2010 13:36
- Forum: DOS Batch Forum
- Topic: When m key pressed, goto
- Replies: 3
- Views: 5851
When m key pressed, goto
I really want a script that when you press the m key, it goes to a certain place in the BAT script.
- 24 Feb 2010 16:23
- Forum: DOS Batch Forum
- Topic: If specific text found in file, del file
- Replies: 3
- Views: 4747
Re: If specific text found in file, del file
could you do *.* instead of file.txt? would that work?I'ma go find out.
- 23 Feb 2010 20:54
- Forum: DOS Batch Forum
- Topic: If specific text found in file, del file
- Replies: 3
- Views: 4747
If specific text found in file, del file
I need a code that would detect a specific text in a file, and if that text is found, it be deleted.
Would anyone happen to know such a code?
Would anyone happen to know such a code?
- 19 Feb 2010 00:04
- Forum: DOS Batch Forum
- Topic: editing a text file
- Replies: 2
- Views: 4491
Re: editing a text file
im also new to coding, but if you want to edit a text file, all i have for a solution is: @echo off cls del TXTFILENAME.txt echo. copy C:\Data\User\Work\dir1 *.adm F:\admin > TXTFILENAME.txt echo. copy C:\Data\User1\Work1\dir1 *.adm F:\admin > TXTFILENAME.txt ping localhost -n 2 >nul exit
- 12 Feb 2010 17:18
- Forum: DOS Batch Forum
- Topic: On Exit Do Command
- Replies: 18
- Views: 21142
Re: On Exit Do Command
When You Press ENTER it makes a noise.Also ; or , or ] etc...
- 12 Feb 2010 15:11
- Forum: DOS Batch Forum
- Topic: On Exit Do Command
- Replies: 18
- Views: 21142
Re: On Exit Do Command
Ok All those codes are Awesome
But i was wondering, how to you make sounds like you did with the keyboard batch?
I would really love that kind of code.
But i was wondering, how to you make sounds like you did with the keyboard batch?
I would really love that kind of code.
- 08 Feb 2010 17:59
- Forum: DOS Batch Forum
- Topic: On Exit Do Command
- Replies: 18
- Views: 21142
Re: On Exit Do Command
Because, as my name states, i am a .bat beginner and i want to know all the code i can possibly learn so i can become an expert.
- 08 Feb 2010 16:39
- Forum: DOS Batch Forum
- Topic: On Exit Do Command
- Replies: 18
- Views: 21142
Re: On Exit Do Command
Can you disable the red X at least?
- 07 Feb 2010 20:32
- Forum: DOS Batch Forum
- Topic: On Exit Do Command
- Replies: 18
- Views: 21142
On Exit Do Command
Is there any code that does a command when the executor closes the .bat file with the red X?If so, PLEASE post it below!
- 29 Jan 2010 20:54
- Forum: DOS Batch Forum
- Topic: Windows 7 "If Exist" Error.
- Replies: 4
- Views: 9330
Re: Windows 7 "If Exist" Error.
Thank you So Much!
You are so Helpful!
~BAT Beginner
You are so Helpful!
~BAT Beginner
- 29 Jan 2010 17:50
- Forum: DOS Batch Forum
- Topic: Windows 7 "If Exist" Error.
- Replies: 4
- Views: 9330
Re: Windows 7 "If Exist" Error.
Code: Select all
@echo off
if exist help.txt
goto yes
if not exist help.txt
goto no
:yes
Echo You Do have help.txt in this folder.
pause
:no
Echo You Do not have help.txt in this folder.
pause
- 29 Jan 2010 17:45
- Forum: DOS Batch Forum
- Topic: Need a small code made for me
- Replies: 7
- Views: 8605
Re: Need a small code made for me
@echo off set tries=6 :top cls set /a tries=%tries% -1 if %tries%==0 ( goto penalty ) Echo You have %tries% attempts left. Echo Please enter your password to proceed set /p password= if %password%==PasswordGoesHere ( echo Correct! pause exit ) else ( goto top ) goto top :penalty echo You must wait ...
- 29 Jan 2010 17:29
- Forum: DOS Batch Forum
- Topic: Windows 7 "If Exist" Error.
- Replies: 4
- Views: 9330
Windows 7 "If Exist" Error.
I try using
if exist
or
if not exist
on my new Win7 64-bit computer.
Unfortunently, I think they changed the code up, and I really need the code for If Exist in Windows 7 batch Files.
~BAT Beginner
if exist
or
if not exist
on my new Win7 64-bit computer.
Unfortunently, I think they changed the code up, and I really need the code for If Exist in Windows 7 batch Files.
~BAT Beginner