Tar, tar.gz, tar.bz2 - Create/Extract
Wrapper for Yoshioka Tsuneo's open source C tar32.dll http://openlab.ring.gr.jp/tsuneo/tar32/index-e.html Code: TAR32.DLL is a compression and archive library. This library can...
View ArticleClosing File Select Dialog
closing a dialog window called from a process can have problems as the code will stop running while the dialog is open a simple solution is a second exe file to find and close the dialog compile this...
View ArticleIncrease Stack Size in a Vb6 exe
I want to share my method to increase stack suze for VB6. (I need that for M2000 Interpreter, so now I can calll 14500 times the same function...in m2000 (so more in vb6 inside)) I made a bat file, and...
View Articleenable / disable backspace
I guys ..... plz solve my prob. I have a textbox .... and in text change event i put following code : Code: If Len(Trim(txtTyping.Text)) > 0 Then     If KeyAscii = 8 Then       If...
View Article[VB6] Code Snippet: View shortcut path w/variables unexpanded:...
Shortcuts are actually far more complex than most people realize even after dealing with the IShellLink interface. The really technical bits are hidden behind a whole other interface:...
View Article[VB6] Code Snippet: Make your shortcuts request elevation with...
This is related to my other recent post on this interface, [VB6] Code Snippet: View shortcut path w/variables unexpanded: IShellLinkDataList. Making shortcuts to your program for Run As Administrator...
View Article[VB6][vbRichClient] Slither-like Game
Hi, on free time just for fun I wrote this Slither-Like Game Enjoy! I don't know how to play Multiple sounds at same time. (I mean to play even same sound with a slight delay) I found a Module:...
View ArticleGetting OS, Ram, CPU information
Over the years I have used many methods for getting the above information. None have been entirely satisfactory or involved long code. Recently I came across the WMI classes that are part of all...
View Article[VB6] Code Snippet: Load Language Specific resource String. FindResourceEx
This came up in another thread. A lot of declarations out there for FindResourceEx for VB6 aren't too accurate, probably a relic of people still using APIViewer or the like. FindStringResourceEx() was...
View ArticleVB6: Windows 10 Known Folders / SHGetKnownFolderPath
Download the bas module here: basKnownFolders.bas In Windows XP, the recommended practice to find special folders was to call SHGetFolderPath(), but this was deprecated starting in Windows Vista. From...
View ArticleVB6 RC5-CoreAudio-Demo
Here a small CoreAudio-Example, based on the appropriate abstraction-Classes of the RichClient. (as mentioned and requested in this thread): http://www.vbforums.com/showthread.p...ther-like-Game...
View Article[VB6, Vista+] Core Audio Basics
Core Audio Demos A few days ago I released the latest version of my oleexp typelib containing all of the Core Audio interfaces. Here's a demo of some of the basic features. All of the functions shown...
View Article[VB6] Loader, shellcode, without runtime...
Hello everyone! Today i want to show you the quite interesting things. One day i was investigating the PE (portable executable) file format especially EXE. I decided to create a simple loader of the...
View Article[VB6] TrickSound - class for working with audio.
Hi everyone! I've created the new version of my clsTrickSound class that i used in the vocoder project. This class provides the simple interface to playback and capture sound. It doesn't require any...
View ArticleWindowless Buttons
Typically, buttons (or any other control for that matter) in VB6 are windows, who's window function is designed to handle clicks. Each window has its own handle called an hWnd. However, this has some...
View Article[VB6] Palettize - A VB6 Class for converting StdPicture to 8-bit StdPicture
The main reason you might want this is for creating an 8-bit color or grayscale StdPicture from a StdPicture created by loading an image file. An 8-bit color StdPicture may save "smaller" as a BMP file...
View Article[VB6] Full Screen a Form
This class was converted from the Chromium project. CFullScreenHandler.cls Code: ' Chromium full_screen_handler.h/.cc converted to VB6 ' CFullScreenHandler.cls...
View ArticleVB Multithread Library (Generic Multithreader)
This is a Ax-DLL (VBMThread10.DLL) for generic multithreading in VB6. I know that there are plenty of libraries out there providing exactly this. However, I want to share this approach and want to...
View Article[DSWC+RC5] PicSnap WebCam+Cairo Overlay Demo/Experiment
First, let me say that the heavy lifting in this demo has been done by the hard work of Dilettante (DSWC) and Olaf Schmidt (vbRichClient5). I've decided to experiment a bit with Olaf's RC5 widget and...
View ArticleFix for tabstops in the SSTab control
IMHO, the SSTab control is a very solid control, and I get much use out of it. However, it does have one annoying bug. When the TAB keyboard key is used, the SSTab control can pass the focus to...
View Article