Search found 9 matches
- 23 Nov 2014 22:24
- Forum: DOS Batch Forum
- Topic: Help needed with building a text encryptor?
- Replies: 18
- Views: 9827
Re: Help needed with building a text encryptor?
Well my program is complete, for now... (Sorry for the late reply) Heres the exe version if you want it: (The most recent update as of today) http://www.mediafire.com/download/6bbmq6mr9480nbq Heres the Batch code: @echo off set attempt=0 set error=NA setlocal ENABLEEXTENSIONS ENABLEDELAYEDEXPANSION ...
- 14 Nov 2014 13:28
- Forum: DOS Batch Forum
- Topic: Help needed with building a text encryptor?
- Replies: 18
- Views: 9827
Re: Help needed with building a text encryptor?
First link that Google found for me. m @echo off set line=supercalifragilisticexpialidocious set num=0 :LOOP call set tmpa=%%line:~%num%,1%%% set /a num+=1 if not "%tmpa%" equ "" ( set rline=%tmpa%%rline% goto LOOP ) echo %rline% pause Wow lol, i never did Google the reversal pa...
- 14 Nov 2014 13:06
- Forum: DOS Batch Forum
- Topic: Help needed with building a text encryptor?
- Replies: 18
- Views: 9827
Re: Help needed with building a text encryptor?
Probably because you are not displaying them. Click on View and Show Symbol. I always have Show End of Line because that will always show you if you have spaces after any line of code. You could also turn on Show White Space and Tab and that would show you where the spaces were. Sometimes I just do...
- 13 Nov 2014 21:35
- Forum: DOS Batch Forum
- Topic: Help needed with building a text encryptor?
- Replies: 18
- Views: 9827
Re: Help needed with building a text encryptor?
I do use notepad++ but i just didnt see the space
- 13 Nov 2014 17:27
- Forum: DOS Batch Forum
- Topic: Help needed with building a text encryptor?
- Replies: 18
- Views: 9827
Re: Help needed with building a text encryptor?
THANKYOU! The was EXACTLY why it was crashing.
- 13 Nov 2014 16:27
- Forum: DOS Batch Forum
- Topic: Help needed with building a text encryptor?
- Replies: 18
- Views: 9827
Re: Help needed with building a text encryptor?
@Echo off setlocal ENABLEEXTENSIONS ENABLEDELAYEDEXPANSION set /P TranslationCode=">>" rem Separate the code in individual letters: set count=0 :nextLetter set "letter=!TranslationCode:~%count%,1!" if "%letter%"=="" goto endLetter set /A count+=1 set L%count%...
- 13 Nov 2014 16:06
- Forum: DOS Batch Forum
- Topic: Help needed with building a text encryptor?
- Replies: 18
- Views: 9827
Re: Help needed with building a text encryptor?
| Example set /P TranslationCode=">>" | TranslationCode=LOVER rem Separate the code in individual letters: | set count=0 | count= 0 :nextLetter | Iteration: 1 2 3 4 5 6 set "letter=!TranslationCode:~%count%,1!" | letter= L O V E R "" if "%letter%" == "&q...
- 12 Nov 2014 23:45
- Forum: DOS Batch Forum
- Topic: Help needed with building a text encryptor?
- Replies: 18
- Views: 9827
Re: Help needed with building a text encryptor?
Thanks for the feedback, i have been coding batch for a while but i still do noob things cause i remember them easier. Also, if you dont understand something in the code, quote the part of the code and i will tell you the reason for it. And about this: Set /p menu=">>" If /I "%menu%&q...
- 12 Nov 2014 20:00
- Forum: DOS Batch Forum
- Topic: Help needed with building a text encryptor?
- Replies: 18
- Views: 9827
Help needed with building a text encryptor?
I have a program that asks for a "Translation Code" Of three Letters or more. It works like this: "Enter your 1st letter" set /p ALetter=">>" Goto ACode%ALetter% :Second "Enter your 2nd letter" set /p BLetter=">>" Goto BCode%BLetter% "Would your...