Advertisement

Results for "Volume: 2002ASP"

2002ASP #3862
PlainJane FTP

This is the project source code for a plain and simple FTP proggy that demonstrates the functionality of FTPx control. Simple and slick.

2002ASP #4672
Nosferatu Editor v1.0

This example shows how to edit (cut,paste,copy) a selection of a bitmap using BitBlt function just like Microsoft Photo Editor does. It's really EASY! Take a look to the sample if you don't believe me and don't forget to VOTE FOR ME! Note: comments are in italian...i hadn't enough time to translate them all. Sorry..(VOTE!)

2002ASP #1281
Create Delete User Using Access Database

Add User / Delete User (Users are saved in Access Database) Now Updated. Password is now encrypted.

2002ASP #2536
Realtime Fire

This program simulates fire. I have seen other articles that simulate fire, but this one is extremely fast (76 FPS on my 366) and it uses some neat API calls that most programmers probably have never seen before. There is a small flaw in the program that I have been unable to fix. (look in the readme for a description). Please vote and leave comments, I really want to know what you think of my program. I have commented it heavily so even a beginner should be able to understand what each line does.

2002ASP #1309
ProgressBar in a ListView column

Here you have it the source code for adding a progress bar to a listview control, similar to Napster and iMesh. I have brought the problems down to one and that is the Horizontal Scrollbar so if anyone figures this one lemme know. The code now refreshes of of the WM_PAINT message so it's super effiecient. Happy Coding!

2002ASP #3171
How to use the MS Agent Control for Absolute Beginners (Update)

This tutorial will teach you how to use the MS Agent control. It will show you how to get a character file associated with MS Agent and then how to use it in different ways. Does not require any previous knowledge of using the control. While this tutorial shows you the inns and outs of using the MS Agent control and the various characters that can be associated with it, it also shows every step in an easy to understand manner. Although this extensive tutorial covers nearly all the aspects of using the MS Agent Control, even novice programmers will be able to understand this tutorial and use the example code in their own applications.

2002ASP #1317
Win32 Type Library

This is a complete type library for Windows 95/98/ME. Using this will eliminate the need for having to declare most API functions, types, or constants. Just reference the Type Library in your project. There is also a sample application included to test the type library. Notice in the sample that there are NO Declare or Const statements, but the program uses the API.

2002ASP #1318
Win Key Test

Do you have a borderless form as your main form? Do you know that it won't respond to the Win+M key (Minimize All Windows)? Do you know it doesn't have an icon in the taskbar? Do you know that the user can't click on the taskbar button for your program to minimize it? Well, this is the solution for all of those problems. The code basically creates another form and hides it off screen and makes that form the parent of the main form. This allow you to accomplish all of the above. Just download the code and see.

2002ASP #4450
Group - User - Viewer/Print/Save To File

You will need ADSI 2.5 by Microsoft installed in oder for this program to work. And you must have enough privlages on the domain or server to read the info. SEE PIC! This will work only on Windows NT and Windows 2000 All Versions. This program was made on VB 6 Service Pack 4 This program has 2 main options. 1. View all the users of a selected group. 2. View all groups of a selected user. You can print or save to a file all the information it finds. There are 5 options all togeater. 1. Save to file 2. 3 differant print options. 3. Preview Only any questions or comments email me - [email protected] I am not responsible if anything bad happens useing this program, but nothing should. You are free to use this code anyway you want, this code is free. Have fun. PLEASE VOTE!!!!!!

2002ASP #4669
Inetext

This works with Iexplorer 5 or greater. It will captuer web pages and make the text bigger and will read the page using MsAgent and Merlin. Useful for Blind or learning Challenged

2002ASP #1910
REAL Easy Toggle Buttons

This is the easiest toggle buttons on PSC!!!

2002ASP #2256
TCPConn

This application will allow you to connect to any listening computers IP Address and port number (such as a Web Server/MUD/Router - Anything really!) and allow you to directly communicate to it and view it's output. I use it to control any TCPIP Programmes I develop, so that I don't have to use the client I wrote, but I can use this on ALL my TCPIP Applications. >>

2002ASP #4451
Full FTP Client Beta 3 (95% Done)

This is Beta 3 of the program. It is ONLY 95% done. Everything now works. See Screen Shot. PLEASE VOTE!!!!!!!!!!!!!!!!!!!!! and if you can offer any help in makeing the next beta drop me a line! [email protected] LIKE I SAID THIS CODE IS NOT COMPLETE YET!!! I will put all new betas and the final of the code as it comes along.

2002ASP #4607
MiniForm 1.5

This is a free container control I made because I needed an ocx that I couldn't find searching the Net. I would like to know if you like it (VOTE!), and if it's useful for your projects as I hope. I worked very hard to this project so please, report to me any bug you may encounter, I will correct them. I will add any other feature you ask to me. Main features: -Container: you can scroll controls you placed on Miniform in any direction. -UseAsForm: you can use MiniForm as a form, with title bar 3D and others visual effects! -Gradient: shade your MiniForm control with tons of different random or selected colours! -Use your MiniForm control as a 3D window, or 3D button adding a few lines of code! -Set an icon for the title bar! -Connect your control with an Access database (supports DAO, not yet ADO). -Includes many properties and methods of standard forms!

2002ASP #3172
The Complete Guide to Ms Agent

This tutorial is a sequel to my 'How to use the Ms Agent Control for Absolute Beginners'. This tutorial is VERY EXTENSIVE! This tutorial not only contains all the information that was contained in that tutorial, but also has information on how to use the Ms Agent control in VB Script. This tutorial, is based on the easy to understand interface of my first two tutorials, so even novice programmers will be able to understand it.

2002ASP #2318
Progressbar without OCX/DLL

Make a progressbar in VB without any OCX or DLL's

2002ASP #2319
Make thumbnails with all pictures in a directory! no OCX or DLL's!

Make thumbnails with all picture files in a directory!

2002ASP #4396
String, array and file compression with Zlib.dll

This code has been upgraded in another post. Please look for 'Business-strength compression, encryption and signing (single and public/private keys via CryptoAPI)' on this site. This wrapper class and example program demonstrates the proper use of the Zlib compression dll. Unbelievably, Windows does not provide adequate string/file compression in the API (only decompression of files created with the compress.exe or compact.exe utilities that come with Windows, and their compression is weak by today's standards). No string or array compression support...and having to call an exe to compress a file is far from perfect. To fill this void a group wrote the Zlib.dll utility (included; their web site address is included, too, so you can get the latest version). They used the same code to produce the compression algorithms that are used by the newer PNG picture format. So if you have used PNG you have used Zlib. I have seen the Zlib dll used by several commercial programs, too. It provides fast and compact encryption for byte arrays. This wrapper class extends it to strings and full files, too. Two other postings on planetsourcecode deal with Zlib. One is barely functional and the other only provides the coverted C header files (but is otherwise excellent with many utilities and modules to do other things -- check out "Kira" posted by The_Lung). I found this code on the Zlib web site, and converted it from an ocx to a regular class module to conserve resources. I also moved all the code dealing with file compression into the class where it belonged.

2002ASP #2922
A Quick Way To Handle Errors

This is for all the beginners out there that have problems with their apps making errors. I dont care about votes it's just to help you all out, you advanced guys know this but some of the beginners wont.

2002ASP #1109
Crash your Computer with 1 Line of code

this is a simple way of crashing your windows -computer using the rundll ...

Languages
Top Categories
Global Discovery