Search found 26 matches

by dwngrt
06 Dec 2013 02:37
Forum: DOS Batch Forum
Topic: Log[in/out] parking system
Replies: 5
Views: 5260

Re: Log[in/out] parking system

Thank you both for the help, it didn't solved the problem though but it surely helped to make it a bit more clean My project buddy had the old version of the parking system on his system that does work, but when i compare them i see (appart from some new menus) nothing new. It confuses me sooooooo b...
by dwngrt
05 Dec 2013 15:58
Forum: DOS Batch Forum
Topic: Log[in/out] parking system
Replies: 5
Views: 5260

Log[in/out] parking system

Hello there dear people, I am currently working on this project for college, its a parking-lot system (simulating the situation). It worked perfectly for quiet some time now, but sadly today i found my script dead (sort of)... the problem is the following: After "scanning" the user pass, i...
by dwngrt
02 Dec 2013 13:27
Forum: DOS Batch Forum
Topic: text msg encrypter
Replies: 5
Views: 5795

text msg encrypter

Hello dear people So i was washing dishes and suddenly i thought of this "msg encrypter"... i though it would be doable but i seem to fail at getting my idea to work, and it makes me very upset XD so here is the code and yeah the idea is just to output a different alphabet. The problem is ...
by dwngrt
28 Nov 2013 05:42
Forum: DOS Batch Forum
Topic: Non showing user input [Solved]
Replies: 3
Views: 3842

Re: Non showing user input

Thank you for the link ^^ it's exactly what i was looking for :D
by dwngrt
27 Nov 2013 04:28
Forum: DOS Batch Forum
Topic: Non showing user input [Solved]
Replies: 3
Views: 3842

Non showing user input [Solved]

Hello guys, i'm working on a login system but i want to prevent the user input for the password to be hiden: Username: username Password: Something like that Though i tried a couple of things that seemed to work for some people, but sadly these solutions whont work on a 64-Bit system If anyone has a...
by dwngrt
14 Nov 2013 03:40
Forum: DOS Batch Forum
Topic: Calculator
Replies: 12
Views: 10015

Re: Calculator

Great man, you totally should keep on playing around with batch if you enjoy it much ^_^ you should add something like this to make it a bit more advanced and more useful for different sums set i= set /p i=[+ - / X] so then you can do something like %value% %i% %value2% i dunno how calculating exact...
by dwngrt
08 Nov 2013 06:25
Forum: DOS Batch Forum
Topic: [solved] Set file size as Variable
Replies: 3
Views: 3354

Re: [solved] Set file size as Variable

Thank you peepz for the great replies, i got it working but on another way .-. I'l give a short explanation on how i achieved what i needed for those who might concern My plan was to make my chat reader refresh when new changes where made to the chat.txt file instead of a refresh interval of 2 pings...
by dwngrt
08 Nov 2013 02:54
Forum: DOS Batch Forum
Topic: [solved] Set file size as Variable
Replies: 3
Views: 3354

[solved] Set file size as Variable

Hello again peepz ^^ i am still fine-tuning my LAN chat, what i got as refresh in the reader is nothing more then a ping loacalhost -n 2 >NUL but this makes the chat sort of blink what can be quiet annoying when working with 2 screens and the blinking chat at the second screen. So i has this idea to...
by dwngrt
07 Nov 2013 07:36
Forum: DOS Batch Forum
Topic: [solved] LAN chat /PM function
Replies: 2
Views: 2697

Re: [solved] LAN chat /PM function

Thsnk you foxidrive, it did work :D you made my day ^^
by dwngrt
07 Nov 2013 06:26
Forum: DOS Batch Forum
Topic: [solved] LAN chat /PM function
Replies: 2
Views: 2697

[solved] LAN chat /PM function

Hello dear people, So since a while we (IT students) are using this batch chat for LAN communication trough the building. The source is pretty big so i whon't post that on here, but i am working on a /PM function. Here is the idea i got: set C= set /p C=[msg]: if "%C%"=="/pm" got...
by dwngrt
24 Oct 2013 05:48
Forum: DOS Batch Forum
Topic: LAN game for during internship
Replies: 4
Views: 4759

Re: LAN game for during internship

:( as soon as i start the script, it immediately closes again (we all know this i bet :P ) and it goes to fast for me to read where the problem occurs, i added a lot of Pauses in the script but it doesn't help :(
by dwngrt
24 Oct 2013 03:38
Forum: DOS Batch Forum
Topic: LAN game for during internship
Replies: 4
Views: 4759

LAN game for during internship

Hello dear people again, i am back with a new question I want to create something like this: @echo off && cls && title Guess the number [MP] Setlocal EnableDelayedExpansion :first if %user1%==%username% goto login if %user2%==%username% goto login if else echo %username%>>gusers.txt ...
by dwngrt
21 Oct 2013 05:16
Forum: DOS Batch Forum
Topic: "Just in time"
Replies: 11
Views: 9308

Re: "Just in time"

WOOHOO i got it to work :D
thank you all for you're help!
here is the working code :3

Code: Select all

@echo off
Setlocal EnableDelayedExpansion
:1
cls
echo %time%
echo msg will be send @ 09:05
if "%time:~0,5%"=="13:16" msg * pauze pik
ping localhost -n 2 >NUL
goto 1
by dwngrt
21 Oct 2013 05:15
Forum: DOS Batch Forum
Topic: "Just in time"
Replies: 11
Views: 9308

Re: "Just in time"

nopes we are using the europe time (24H)
by dwngrt
21 Oct 2013 01:45
Forum: DOS Batch Forum
Topic: "Just in time"
Replies: 11
Views: 9308

Re: "Just in time"

I tested various ways, 09:05 doesn't work, same with 9:05. @Batch Artist: Both way's are fine, but a pop-up would be best in this situation. But i think it should be possible because the IF fucntion works (as it should on every windows OS) and since these are XP system's we are working on here the M...