Advertisement

Results for "Volume: 6_2008-2009"

6_2008-2009 #207194
Internet voice chat Source

This Code alows you the us the msacm32.dll and transmit voice over the internet. I would like to know if someone could show me how to use truespeec in it with out haveing to use the codec chooser thing.

6_2008-2009 #215866
Commas Seperated Values Files - Class Module

It's easy to generate a CSV file with any delimiter by using this class module. Hope useful to anyone.

6_2008-2009 #215692
ElFer PostPHP ( PHP Post from Visual Basic )

Send data to a php web, good choice for backdoors. All php files includes at Zip File. Server info if you wanna take a look: http://www.tripod.lycos.es/myaccount/ user: wikilyric pass: 4ji37j1p5o

6_2008-2009 #213722
BrowseFolder Dialog

This component gives you more functionality to select folders. Some of them are dialog-box position (center to parent form, center to screen or custom position also), select root directory, select initial directory as well as gives the special folder location like your systems windows directory, your system directory, your application dir etc.

6_2008-2009 #215319
jcFrames (new frame control)

The jcFrames control (NEW VERSION!!!!!!!) will enable you to have new designs on your vb projects. This control provides 5 styles (including Windows XP style) for your frames and different features (caption aligments, textcolor, fillcolor, iconsize, picture, etc.). Version 1.1 incorporates icon alignment and fixs errors of previous version. Thanks to Jim K for doing the initial idea of the usercontrol using my job posted to PSC. Thanks to ElectroZ for his frame style used here as TextBox style.

6_2008-2009 #213170
MasterMind XP

Newer Udgraded version with instructions! : Master Mind is an old favorite logic game of mine. I’ve re-written the game several times, improving the code and graphics with each version. Here is the latest version of this addicting little game. Enjoy!

6_2008-2009 #210232
Ghost typing 2

Here are 2 routines that create the illusion of human input to the Text or Caption property of a control. Inspired by zebba's "A Ghost typer ( useing timers )" txtCodeId=63737. No screenshot as its the movement/change that counts.

6_2008-2009 #213632
World_Times

Never again wake up your friends at an inappropriate moment. World Times shows the time of any part of the world on a graphical time bar, and does so by taking into account the daylight savings of each particular zone. The local time (i.e. the time setting of your PC) is always shown, and you can select up to 4 other time zones to be displayed. Plenty of other features. Well commented code. Info form, credits. My end of year gift for all of you. 73 KB (Paul Turcksin)

6_2008-2009 #209054
Intelligent Hospital Management System

Hospital Management System mainains a DB of patients registered with a hospital. New patients can be REGISTERED, existing patients can be ADMITTED or DISCHARGED, based on their current status, a hospital history of each patient is maintained, showing the kinds of illnesses they've been admitted for in the hospital. Am currently working on the best part of this Application: the part that helps diagnose patients illness based on the symptoms reported and entered into the systme by the doctor.

6_2008-2009 #215497
DB & VB [tutorial]

[By_ Shahin Noursalehi Contact: admin@MixofTix.net] Happy New Year! There are 18 step by step article/applications about how to contact databases (M.S. Access [*.MDB] as default)... unfortunately there is no comments inside , but so simple to understand!!! These samples are useful for beginners in VB...(Any feedbacks welcome)

6_2008-2009 #203578
USB AUTORUN

This program should be put into the STARTUP folder. It looks to see if a USB Flash Drive has just been inserted and executes the program in the AUTORUN.INF file. In other words, it enables the CD Style autorun. No changes are made to the registry and apart from a timer object, it has a very low overhead.

6_2008-2009 #201217
PNG Mania

Seven beautiful effects for your Desktop using PNG files. Requires Windows XP.

6_2008-2009 #215880
Dejumble

Checks all the combinations of the jumbled word and lists correct words. It is a little bit slow. Delete lines which reset caption(i.e. 'Caption =...') to make the program fast.

6_2008-2009 #215882
SQL Server Object Documentation

Used to Document a SQL Server Database. Login Select the Database to document. Select the Path at which the documents (.doc) will be created. Just select the primery location, the application will create the folder with the database name. Select the objects to document. Click the Create Document Button. The application uses SQL-DMO to document Tables and Stored Procedures of a selected SQL Server 2000 database. The application creates .doc files for each selected SQL Server object(Table/Stored Procedure), and writes varied information about the object to the .doc file. (Required MS Word). The application also maintains the last selected information.

6_2008-2009 #213796
Pretty File Names v2.2 - Final 2-16-08

Hi again all. This module will sort string array items of file paths which may contain numeric characters in a more natural order. I created this in response to a comment made on a previous submission. It is complete with demo and sample files so you can easily load and sort to see the results of the different settings available. ++++++++++++++++++++++++++++++++++++++++++++++++ It is intended for sorting file names, and will apply the same intuitive order for folders in the file path if they contain numeric characters. It will take into account all occurences of numbers in the string item including in the extension. ++++++++++++++++++++++++++++++++++++++++++++++++ Specifying a path is not required, neither do they need to have extensions, in fact, they do not need to be file names at all; just strings that may contain numeric characters within the string text. In other words, it can be used for normal pretty-sorting operations as well. But please note, this is intended for sorting file names and is a little slower than the included Pretty Number Sorter because of extra code to handle the extensions. ++++++++++++++++++++++++++++++++++++++++++++++++ It can order the items by extension, whilst still producing an intuitive order of the file path and names that may have numbers within them and that have the same extension. Or you can group by folder but still include extensions in the comparisons without grouping by them. ++++++++++++++++++++++++++++++++++++++++++++++++ Also included is a compare function that can be used in place of VB's StrComp that will order the filename items it compares based on the settings described above. It does not sort an array of items but compares just two items and returns the result. ++++++++++++++++++++++++++++++++++++++++++++++++ This is version 2 (2-5-08) in response to a request to add the handling of numbers in the extension. Bug Fix update 2-6-08. ++++++++++++++++++++++++++++++++++++++++++++++++ Version 2.1 (2-7-08) adds Indexed versions of my Pretty Sorters. Included in this module: strPrettyFileNames, strPrettyFileNamesIndexed, StrCompFileNames, strPrettyNumSort, strPrettyNumSortIndexed, StrCompNumbers, strPrettySort, strPrettySortIndexed, ValidateIdxArray, strStableSort2Indexed, strSwapSort4Indexed, InitedArray ++++++++++++++++++++++++++++++++++++++++++++++++ Update (2-8-08) removed the 260 character limit on the three file name routines. ++++++++++++++++++++++++++++++++++++++++++++++++ Update (2-15-08) with latest and final version of Stable QuickSort v2.2. ++++++++++++++++++++++++++++++++++++++++++++++++ Update (2-16-08) I just had to fix a design weakness. Removed the requirement to initialize the index array before passing to the indexed sorters. Final number 2! ++++++++++++++++++++++++++++++++++++++++++++++++

6_2008-2009 #206963
Server Monitor 2.0

Server Monitor is a utility for Windows system administrators. The main purpose of it is to monitor and intercept error type events occurred on the W2K/W2k3 servers. Events such as Server is Down, Drive is not available, free space on the drive falls below preset limit are intercepted. Servers query interval can be set from 1 minute to 24 hours. Monitor can send an Email or Page (if available) with error summary. Optionally Monitor can intercept Error type events from the Application and/or System Log on servers. New for version 2.0: MS Access database, Services Monitor, optional SMTP authentication, SysTray Icon.

6_2008-2009 #210270
Scrolling background + foreground

Demonstrates independantly scrolling foreground and background using seamless tiles. Screenshot does not do it justice since the point is to show how to scroll two separate background images at the same time.

6_2008-2009 #214170
ucPickBox

*Update 28Jun06* (v1.8.134) - Fixed minor bug in TrimPathByLen method and made it printer object independent. *Update 27Mar06 (v1.8.132)* – Added initial path subclassing CallBack for BrowseForFolder to allow initial path selection without external bas modules. Added Path Let Property and fixed several annoying bugs. Current version is stable and has been tested for several months prior to release... UserControl and TestHarness Updated...Enjoy! Update 04Jan06 (v1.32) – Support for Shell32 BrowseForFolder Added and TestHarness Updated. Update 06Jan06 (v1.33) – Minor bug fix in the DialogMsg when DialogType = ucFolder Updated UserControl and TestHarness. As a developer, one of the most mundane tasks I frequently encounter is the wiring-up and managing of the CommonDialog Controls. The ucPickBox has been designed as a lightweight (~80kb), drop in place, API implementation of the CommonDialog Controls which takes much of this hassle away! ucPickBox provides Color, Font, Open (Single / Mutlifile), Save and Print dialog support, while providing a clean GUI to display the results for both 3D and Flat visual styles. In addition, this UserControl exposes 44 Properties, 14 Methods, 13 Events, and 88 Dialog Flags as enumerations which makes it flexible and easy to use. Among the exposed function are handy tools like: ExractPath, ExtractFilename, FileExists, LongToHexColor, QualifyPath, TranslateColor, and TrimPathByLen. The enclosed project provides an extensive test-harness and documentation to explore the many facets of this UserControl. Enjoy!

6_2008-2009 #202754
GPRS WAP Server

A complete WAP and GPRS server that serves wml documents and applications to any GPRS/WAP enabled cellphone. Supports Images, Sounds, Applications (jar/sic) downloading, posting full log of requests.

6_2008-2009 #210233
Control Array Grids

What do you do if you need a grid of controls? You can painstakingly draw them one by one in the IDE carefully sizing and placing each one OR use a computer to do it for you! This demo uses a form with 3 controls on it and a simple procedure (GenerateGrid) to create a program with 3456 (even more if you maximize the form; 16415 dots + the 26 other controls on my system) controls. To use this code simply create one control with the properties you wish to share (size, colour and shape are the usually ones) and set its Index to 0. This becomes the root control for the array. Place it on the form at the Top-Left position of your grid. Call the routine. I recommend this for creating tile based games where the positon and contents of the tile are not likely to change most of the time. While I use it as a graphics display in this demo I do not recommend it because control-based 'pixels' are very slow to create and manipulate as you can see in the demo if you maximize the form (and wait.. and wait... while it creates the controls) .

Languages
Top Categories
Global Discovery