INI Expert – Manipulate INIFiles like never before

This code can literally do anything you wish with an INI file. Here are a list of the 21 INI functions that I created. These took me a long time to make, so please let me know what you think. A program is included that explains everything completely…from how to use the functions…to an explanation of each variable.GetKeyVal(),… Read More »

Morphex Programming Tools 3.0a

This program is a great example of how to code complicated functions in Microsoft Windows 95/98. With Morphex, you can: remove desktop icons, center forms, place forms OnTop, open Internet URLs, open/close the CD-Rom tray, disable the Key Buttons(Ctrl+Alt+Delete, Alt+Tab, and Windows Key), remove the start button, remove the taskbar, remove the taskbar icons, remove the taskbar clock,… Read More »

MouseWheel

Quick and dirty code to get MouseWheel event information without any ocx, just a few constants and lines of code… Original Author: Jean-Pierre Perriere Assumptions ‘ 1 – Create a new project‘ 2 – Add 3 PictureBox (Picture1, Picture2, Picture3)‘ 3 – Add a TextBox (Text1)‘ 4 – Paste code‘ Run‘ over PictureBox and watch cursors‘ Wheeling moves vertical… Read More »

Get the binary inverse of a string

This code is the equivalence of the bitwise complement C opertator (~), except this only works on strings. I got tired of not having this capability, so I wrote it =) Original Author: Ultimatum Inputs any string Returns the bitwise inverse of the string Side Effects works ONLY on strings Code Public Function BinaryInverse(ByVal szData As String)  Dim szRet As… Read More »

Send SMS message via Http for free

Sends an SMS message to a cell phone for free. It makes use of the ServerXMLHTTP object contained in msxml3.dll. Uses the free German Web service www.billiger-telefonieren.de. The cookie checks of the site are circumvented by doing the cookiehandling explicitely. Therefore this code should work even server-side!Please note that the site still puts some requirement on the send… Read More »

Disable IE Popup Windows

Disables IE popup windows by using an VB Front-end browser and redirecting the popup window to a second invisible webbrowser control. Original Author: Karl J. Sak Code Private Sub Form_Load()’ navigate to a website, I suggest www.aol.comWebBrowser1.Navigate “http://www.aol.com”End subPrivate Sub WebBrowser1_NewWindow2(ppDisp As Object, Cancel As Boolean)’this sets the popup window to another browser control’in which webbrowser2.visible = falseSet ppDisp… Read More »

Drag-dropping, dynamic controll adding

Sorry last entry had no .BAS FILE, SORRY FOLKS… <– UPDATED VERSION –>It demonstrates how to use the drag & drop methods.It also shows you how to dynamically add controls in run time and howto move controls around.The prog lets you create controls and have them snap to a grid. Original Author: Colin Woor Attachments File Uploaded Size CODE_UPLOAD31081282000.zip… Read More »

Lan Chat Program *Full Source & Prog*

Lan Chat 32 is designed to chat with another computer directly. No sever needed! Client/Host in the same program. All you need is the Host computer IP, your IP is shown on the form. Upped by request, Full source and working pprogram included! (Again, this is not originally my code! I Just made it ALOT better than the… Read More »

Message Broadcaster NT Service

This program broadcasts messages to other machines. The message is scrolled horizontally across a thin window at the bottom of the receivers machine. It can be configured as an NT Service or a standard exe. Shows how to implement and NT Service, UDP communications with Winsock, Registry manipulation, System Tray, scrolling text. IMPORTANT! Please read the README file… Read More »

TreeviewFrom/ToFile

This example builds on Srinis example found on www.vb-helper.com.Srinis example loaded data to a treeview from a text file with tabsdenoting indentation.My contribution is the save treeview to file function.It only saves one level of childs, it was all I needed for my other project.Srinis example loads more than one level of childs. I am shure some smallmodifications… Read More »