Category Archives: Microsoft

Sounds

Here is what I did to make my PC speaker beepat the frequency and length of time I want,using hardware direct control.It works fine in Win95 and Win98. Not in WinNT. Original Author: Jorge Loubet Assumptions Read comments of Win95IO.dll from SoftCircuits API Declarations In code, as private declarations Code ‘*****************************************************************’  October 17 1999- By Jorge Loubet’  jorgeloubet@yahoo.com’  Durango, Dgo. Mexico.’  Hola amigos… Read More »

Changing Windows Printer w/o using priint dialog

How can I change the printer Windows uses in code without using the print common dialog? How can I change orientation?You can change the printer the VB 3.0 Printer object is pointing to programmatically (without using the common dialogs). Just use the WriteProfileString API call and rewrite the [WINDOWS], DEVICE entry in the WIN.INI file! VB will instantly… Read More »

Launch file and associated program

How do I launch a file in its associated program?The Shell statement unfortunately only supports launching an EXE file directly. If you want to be able to launch, i.e. Microsoft Word by calling a .DOC file only, you can make your VB application launch the associated program with the document using the following method: Original Author: VB FAQ API… Read More »

Access Password Finder (97 and 2000)

*** Updated on 10/18/99 –> See comments below ***This is a handy little routine for retrievingforgotten passwords out of Access97 and 2000.Do not abuse this. This should be used only fordatabases you originally had permissions to andforgot the password. Original Author: Dan Fogelberg Attachments File Uploaded Size CODE_UPLOAD1331.zip 9/3/2020 3:45:00 PM 4951

StopTextBoxFromBeeping

Show how to make a text box not beep but do something else when I hit the Enter key. This code example makes nothing happen, for an extended period of time: Original Author: VB FAQ Code Sub Text1_KeyPress (KeyAscii As Integer) If KeyAscii = 13 Then ’13 is Key_ReturnKeyAscii = 0End If End Sub

AppOnTop

How do I get my application on top?To make your window truly topmost, use the SetWindowPos API call Original Author: VB FAQ Assumptions You can, to make the application stay on top, put the ZOrder method in a Timer event repeatedly called, say, every 1000 milliseconds. This makes a “softer” on-top than other methods, and allows the user to… Read More »

cmdFormatDrive

Format Floppy Disk using API:Here is the code on How to Format Floppy Disk using API. Note — This code can format your Hard Disk as well, so you should be careful!!!! Original Author: Duncan Diep API Declarations Private Declare Function SHFormatDrive Lib “shell32” _(ByVal hwnd As Long, ByVal Drive As Long, ByVal fmtID As Long, _ByVal options As… Read More »

IP Break Out Box

IP Break Out Box is a program that sits between a client program and a server. Once activated it displays every bit of data exchanged between the client and the server. Example: Set the remote host = www.yahoo.com, remote and local port = 80, Then click listen. next open up your web browser and type in the ip… Read More »

access 97 password recovery

Forgot your access 97 password?Never fear this function willhack the access 97 local filepassword Original Author: Tom Pickles Inputs an access 97 file with local password set Assumptions I hope this code will end the commercial password recoverers Returns the password API Declarations Original code translated direct from c snippet by Casper RidleyFrom the c code at http://www.nmrc.org/Turned into… Read More »

Dump_String_To_File

Dumps a string to a file Original Author: Ian Ippolito (psc) Inputs strString–string to dumpstrFile–file to dump to Code Sub Dump_String_To_File (ByVal strString As String, ByVal strFile As String)  Dim fileFile As Integer  fileFile = FreeFile  Open strFile For Output As fileFile    Write #fileFile, strString  Close fileFile  Dim intReturn  On Error Resume Next  intReturn = Shell(“c:appsutility extpad xtpad16.exe ” & strFile, 1)  On Error GoTo 0End Sub