codetoad.com
  ASP Shopping CartForum & BBS
  - all for $20 from CodeToad Plus!
  
  Home || ASP | ASP.Net | C++/C# | DHTML | HTML | Java | Javascript | Perl | VB | XML || CodeToad Plus! || Forums || RAM 
Search Site:

Home > Visual Basic > Visual Basic Windows API 
Sort by :


1-20 of 105 Visual Basic Windows API sites are shown.

 • BoS: Shell replacement for Windows 98 and 2000    Votes:326   Hits:5367 Rate this site
      write a review | read reviews | report errors |    freevbcode.com More visual_basic articles
This advanced module allows you to call API functions by name without declaring and to return values from them. It uses Assembly Language within VB code to accomplish this task.

 • CDlgEx -- Encapsulates Windows Dialog Functions in    Votes:336   Hits:6499 Rate this site
      write a review | read reviews | report errors |    freevbcode.com More visual_basic articles
This class includes functions for displaying most available Windows dialogs, including those commonly called from VB (e.g., File Open, File Save, Print) and those less commonly called (e.g., the system's Find All Files Dialog).

 • Complete System Tray Icon Application    Votes:317   Hits:8042 Rate this site
      write a review | read reviews | report errors |    freevbcode.com More visual_basic articles
A tray icon application without subclassing, encapsulated into a single form, and with all of the common system tray features.

 • DeskTop3 -- Desktop Icon Manager    Votes:350   Hits:7271 Rate this site
      write a review | read reviews | report errors |    freevbcode.com More visual_basic articles
This is a great sample application for anybody who wants to dive into hard core system and graphics programming.

 • Enumerate All Open Windows (Parent and Children    Votes:341   Hits:8769 Rate this site
      write a review | read reviews | report errors |    freevbcode.com More visual_basic articles
This demonstration application enumerates all parent windows, and each of their child window. It also displays each window's text and allows you to change this text.

 • Event Spy Control: Capture Numerous Events Not Exp    Votes:349   Hits:7168 Rate this site
      write a review | read reviews | report errors |    freevbcode.com More visual_basic articles
Simply add this control to your form and set one property and get a whole gamut of new events.

 • Hotkey Manager (Open Source)    Votes:349   Hits:6366 Rate this site
      write a review | read reviews | report errors |    freevbcode.com More visual_basic articles
This applicaton is designed to manage and implement hotkeys in Windows 95/98/NT. The application uses a number of custom Active X controls and dlls, such as an AOL style button, and custom grids and image list. The source code to all these components is included with this package. Register the compiled versions of each of these components using regsvr32, then open the file called hotkey_manager.vbg

 • Nested File Search With Wildcards using File Syste    Votes:343   Hits:5464 Rate this site
      write a review | read reviews | report errors |    freevbcode.com More visual_basic articles
The attached code shows how to locate files in a directory using the FileSystemObject. You can search just within the specified directory or include all subdirectories in the search.

 • Owner Drawn Label: Prints Text or Graphics on Any    Votes:340   Hits:6103 Rate this site
      write a review | read reviews | report errors |    freevbcode.com More visual_basic articles
I had a situation where I wanted a label below the tabs on a TabStrip control and above a ListView control. The Label control would not work because it falls behind the other controls I could have used a picturebox and printed text on it but I decided to subclass the tabstrip and print directly on it instead. That is what this project shows how to do. You should be able to duplicate this with any control that has a hWnd property. You can use it to print text or draw graphics on different control

 • Place Animated Cursors in Standard Messsageboxes*    Votes:357   Hits:7324 Rate this site
      write a review | read reviews | report errors |    freevbcode.com More visual_basic articles
It is possible to hook messages associated with the standard message box to play around with its restricted form (e.g. change button captions, etc.) This example goes a bit further and allows the changing of the icon from one of the four available to any (static) icon. Also, a routine is included to place an animated icon (*.ani file) on a form, or anything that has a hwnd property. By finding the hwnd of the Msgbox icon in the hook procedure, the animation can be placed in the msgbox, as shown

 • Resource Viewer for .DLLS/.EXES    Votes:354   Hits:5806 Rate this site
      write a review | read reviews | report errors |    freevbcode.com More visual_basic articles
This application allows you to select a .dll or .exe on a hard drive and view or save it's resources (e.g., bitmaps, icons, strings, etc. contained in a resource file associated with the binary file).

 • Shell Objects OCX    Votes:343   Hits:5436 Rate this site
      write a review | read reviews | report errors |    freevbcode.com More visual_basic articles
This OCX uses undocumented functions to provide a Windows Explorer, Folder View, and File List Control. Register the OCX first before using the test client.

 • Shuffle Desktop Icons Using Interprocess Memory Co    Votes:275   Hits:4992 Rate this site
      write a review | read reviews | report errors |    freevbcode.com More visual_basic articles
This application shows you how to send a pointer to a structure filled with data to a window owned by another process. If the windows was owned by your own process, you can use the SendMessage API call for this purpose; but if you try this in communicating with another process, a GPF will occur. In Windows 9x/ME, the workaround it to use File Mapping, because the OS places mapped files into shareable memory space. In NT/2000/XP, files are mapped into the calling process's memory area, so in

 • Simulates keystrokes using keybd_event    Votes:342   Hits:11195 Rate this site
      write a review | read reviews | report errors |    freevbcode.com More visual_basic articles
This class simulates keystrokes using the keybd_event API. If offers two advantages over SendKeys. First, it doesn't cause the num lock light to flicker unless you specifically press the num lock key. Secondly, it's possible to press and hold a key. Sample Usage: Dim keys As New clsKeys Dim bCapsLock As Boolean keys.GetLockStatus bCapsLock, True, True If bCapsLock Then keys.PressKeyVK keyCapsLock End If keys.PressString "Now is the time for all good men to come to " & _ "the aid of their

 • Subclass Keyboard and Mouse Events in Other Applic    Votes:349   Hits:8253 Rate this site
      write a review | read reviews | report errors |    freevbcode.com More visual_basic articles
This application tracks keyboard and mouse-related messages sent to windows in other applications. Version 2.0, release 03/16/01, now works in all versions of Windows.

 • Advanced Shell Class and Dll    Votes:310   Hits:7637 Rate this site
      write a review | read reviews | report errors |    freevbcode.com More visual_basic articles
This .dll providess the AdvShell function -- a replacement of standard Visual Basic function "Shell", and a number of other related properties:

 • Windows Information Viewer    Votes:218   Hits:4382 Rate this site
      write a review | read reviews | report errors |    freevbcode.com More visual_basic articles
ViewWinInfo is a windows information viewer. You can use this sample to find or select an open window, and view information about the window, such as its hwnd, size, and parent window. This project provides numerous demonstrations of the advanced technique of message hooking.

 • Activate/Deactivate the Screen Saver    Votes:267   Hits:4123 Rate this site
      write a review | read reviews | report errors |    freevbcode.com More visual_basic articles
Show you how to Activate/Deactivate the Screen Saver

 • Add an Icon to the System Tray    Votes:241   Hits:5414 Rate this site
      write a review | read reviews | report errors |    freevbcode.com More visual_basic articles
This demo application shows you how to add an icon to the system tray and popup a menu when user clicks the icon.

 • Add Scroll Bars to Controls Purely Through the API    Votes:186   Hits:2737 Rate this site
      write a review | read reviews | report errors |    freevbcode.com More visual_basic articles
Add Scroll Bars to Controls Purely Through the API

            
           
 






CodeToad Experts

Can't find the answer?
Our Site experts are answering questions for free in the CodeToad forums
//








Recent Forum Threads
• Re: Insert Contents of .txt file into a .html page
• Re: Perl regular expression problem.
• Re: Problems in login using WWW::Mechanize
• searching for gd::graph guide
• Re: ARRAY OF HASHMAPS
• Adv. Regexp or Otherwise
• Adv. Regexp or Otherwise
• I need help pleasee! My project is about using I/o Stream
• Help Running VB script in Windows 2003


Recent Articles
ASP GetTempName
Decode and Encode UTF-8
ASP GetFile
ASP FolderExists
ASP FileExists
ASP OpenTextFile
ASP FilesystemObject
ASP CreateFolder
ASP CreateTextFile
Javascript Get Selected Text


© Copyright codetoad.com 2001-2008