Search found 47 matches

by neorobin
04 Oct 2016 02:59
Forum: DOS Batch Forum
Topic: Bézier curve animation symmetric fantasy art
Replies: 18
Views: 30294

Re: Bézier curve animation symmetric fantasy art

@misol101

Thanks!

Now added a symmetric effect version.
by neorobin
02 Oct 2016 03:57
Forum: DOS Batch Forum
Topic: Bézier curve animation symmetric fantasy art
Replies: 18
Views: 30294

Bézier curve animation symmetric fantasy art

Bezier curve symmetric fantasy art tested on 64bit Win7 and 32bit XP. Please edit the 19th line of code, replace the ★ to a real TAB character (ASCII 0x9). http://i1250.photobucket.com/albums/hh536/neorobin/bezier_Symmetric_fantasy_Optimiz_zpscfts5iui.gif http://i1250.photobucket.com/albums/hh536/ne...
by neorobin
22 Sep 2016 11:21
Forum: DOS Batch Forum
Topic: How to move cursor back above, NO WAY @ COLS MOD 8 = 1
Replies: 7
Views: 8075

Re: How to move cursor back above, NO WAY @ COLS MOD 8 = 1

aGerman

Oh, sorry, I tested only on 64bit WIN7

Image
by neorobin
22 Sep 2016 07:18
Forum: DOS Batch Forum
Topic: How to move cursor back above, NO WAY @ COLS MOD 8 = 1
Replies: 7
Views: 8075

How to move cursor back above, NO WAY @ COLS MOD 8 = 1

In cmd window, there has a method to control cursor back above beyond some lines: [Tested on 64bit Win7] echo;<TAB><Backspaces> <TAB> means a only one horizontal tabulation character -- ASCII value is 9. <Backspaces> means some Backspaces -- Backspace is the character that ASCII value is 8. When the...
by neorobin
22 Sep 2016 06:26
Forum: DOS Batch Forum
Topic: A tool for get Virtual-Key Code of the pressed key
Replies: 2
Views: 3222

Re: A tool for get Virtual-Key Code of the pressed key

Thanks for aGerman!

I do not understand those API functions deeply.
I just do some rough code to achieve my purpose.
by neorobin
06 Sep 2016 22:35
Forum: DOS Batch Forum
Topic: A tool for get Virtual-Key Code of the pressed key
Replies: 2
Views: 3222

A tool for get Virtual-Key Code of the pressed key

@echo off setlocal enabledelayedexpansion call :make "%~f0" for /L %%a in () do ( neoGetKey.exe 500 x set "err=!errorlevel!" if !err! equ 255 (echo; time out) else echo; pressed key value is : !err! ) exit :make for /f "delims=:" %%a in ('findstr /n /i "^:BEGIN:ge...
by neorobin
01 Aug 2016 20:36
Forum: DOS Batch Forum
Topic: Seven-segment display clock
Replies: 1
Views: 2645

Seven-segment display clock

- - - - - | | | . | | . | | . | | - - - | | | . | | . | | . | - - - - set "_c="c = !!(x-2)"" set "_b="b = !!(x-5)^&!!(x-6)"" set "_a="a = (!!(x-1) ^& !!(x-4)) ^<^< 1"" set "_d="d = (!!(x-1) ^& !!(x-4) ^& !!(x-7)) ...
by neorobin
13 Nov 2014 06:23
Forum: DOS Batch Forum
Topic: QR code generator for CMD
Replies: 8
Views: 14106

Re: QR code generator for CMD

@Aacini: I'm sure you have seen some, but haven't heard the name "QR code": http://en.wikipedia.org/wiki/QR_code @neorobin: 1) Nice and much work^^. 2) If you try the example from npocmaka_ on xp home 32 bit (Text: "google.com", Error correct Level: "m", Mask Pattern: ...
by neorobin
13 Nov 2014 05:39
Forum: DOS Batch Forum
Topic: QR code generator for CMD
Replies: 8
Views: 14106

Re: QR code generator for CMD

Wonderful But there's no help message and I'm not sure what the letters mean and what are the numbers... And I don't know how to exit the script. But after ctrl+c something goes wrong: Thanks Some of the information displayed running just to observe the progress of the program is running, you can i...
by neorobin
13 Nov 2014 05:16
Forum: DOS Batch Forum
Topic: QR code generator for CMD
Replies: 8
Views: 14106

Re: QR code generator for CMD

Humm, er... For the rest of us that don't know what QR code is, could you post a small description of what your program does and how to use it? If you want not post large explanations, please post a couple links. Thanks... Antonio Thanks, now I posted some links about QR Code on wikipedia and PDF f...
by neorobin
12 Nov 2014 09:18
Forum: DOS Batch Forum
Topic: QR code generator for CMD
Replies: 8
Views: 14106

Re: QR code generator for CMD

REM If you want to rewrite the registry to automatically set the console font size to 8X8 pixels, please un-remark the next line. REM %1 @goto :initCON @echo off & chcp 437 & mode 200, 200 echo; echo; QRCODE.CMD echo; echo; Author neorobin -- Rewritten in CMD Batch @ Nov. 12, 2014 echo; ech...
by neorobin
12 Nov 2014 09:12
Forum: DOS Batch Forum
Topic: QR code generator for CMD
Replies: 8
Views: 14106

QR code generator for CMD

QR code (abbreviated from Quick Response Code) is the trademark for a type of matrix barcode (or two-dimensional barcode) first designed for the automotive industry in Japan. A barcode is a machine-readable optical label that contains information about the item to which it is attached. A QR code us...
by neorobin
19 Oct 2014 10:06
Forum: DOS Batch Forum
Topic: var expansion behavior when var name contain equal signs
Replies: 8
Views: 6028

Re: the problem about set command and variable expansion whi

The variable name may never include an equal sign. The name of the variable ends at the first equal sign; the rest of equal signs are assigned to the variable value. Antonio Maybe "never include an equal sign" is the truth. Or you can use the equal signs as part of the variable name. Unde...
by neorobin
19 Oct 2014 06:57
Forum: DOS Batch Forum
Topic: var expansion behavior when var name contain equal signs
Replies: 8
Views: 6028

Re: the problem about set command and variable expansion whi

Yes
I did not name so long and strange variables.

I'm just curious how to process variable expansion when variable name include equal signs :?: :D
by neorobin
19 Oct 2014 06:15
Forum: DOS Batch Forum
Topic: var expansion behavior when var name contain equal signs
Replies: 8
Views: 6028

var expansion behavior when var name contain equal signs

The following code did some tests: When the tail of the variable name followed by several equal signs For example: $===== _======== Can use the set command to assign such a variable success? If successful assignment, you can use what form do variable expansion? When tested under WIN XP 32bit, the as...