Category Archives: Visual Basic 6 (VB6)

AllowZeroLength

All fields in the selected table are processed and the AllowZeroLength property of the fields are set to either True or False, depending on the Status given as the finaal parameter The function returns a boolean value that can be used by the user to determin other operations. Original Author: Killcrazy Inputs strDatabase = Full database pathstrTableName = Name… Read More »

Check your Outlook Inbox for new messages

Checks you Microsoft Outlook Inbox for new Mail Items. Original Author: Tim Ford Assumptions Need to set “References” to Microsoft Outlook. Returns The number of new messages Code Dim objOutlook As Outlook.ApplicationDim objMapiName As Outlook.NameSpaceDim intCountUnRead As IntegerPrivate Sub Check_Mail_Click()Set objOutlook = New Outlook.ApplicationSet objMapiName = objOutlook.GetNamespace(“MAPI”) For I = 1 To objMapiName.GetDefaultFolder(olFolderInbox).UnReadItemCount   intCountUnRead = intCountUnRead + 1 Next… Read More »

Search the Internet with 8 common search engines!!

Search the internet for web pages or files from your VB App.8 common search engines:AltaVista, Excite, HotBot, Infoseek, Lycos, Yahoo, SoftSeek, AudioFindAn easy to use function.You can add as many Search Engines to the Search-engine list as you want, this list contains 8 search-engines. One of my lists contain 24 common search-engines.Use like this:SearchTheWeb Inputbox(“Enter search-words:”,””,””), wAltaVista Original… Read More »

CurUserName

Get the current username from Windows Original Author: MAGiC MANiAC^mTo Inputs Dim sStr1$sStr1 = CurUserName() Returns ( The current username from Windows )sStr1 = “MAGiC MANiAC^mTo” Code ‘ Get the current username from Windows’ Coded By MAGiC MANiAC^mTo’ More Examples At: http://home.kabelfoon.nl/~mto/’Declare Function GetUserName Lib “advapi32.dll” Alias “GetUserNameA” _ (ByVal lpBuffer As String, nSize As Long) As LongFunction CurUserName$()Dim… Read More »

Connect, Disconnect Networks Drives ( EASILY )

Connects and Disconnects Network Drives from your System Original Author: MASTER VB PROGRAMMER API Declarations Declare Function WNetConnectionDialog Lib “mpr.dll” (ByVal hwnd As Long, ByVal dwType As Long) As LongDeclare Function WNetDisconnectDialog Lib “mpr.dll” (ByVal hwnd As Long, ByVal dwType As Long) As LongPublic Const RESOURCETYPE_DISK = &H1 Code Private Sub cmdConnect_Click()Dim x As LongIf Index = 0 Thenx… Read More »

Place a Progress Bar in a Status Bar

Places a Progress Bar in a Status Bar, with Windows Common Controls 6, without any third party OCXs or API. Original Author: xsteinberger Assumptions The progress bar must have it’s Appearance property set to 0-ccFlat and its BorderStyle set to 0-ccNone, it may be located anywhere on the form. Code Private Sub Form_Paint()Dim WidthOfBorder As SingleScaleMode = vbTwipsWidthOfBorder =… Read More »

Crypt200.dll

Text base file or string encryption/decryption. All the encryption/decryption can be call by the external program through the DLL. Original Author: Chris.C Assumptions Read the attached help file. Attachments File Uploaded Size CODE_UPLOAD33492112000.zip 9/3/2020 3:45:00 PM 22327

Guest Book CGI

Contains two CGI VB projects that implement a Basic Guest Book Also contains a short tutorialon how CGI works in VB. Unless you are familiar with CGI and VB Please read CGIinfo.docbefore you jump to the code. Original Author: Jack Rizzo Inputs See code and documentation Assumptions A basic understanding of HTML Returns See code and documentation Side Effects… Read More »

An Adventure : Break my encryption program!!!

The best encryption program I ever saw on the internet. You write text and password(ALL characters are allowed) and then you save it to an encrypted file. This is VERY GOOD protection for files and it comes with a form of (encrypted)file manager.***BONUS*** for SUPER skill programmers : I added a file called trythis.txt. Try to decrypt it!!!THIS… Read More »