[VB6] DirectX 11 for VB6 1.0 Type Library
This might be useful to someone: https://github.com/wqweto/VBD3D11 The repo includes a port of Beginner Direct3D11 Programming by kevinmoran. This is a screencast from the final 10. Blinn-Phong...
View Article[VB6] Convert a picture to PNG byte-array in memory
This WIA sample converts an StdPicture to a PNG byte-array without using any temporary disk storage. Shows how to use IPicture.SaveAsFile method with plain ADODB.Stream (no CreateStreamOnHGlobal API...
View Article[VB6] VBTixyLand Control
https://github.com/wqweto/VBTixyLand This is a remake of https://tixy.land/ This is using IActiveScript without typelib to host the expressions evaluator in Chakra JS engine. I plan on using smaller...
View ArticlePaint PNGs via DrawIconEx()
Use WIA 2.0 and an ImageList to load a PNG file as a StdPicture. Then draw using DrawIconEx(), which seems to hold the alchemy here. Code: Option Explicit Private Const WIN32_NULL As Long = 0 Private...
View ArticleVB6 Implementing Hierarchies via multiple Interfaces
This is an implementation of the following schema: Leaving out "Faculty" (and the Nodes below "Faculty")... So, the deepest Hierarchy-Structure in the Demo is: CommunityMember (implementing no...
View ArticlevbLibCurl
Did a little more work around Jeffrey Phillips 2005 vblibcurl - initLib() to find/load C dll dependencies on the fly from different paths - removed tlb requirements (all enums covered but not all api...
View Article(VB6) Replicate control interface or encapsulate control into UserControl
This a tool intended to ease the work of recreating the interface of a control. It creates a *.ctl file with all the basic code. It has two options: 1) Encapsulate the control into the UserControl 2)...
View ArticleVB6 Unicode-capable ADO-DataBinding-Control
Not sure, whether some of you have run into this, but the MS-ADODC-Control does not support Unicode when linked to Control-Bindings. So the 3 Binding-Controls in this Demo can be seen as an...
View ArticlePDFAssist, tool adding context menu to Explorer to split, merge... PDF
I need to split and merge PDF very often, and I haven't found any easy and quick product to do that. All the applications I've tested are heavy to load, or take several clisk and time to do the job I...
View ArticleEMail validator (MX, and existing email)
I had to validate several thousand of emails, and as quickly as possible. I couldn't find anything on the internet that was free and easy to use. So I wrote a small program that validates emails (you...
View ArticleSend easily SMS with your mobile, 1 by 1 or per batch
Sometimes I need to send quite a lot of SMS. You have 2 options : - Use online web services - Use your mobile Using your mobile is cheaper. I spent a lot of time to find the best solution and this...
View ArticleVB6 (RC6) Slider-Widget with Auto-Vert/Horz-Switching
Just a simple Demo, which shows an efficient Slider-Control implementation. (about 70 Lines of code in cwSlider). Also included is a Demonstration for "visual inheritance" (of cwSlider in...
View ArticleAnother json solution written for VB6
The code below has two classes, a JsonArray and a JsonObject, so we can make json objects starting from an object or an array. Parser included in both objects. Also the parser isn't recursive. The...
View ArticleSqLite3 Win10 Demo - Using winsqlite3.dll
I found some work about the using of winsqlite3.dll, in VBA for Excel, and was not completed. First I did some changes for using it in VB6. I did some checks and found some errors i the old...
View Articlehey. i uploaded a new power programing langugae which can compile vb6 projects
its here https://github.com/VisualCodeBase/CodeBase and here another thread https://www.vbforums.com/showthread....visual-basic-6 for this package to work well you also need MinGW...
View ArticleProperty Bag alternative - Data Bag
Property Bag alternative - Data Bag Class This is an alternative to Property Bag class. It supports all variable types except vbObject, vbDataObject and vbUserDefinedType. (For the vbVariant , it now...
View ArticleProperty Bag alternative - Data Bag Version 2
Property Bag alternative - Data Bag Version 2 Class This is an alternative to Property Bag class. It supports all variable types except vbObject, vbDataObject and vbUserDefinedType. (For the vbVariant...
View ArticleStop Watch Demo
This is my attempt at a stopwatch. Its not perfect, but seems to work okay. Looks good though. Any improvements/ suggestions you make will be appreciated.Attachment 179503Attachment 179504 yokesee...
View ArticleMake Pallette from Picture
Makes a 16 x 16 color palette from a picture you load. DISCLAIMER: it may not catch all colors because of the way I take the samples. Maybe someone can come up with a better way .update to code....
View ArticleData Bag Version 2 with JSON support
Property Bag alternative - Data Bag Version 2 Class This is an alternative to Property Bag class. It supports all variable types except vbObject, vbDataObject and vbUserDefinedType. (For the vbVariant...
View Article