Skip to content

Commit

Permalink
Initial commit
Browse files Browse the repository at this point in the history
  • Loading branch information
wqweto committed Oct 11, 2022
0 parents commit 317346f
Show file tree
Hide file tree
Showing 7 changed files with 1,304 additions and 0 deletions.
41 changes: 41 additions & 0 deletions .gitattributes
Original file line number Diff line number Diff line change
@@ -0,0 +1,41 @@
# Default to binary (no diff)

#* binary

# VB6 source files (show diff + keep CRLF in zip download)

.bas text=auto eol=crlf
.cls text=auto eol=crlf
.ctl text=auto eol=crlf
.dob text=auto eol=crlf
.dsr text=auto eol=crlf
.frm text=auto eol=crlf
.pag text=auto eol=crlf
.vbg text=auto eol=crlf
.vbl text=auto eol=crlf
.vbp text=auto eol=crlf
.vbr text=auto eol=crlf
.vbw text=auto eol=crlf

# Other source files (show diff + LF only in zip download)

.asm text=auto
.asp text=auto
.bat text=auto
.c text=auto
.cpp text=auto
.dsp text=auto
.dsw text=auto
.h text=auto
.idl text=auto
.java text=auto
.js text=auto
.manifest text=auto
.odl text=auto
.php text=auto
.php3 text=auto
.rc text=auto
.sln text=auto
.sql text=auto
.vb text=auto
.vbs text=auto
6 changes: 6 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
*.scc
*.dca
*.oca
*.obj
vb*.tmp
*.vbw
21 changes: 21 additions & 0 deletions LICENSE
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
MIT License

Copyright (c) 2022 Vladimir Vissoultchev

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
12 changes: 12 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
## VbQRCodegen

QR Code generator library for VB6/VBA

### Description

A single file QR Code generator based on https://www.nayuki.io/page/qr-code-generator-library

### Usage

Just add `mdQRCodegen.bas` to your project and call `QRCodegenBarcode` function to retrieve an StdPicture from a text or a byte-array.

Loading

0 comments on commit 317346f

Please sign in to comment.