Results for "Category: Miscellaneous"
This small program will make your startmenu and taskbar transparent on windows XP and 2000 (you can set a level of transparency 0-255), it can also be compiled and run from a command line e.g. "TransparentTaskbar.exe 180"
A simple listview program that'll start up programs on start or on active internet connection found.
This script allows an admin login with as many admins as you like, and a working news post and delete script with an index.asp to view the news posts. This script can view a certain amount of posts or all of them. Made by Alias Creations. www.AliasCreations.com
This code is a combination of a few great submissions at PSC put together. Needed code that would load/unload a system wide keyboard hook but only show me the keys when a specific application had focus. The example uses Notepad. When a key is pressed only in Notepad the key code will be show as the form caption.
A cool graphics!
This article lists 10 coding habits to remember, they will help you when you program in the future. TRUST ME.
As*embly source, all files are included also a short description of the as*embly language so you can understand the code yourself. You don't have to be an expert as*embly programmer to understand it, because it is fairly easy, and it also shows why VB has slow string manipulation, and other things. Well I will leave it to you to find these reasons.
This is a Messenger server that supports multiple clients, along with the client application. PLEASE VOTE FOR ME!! .. and if you have any questions/comments/suggestions, email me.
This is just a real simple beginner project aimed to help beginners. I made the code as simple as possible with comments. It has stuff from learning to use commands buttons, to common dialogs, to message boxes and much more. If you like this code, please vote. Thanks.
This program doesn't do much (displays memory usage percent) but it does include 3 useful modules. The first one allows you to set a window to always on top by suppling an hWnd value. The second allows you to move a borderless window. The third gets the memory status of the computer. Line by line commented. Please rate on code structure, not application functionality. Thnx!
This tutorial will walk you through the steps of basic FindWindow functions: FindWindow, FindWindowEx, ShowWindow, DestroyWindow, and GetClassName. Please vote, I spent 2 days on this, and for a 14 year old, that is a lot! Thank you!
This Add-in for Visual Basic 6.0 generate a documentation in CHM format directly from code comments. It's possible to generate a technical documentation for ActiveX components or a complete developer documentation, for the management of Visual Basic projects. The Full Auto-Documentation shows how to generate a correct documentation.
Travelling Salesman Problem example
Displays a very very simple digital clock. This code is the simplest way to create a digital clock
This is a Simple text-to-speech program that uses microsoft direct text-to-speech. this example teaches you 1. How to make text-to-speech speek 2. how to alter the pitch and speed of the voice plz keep in mind, this is my first submission
Count how many mdi child forms in a MDI form.
detect various components such as DoesDotNETFrameworkExist, DoesIE6Exist, DoesIISExist, DoesMDAC27Exist, DoesMSSQLServerSP3Exist, DoesSQLServer2kExist, DoesSQLServer2kExistEx, DoesWindows2kSP2Exist, DoesWindows2kSP3Exist, DoesWindows2kSP4Exist, DoesWindowsInstaller2Exist etc.
The best thing to happen to any programmer! This has tons of great & useful subs & functions! It also has a load of cool looking icons in 3 different folders for you to use. The folders are 16x16, 32x32, 48x48! Check it out. Oh, and please leave comments & ratings!
Locate an entry in combo or listbox using API call, rather than looping through all entries.
Unlike other parser generators, the GOLD Parser strives to be a development tool that can be used with numerous programming languages and on multiple platforms while maintaining modern design concepts. Modern bottom-up parsers use a Deterministic Finite Automaton (DFA) for identifying different classes of tokens and a LALR(1) state machine to parse them. The actual LALR(1) and DFA algorithms are easy to implement since they rely on tables to determine actions and state transition. Consequently, it is the computing of these tables that is both time-consuming and complex. The GOLD Parser Builder performs this task; reading from a source grammar outline and then computing the appropriate tables. This information is then saved to a Compiled Grammar Table file which can be, subsequently, loaded by the actual parser engine and used. This is a simple project which loads a Compiled Grammar Table file and draws a parse tree for a given input string. An example grammar called "Simple" is included. You will need to download a copy of the GOLD Parser Engine DLL from http://www.devincook.com/GOLDParser. This module contains the actual parsing algorithms. The source code for the Engine will be released soon (hopefully next month) in Visual Basic. Until then, the DLL is available. Sorry.