Results for "Category: Miscellaneous"
A cool graphics!
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.
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
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.
The GOLD Parser is a new, free parser generator that you can use to develop your own compilers and emulators. It 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. NEW! The source code for the GOLD Parser Engine is finally available to download. The zip file contains the Visual Basic source code used to implement the ActiveX Engine. In other words, this code includes the DFA and LALR algorithms. In the future, the source will be ported to as many programming languages as possible. If you would like to port the code to another language, your work will be deeply appreciated. The parse tree sample project, I posted on Planet Source Code a couple weeks ago, is included with this download. This is a simple project which loads a Compiled Grammar Table file and draws a parse tree for a given input string. The project parses an example grammar called "Simple". To download the GOLD Parser Builder, please visit http://www.DevinCook.com/GOLDParser Enjoy, and happy programming!
ENTERTAINMENT
This example shows you how to make a form minimize into the system tray. This code is easy to understand and isnt big.
Keeps controls on the form proportional to form in both size and position.
This program creates a GUID, a unique 128-bit integer used for CLSIDs and interface identifiers.The idea of a GUID is that no two machines can ever generate the same GUID value twice. This is achieved by using a combination of the current time, your machine's Media Access Control (MAC) address (a unique number built into all network cards) if it has one, and other routines.
This program uses Api calls to get the current free physical memory, then both prints and shows you graphically the data. The project uses a borderless form so you can move it around with a simple mouse click.
An easy code - It will put a shadow behind the control which is currently focussed and will loose the shadow when the control has lost focus.
This example will show you how to select a control array of labels! (Ideal for custom ListBox's)
i was bored so i made a clone of msn messenger of course i didnt put any controls in it butit is pretty close to the real thing
This is version 2.0 of the best tool a programmer needs for making good software! It has tons of great subs/functions! Recently added - internet functions, sound functions!
This code can getdata and storedata to your modem like store the numbers on modem memory.Also has a speed dial and lets you know if the number you dialed is busy!
This article explains, with source, how to build a C++ DLL that exports functions that can be called from Visual Basic and other "C" DLL compatable programs.
This article is based on Vbmew's "make 7 byte .exes" (http://www.1cplusplusstreet.com/vb/scripts/ShowCode.asp?txtCodeId=2221&lngWId=3) His article perked my interest in the Assembly language, so I went out and did some research. This article is a very brief primer on assembler and machine code.