Advertisement

Results for "Volume: ASP_Volume2"

ASP_Volume2 #43316
PHP Function: dec2roman()

The PHP Group have made sure to include many number conversion functions (i.e. decbin(), bin2hex(), et cetera) but they forgot to include one extremely important function (well, not that important). They forgot a decimal to Roman numeral converter! I forgive them for such an oversight, and have written a function to accomplish the conversion. Originally released in July 2002, dec2roman() has been recoded (and optimized) from it's primitive ancestor. The original code was built to compliment an outline I built.

ASP_Volume2 #43052
Address Organizer

A nice program to organize your mail addresses. Names are sorted alphabetically. You can add, edit, delete and Print lists or only selected address. A reminder option with a calendar is included. It can reminde you up to 20 days in advance.

ASP_Volume2 #30476
StayOnTop

Keep a form always on top (topmost floating form) in windows 95. Albetski, Allan"

ASP_Volume2 #42611
Browser Snipper

When you run the index page this will collect all infromation about the browser, Operating system and screen resolution etc. And it will post to next page which can be accessed thru php. I think this code will be useful who needs to do professional web page, keeping in mind the resolution and browser support etc etc.

ASP_Volume2 #43166
Storing / Retrieving pictures from database

Hi folks I have searched many sites for storing a picture into a database and retrieve the same. But I got some tutorials when I searched the web. Using the tutorials I have a made one for me. It was implemented using Php and Mysql. I will tell you want is the job of each files. 1). index.php This files links all the files in the project. 2). store.php This does the job of storing the picture into the database. 3). viewadd.php This file shows the entire picture stored in the database. 4). getpicture.php This file actually gets the file from file in the form of picture 5). mdbc.inc.php This is a class file for Mysql feel free to use. I got this over net. Here is the table description Id - > has the picture id Description -> has the picture description bin_data -> picture data filename -> picture file name filetype -> picture file type. Like gif or jpeg etc link -> you can store the link incase if you want to use this for ad exchange showno - > no of time ad show etc clickcount -> no of time the ad being clicked etc Query for the table. CREATE TABLE ads ( id varchar(15), description varchar(255), bin_data LONGBLOB, filename varchar(50), filesize varchar(50), filetype varchar(50), link varchar(255), shownno integer(5), clickcount integer(5), unique(id) ); If you want to see a site where I have implemented please have a look at the site http://www.asksathia.com/ Feel free to change anything in the code. If you developed a better version than this please send me the source code so that I may update myself. It took me much time when commenting the code of ease of understanding. Please vote for me. Regards Imthiaz Rafiq imthiazrafiq@gmx.net Msn id: imthiazrafiq@gmx.net Yahoo id: imthiazrafiq ICQ: 24294947 URL: http://high-flyer.da.ru/

ASP_Volume2 #30477
Use of the Toolbar Control

Short tutorial on how to use the toolbar in VB4/5 32 bit. http://137.56.41.168:2080/VisualBasicSource/vb4toolbar.txt

ASP_Volume2 #43350
Picbase - not just storing and retrieving pics in a database

Picbase Version 2.3 Copyright Cornelius Herzog (cornelius.herzog@gmx.de) 2002 With this code you can store pics in a mysqldatabase. This is a base system on which you can for example construct a clipart gallery in the web (I myself use it to store pics of modells in the web ;-). This script is free, as long its not in commercial use. Then you have to pay. You need a Mysqldatabase, PHP Support and a GD Image Library on your Webspace. Features: - Store pics with informations in a database - Retrieve the pics ... by person/category ... by id ... by search ... show all - Creates thumbnails, to have less traffic - Great javascript popups on the thumbnails - Edit the informations of the pic - Delete entries - Analyze, optimize, repair and check the database - Search for double entries - Protect pics by password Install: You need a database ih which you create with the file database.sql a table. Then you have to set the variables in the include.php. Thats all. Wish u a lot of fun. PS: If you like it, vote for it (you dont vote for me, u vote for the code)

ASP_Volume2 #43010
YCHT Package

This package is used for connecting to the Yahoo! Chat network. A demo (IRC YCHT Gateway) is included to give you a rough idea of how things work. Capable of processing every Yahoo Chat packet known to date. This is most likely a final release, unless if I decide to tidy the code a little. The component has been tested on Delphi 5 and 6 yet may work on other versions. Yahoo!, the Yahoo! logo and other Yahoo! logos and product and service names are trademarks of Yahoo! Inc. Black Widow Development is not endorsed or affiliated in any way, shape or form to Yahoo! Inc.

ASP_Volume2 #30478
Common Dialog

Use commondialog control without ocx ! http://137.56.41.168:2080/VisualBasicSource/vb5commondialognoocx.txt

ASP_Volume2 #43325
Pallindrome Checker

Check to see if a string is a palindrome in only 5 lines of code!

ASP_Volume2 #42909
Get MSN Messenger cached passwords

This little program grabs the encrypted password string from the registry, that is saved when you click the "Remember my name and password in this computer" option in the logon window. Then, the password is decrypted. The code is fully commented, but if you still have questions, send me an email. Please vote for me if you like it :-)

ASP_Volume2 #43816
Word ADDin

This is a sample of how to make a word add in, This also shows how to interface with the current active document as well, like how to add merge fields or document variables. You also see a simple drag drop.

ASP_Volume2 #42910
Use undocumented API call to get cached Windows passwords

This code explains how to call WNetEnumCachePasswords to get windows cached passwords: DUN, NetBios, Internet folders, etc. This function is undocumented, but it is based on a program by Vitas Ramanchuskas. I just transalted it to Object Pascal and commented almost every line. Enjoy, and make a good use of it. And vote for me if you like it :D

ASP_Volume2 #44077
Browse For Folder

A class to display the new style Browse For Folder Dialog with events. The Class includes an option to use the new style dialog (resizable, make new folder, etc), an option to display an edit box in the dialog, an Event that fires when a file/directory is selected (before it's ok'd), the ability to enable/disable the OK button (based on selection), the ability to change the dialog message after the dialog is displayed, ie: on selection of a new file/directory. (Thanks to Chris Merrill for uploading the code upon which this class is based.)

ASP_Volume2 #43972
FTP Sync

This utility will send files/directories to the specified FTP server. Currently EXCLUDE, PURGE and RECURSIVE flags are available. Define your FTP server address, logon credentials and files/directories you want to ftp in settings.xml file. This file is in debug\bin folder, it should be in the same directory as the executable. Solution consists of 2 projects, open FTPAutoBackup.sln and you can run it. Since windows scheduler works well and is far superior to anything I could code myself, I just schedule this to run nightly and my FTP is always current. Tested thoroughly w/8,000 files backups only on PURE-FTPD on SPARC and SERV-U on XP with Unix-style file display. This code contains download ftp functionality as well. All ftp commands/functionality are wrapped in FTPClient project, one of the 2 in the solution, and can be re-used. You can use this code in any way you like, just keep the credits. ezhukovsky@attbi.com

ASP_Volume2 #43124
Windows XP Style Video Capture

Very Cool Windows XP style Form and video capture engine that allows easily capture video from any USB camera(webcam for example). Also used awsome buttons. All components included

ASP_Volume2 #43038
Base Converter

This program was made to show you how to convert number bases easily and efficiently. The program supports binary, octal, decimal, hex, and ascii(base 256). Please vote on my code.

ASP_Volume2 #43039
Transparent Bitmaps

This program shows how to draw transparent bitmaps. It also thoroughly explains the way masks, sprites are created and used with logic to create the transparent bitmap. Please vote on the project.

ASP_Volume2 #40409
Hash table functions

Hash table management by Jerry Coffin, with improvements by HenkJan Wolthuis.

ASP_Volume2 #43290
toString v 1.0 b

Converts easy Array to String value.Class structure.Very helpful.

Languages
Top Categories
Global Discovery