Advertisement

Results for "Volume: ASP_Volume2"

ASP_Volume2 #35553
User account editor for the "computerized test taker"

This code goes hand in hand with the computerized test taker. It allows people without microsoft access an easier way to edit user passwords, login names, and other things like the persons name and the SSN. I actualy use this more than microsoft access to edit the database because it makes it so easy to add, delete, and change the user accounts. SOON TO COME:a program like this but shows you all the test info such the person's userID, score, testname, and time and date of test taken. Keep your eyes open.

ASP_Volume2 #35554
DirectX8 Engine collision detection Demo

This little demo shows how it easy to create quickly world indoor level with sliding collision detection this is a new version of the NemoX engine

ASP_Volume2 #35555
Change NT user password

This code change the any user password on NT4.0/2000/XP, of course, you need to have administrator permission on the server. You can change the password in only one server, or you can change the password on several servers in a list. This program was made with pure VB code, no Dll's, ActiveX, etc. It take the local computer name (Default) and the current logged user. Please vot for it, and give your feedback.

ASP_Volume2 #35556
MCI Callback Demo

First thing you get from this demo is how to auto repeat media files WITHOUT a timer. It also includes basic MCI functions to play almost all media formats from mp3 to qt (QuickTime). I searched everywhere I knew and couldn't find any example of MCI callback even in advanced MP3 players. so I decided that it worths working on.

ASP_Volume2 #35557
Wizard-Template (XP-Style)

A Template for a XP-Styled Wizard like Microsoft-Products use 'em. Don't found something like this here, so i did my own one. Useable for Installations, PlugIns or (you guess it) Wizards. Key-Features: * Easily add as many steps as you want. * Work with the collected data after every step, at the end of the wizard or both, what you like. * Timer-Controled, not Button-Controled. * Jump between Steps easily * Includes XP-Progressbar by Aki (Just change to a CommonControl-Bar if you don't like it) --- Known Bugs: None. --- If you like it, please vote - If you don't like it, you probably use Linux :D

ASP_Volume2 #35558
Arquivo

After many years recording my documents in Floppy discs, Zip Discs, and CD-R, I felt the necessity to make this program to quickly find the documents that i remembered vacantly only the name. The procedure is very simple: it is enough to select the drive where is the disc to catalogue (can be one entire hard disk) and attribute it a name for the disk label. A file, with the label name and the extension arq, will keep all the necessary information for future searching. Later, when you need to locate where is some document, it is enough to enter the name (or part of it) and the program indicates the reference (disc label) of the disc where this document was recorded. Arquivo, also can print the contents of any catalogued disc. The report is printed for alphabetical order.

ASP_Volume2 #35559
[__A nice Text Effect. Raining Letters__]

A nice Text effect. Letters falling down hitting the ground and being catapulted up again. I tried to comment as much as possible.

ASP_Volume2 #35560
xVNC is a remote desktop viewer without installation on client for nt/xp/2k

xVNC (GPL License) is an extension to TightVNC in vb6 visual basic that copies, installs, configures and executes and also removes the vnc system on/from a remote machine. Access to domain administrators and limited to local machine, imports reg-files to remote registry silently, lists all viewable nt clients/servers in workgroup/domain, runas included. please vote and give feedback if this is the tool you are looking for. Complete Open Source with CVS...

ASP_Volume2 #35561
MultiPlex Scripting host with full win32 API support, multiple language interaction and more.

*** source code can be downloaded from http://flux3d.port5.com/MultiPlex.zip *** Multiplex is a complete scripting virtual machine. After a year of development, the full source code has been released. It intigrates JavaScript and VBScript into the one script and allows both to communicate. Among the notable features is the integration of the Win32 api, allowing the scripting application to have full unrestricted access the the interface. The 'section' based code structure allows for fluent, orderly code structure and a degree of 'readableness'. The interface allows VBScript to access the more advanced and usefull features of C such as sprintf. Further, .def files that are linked into the script at runtime allow for symbolic contants to be defined, both numerical and alphnumerical. The class based structure allows for an easily extendable interface, in true object-oriented style. Several samples are included that demonstrate the basic features, the best one is in the \Samples\Welcome! folder. With a few lines of code, the script can define an api and call it. A sample of the code is below: Dim SetWindowText SetWindowText = CWin32.CreateCall("USER32", "SetWindowTextA", "Long, String") CWin32.Call SetWindowText, hWnd, "caption here" Classes created include: CCommon - time, date functions CConsole - formated console io CConvert - atof, String to Long, etc CDebug - Assert, Print CFileIO - Open, get, seek, put, clode etc CFileSystem - FileLen, Date, Attributes, Dir, MkDir, Rename, SetAttrib etc CForm - create, hwnd, position, caption, size, controls etc CLib - sprintf, memcpy, memcmp, strcat, strcmp etc CMath - Log, Cos, Random, Round, Tan, Sqrt, Timer etc CPlatform - Owner, name, version etc. CRegistry - readkey, writekey CScript - script filename, script size CScriptEngine - name, version CSharedMem - vPut, vSet, vGet CString - trim, replace, putch,join, reverse, etc CType - IsString, IsNumber, etc CWin32 - CreateCall, Call, test, etc The program is almost complete. Debuging and error checking is still very basic. As usural, full source is provided. All comments are welcome. I view this as a professional quality application, and all input is welcome. Requirements: MS Script control foor VBScript and JavaScript support (included) There are to many features to write about - it is best to try it for yourself. Enjoy, and remember to vote if you like it!!!! Please run the .bat file inside the zip to install the control!!! ****I have tried 3 times to upload the code, but each time I get a "500 Internal Server Error". I have hosted the full source code on my site, and it can be downloaded below: http://flux3d.port5.com/MultiPlex.zip Thanks...

ASP_Volume2 #35562
Performance Timer

This is timer code with extremely high resolution and speed. The timer is very easy to use with only 4 functions StartTimer, StopTimer, TimeElapsed and Supported. Also included ATL COM Dll version super fast. This is my first post and I hope to do more in the future. After reading Chris Lucas's article "High Precision Timing Class And Demo" I wanted to understand performance timing more so I started my own research. I highly recommend everyone to read his article and download his version as I wouldn't have even started this project without it. Visual Basic has various timer functions that you can use but their resolution isn't very good: Now(), Time() and Timer() = 1 second. GetTickCount() and TimeGetTime() = 10ms. There is one however that has a resolution of 0.0008 ms and all you need to use it is 2 API functions QueryPerformanceCounter and QueryPerformanceFrequency but you do need to understand how to use them. The LARGE_INTEGER from the API documentation is a 64 bit data type that can be best represented in Visual Basic by using the Currency data type. To use the high resolution timer you need the value returned from QueryPerformanceFrequency which is the number of counts your system can so in 1 second and also how long the system takes to call QueryPerformanceCounter. You can retrieve the time taken in any way you want.. eg. if you wanted the time taken to be in milliseconds then you could use .TimeElapsed(pvMilliSecond). I have done all this in 1 easy to use class along with a small demo project, tell me what you think.

ASP_Volume2 #35563
DevCon FTP 3.0.3

This is an update to the old DevCon 3.0 client.DevCon FTP has local & remote file deletion, local & remote file and folder renaming, local & remote creation or deletion of files and/or folders, upload, download, passive connections(for firewalls/proxies), profile saving, FTP, HTTP, or Gopher connections, DNS lookup, ASCII or Binary modes, file searching, displaying file properties, file patterns, telnet shell for Unix/Linux/BSD servers, time, sizable directory structure view, clean interface, and some other neat features. This client covers most of the FTP game. However, it is missing CHMOD for Unix. I shelled out telnet because of this. The only way to change remote file permissions on a Unix server is to telnet into it from this app or Windows. At this time I am working on CHMOD for it but it is taking some time. If you are connecting to a Windows based server there shouldn't be a problem with permissions unless you have a perl, cgi, or php script that HAS to be changed. This client still needs alot of work to get it where I want it. I want to continue development on it but I am not sure if it is worth it. Let me know and please vote! I hope this helps with any questions you may have on FTP and VB.

ASP_Volume2 #35564
_A Fast Fill FlexGrid by Recordset ADO

Fill a FlexGrid without ADODC control and without AddItem of FlexGrid Method, with a fasted time about 230% more... with Recordset.GetString() and FlexGrid.Clip methods

ASP_Volume2 #35565
Using VS Installer.

Having read peoples problems (and having had my own) with the Deployment Wizard, I suggest that you use Visual Studio Installer. It is a free download from Microsoft. The zip is a word doc (with some helpful pictures) that explains the basic use of the prog and where to get it. Hope it's useful.

ASP_Volume2 #35566
Creating A Winsock Chat Program (Client/Server)

This is a tutorial on creating a Client/Server Chat program using winsock and how to create a Multi-User chatroom in winsock!!!

ASP_Volume2 #35567
Optimizing Your DirectX Game Engine (How To Make C++ To VB .dlls) Tutorial And Demo Included....

I have had a lot of e-mail recently on how to make and reference c++ .dll's in VB to optimize their game engine. This is my solution. A 27 Page Tutorial!! Also a DX demo for the C++ .dll and how to reference demo in VB. Must See! Hard to describe fully. The tutorial takes you step-by-step with screen shots. This took a while to make so if it helps you or you like it please leave some feedback and vote. Thank You... -James-

ASP_Volume2 #35568
Four Paddles - Extreme Arcanoid

in Game is 30 Levels,sounds,Sgames Engine,High Score Table and more... See Screenshot

ASP_Volume2 #35569
E-Mail Programm

7.528 Lines of Code + 2721 Lines of Comments=10.249 Lines of Code Complete E-MAil Suit Features: -Send E-Mail with multi attachments, HTML formated ... -Receive E-Mails with multi attachments and DECODE them -All E-Mails are stored in an Access Database (including the Attachments) -No OCX for decoding, encoding Mime compatible mails -No Winsock.ocx uses pure API Calls! -Complete Adressbook for all your adresses -Multi language (English, German) -Clear and structured code -Speed optimised

ASP_Volume2 #35570
TAURUS Alpha 2.4 (NEW)

This Version Of TAURUS Has Been FULLY OPTIMIZED.The Core Is Ready And Loops Are Perfectly Working.Go See It.Please VOTE!

ASP_Volume2 #35571
check internet connection

checks the internet connection

ASP_Volume2 #35572
Recipe Organizer

This is a simple program for organizing recipes. To begin, add a collection of recipes. When you later need to look one up, simply run the program, search your database of recipes for the recipe you want, and you can print out a copy of the recipe. The program can list recipes beginning with a letter you specify, or any string of text, or you can search within the text of the recipe for a word or phrase you are looking for. The interface is very simple and easy to use. Enjoy! -Burbble

Languages
Top Categories
Global Discovery