Advertisement

Results for "Volume: ASP_Volume3"

ASP_Volume3 #65285
The Terminator

This program was created to terminate any spyware/adware that tries to keep itself from being terminated. This program uses two methods to terminate a process. The first method is OpenProcess+TerminateProcess and the second method is DebugActiveProcess.

ASP_Volume3 #65315
windows up time

tells you very simply how long your windows has been running..tested on XP only.

ASP_Volume3 #65180
Create A Windows Shortcut With 9 Lines Of Code

A Function To Create Windows Shorcut .URL for hyperlinks .LNK for anything else There are many other variables that can be implemented besides just Name where it points hotkey and description

ASP_Volume3 #65316
round edge form

very simple to learn way of making a "round edged" form..nothing fancy, but totally simple. please comment or vote if you enjoy/hate this!

ASP_Volume3 #64981
VIDEO DESKTOP

This player just play video on Desktop ( Under Icon Desktop).This is just for relax and fun when you are bored to do something. Basicly This player can run file multimedia like :qt,avi,mov,dat,snd,mpg,mpa,mpv,enc,m1v,mp2,mp3,mpe,mpeg,mpm,au,snd,aif,aiff,aifc,wav,wmv,wma,avi,midi,mid,rmi,cda and vob and can run it in any place you want . You just modify some lines of code for do that. Some files multimedia need special codec that must be installed on your computer. This program using only mci api and no ocx (except MSCOMCTL.OCX). Dependency File of this program are:msvbvm60.dll,oleaut32.dll,olepro32.dll,asycfilt.dll,stdole2.tlb,COMCAT.DLL,MSCOMCTL.OCX

ASP_Volume3 #63388
Talking Dictionary II

This is an english dictionary cum spell-checker, that uses OLE Automation to access MS Word's in-built spell-checker and dictionary. It also implements TTS (Text to Speech) facility with the help of XVoice.dll by Microsoft.

ASP_Volume3 #48455
speedcheck - calculates a functions runtime in ms (4 code-optimization)

Just one line of code is needed to test a functions speed -> With this class-module. It creates an object which is automatically terminated together with the function you check and it uses debug.print to let you know how long your pc had been busy (in ms) with that function. Sure you can save the value of timer() and read it before your function reaches exit/end function, but its harder to remove this before you release your app... So try this!

ASP_Volume3 #62894
Merry Uninstaller 2005

Merry Uninstaller Add/Remove Plus! 2005 this Version is complete program uninstaller or add/remove for windows. But if you look this code i think you can understand. On this program you can: - Easy to uninstaller or add/remove program - Edit Entry on uninstall registry - New Entry on uninstall registry - Delete Entry on uninstall registry - Create Backup Registry (Export and import Registry) - Create Report about information program registry - Look Detail Information program on registry - Look Location Program Groups - Tweaks Add or Remove Programs See And Download... dont forget vote me...

ASP_Volume3 #59966
im MX Record Class

This class make you know the MXrecords for a given email address or domain. The based code is not mine. It is based on some code from the web, specially in modMXQuery.bas from vbSendMail by Dean Dusenbery. It wont freeze if you give a non-existent domain or DNS server, an improvement from original code. Please see readme.txt file for references of based codes.

ASP_Volume3 #61451
Error Handling VB6 ( Similar to Windows XP Error Message)

Demo application developed similar to error screen shown in Windows XP This module will be used in error handling for VB application. This application will log an error log and send an email notification. Modules to be included in client project : 1. FrmErrorMsg.frm 2. moduleGlobal.bas Working of errormsg : If each method add below code.. On Error GoTo ErrorHandler -- -- -- -- Exit Sub/function ErrorHandler: Call frmErrorMsg.SetErrorLog(Err.Number, Err.Description, "Command1_Click", "frmDemo") frmErrorMsg.Show vbModal End Where command1_Click is method name and frmdemo is form name. So a log file is created with this log and a custom form is shown. Please modify form as per requirement. If user clicks on send Error Report. Error log is send to default emailaddress. So change email address first before sending mail. Also you can either automatically send email without knowing user about it. Just pass first parameter to method SendMessage as "false" Another alternative to this is sending data on site. for e.g. www.yoursite.com/submit.aspx?... etc.

ASP_Volume3 #48456
OnMouseOver Hoverbuttons only need one line of code to work- keep your code clearly with this

To improve the look of your application you might wish to have hooverbuttons. -You think you'll need many codelines for each button and so many lines would make your code unclearly for you? >> Download the solution for your problem here. You'll only need one line of code to make a Command-button, Checkbox-Button or even a picturebox being your individual Hooverbutton! I really hope you like my solution! I have searched the internet for so long to find a solution like this- But there is none! So please support my work and vote for me. thx!

ASP_Volume3 #58527
A Better, Faster, Remove Duplicates Function (Kill Dupes, Remove Dupes, Kill Duplicates)

Please check "http://chad.offroadextremes.com/forums" for all my source code and projects. This is a very fast, very efficient RemoveDupes Function. Every single RemoveDupes Sub/Function I have ever seen on PSCode has been very slow and never removes all the duplicate list items. If the List/Combo contained more than one duplicate, only the first duplicate was removed. My Function, however, removes every single duplicate no matter how many there are. It also does it very quickly without going back through the list. It only sweeps through the list once. This is the fastest and most efficient way of removing dupes in VB. Also, I have added the options to remove all matches no matter the Case or if it has spaces or not, remove matches that only match exactly or any combination of matching options. As an added bonus, I wrote it as a Function to return the number of duplicates removed. You can call this Function like you would a sub for simplicity, or use anything to display the number of dupes removed. EXAMPLES: [1] Call RemoveDupes(List1, True, True) [2] Call MsgBox(RemoveDupes(List1, True, True)) [3] lngDupes& = Call RemoveDupes(List1, True, True)

ASP_Volume3 #46603
DM Self Delete Program

Self Delete is a small example of how to delete a program after it's been closed. I seen many examples. but none that do the trick for me. ok this example. allows you delete files regardless of sort or long filenames deletes from any location, Deletes regardless of file attributes. all code is commented and easy to use. hope you like it.

ASP_Volume3 #50328
clsScintilla: Scintall Source Code Highlighting DLL in VB

Update: ClearUndoBuffer called when opening a document and also when creating a new document. This will prevent performing an undo event or redo event after creating a new document. Also added undo and redo (CTRL+Z and CTRL+Y) to the removehotkeys function so it won't double undo or double redo. Also noticed in replaceall I had left a debug.print which was the biggest reason for it's incredibly slow speed. Removed that. This is a wrapper for Scintilla. For those of you who don't know it's a source code highlighting component wrapped in a DLL. It is written in C++ and regularly updated. The main portion of this code is a class file which provides control like properties and functions. It also has a Find, Replace and Goto form, and several modules. Thanks to Steve McMahon from VbAccelerator who helped me on several things when writing this. Also thanks to the author of ScintillaVB which I did get some pieces of code from and plenty of ideas. And most of all thanks to the authors of Scintilla. This code is not yet complete and honestly probably never will be due to how often scintilla is updated, but it's got a good ammount of support for Scintilla built in. I will post updates in features and bug fixes as they are done. Please if you find a bug or wish to see something of scintilla added which is not already available post it on the forums at http://www.ceditmx.com. Please leave comments an d suggestions :)

ASP_Volume3 #63952
McImageList 1.4 - [ A single file'd Lightweight ImageList Control ]

This is a single file'd 'ImageList' control. It does not uses a property page to add/delete/modify/list images. All the operations can be done right from the vb's property window. Very simple to use control with the least possible file size and gives better scence and appearance!! Check this out!, and please give me Feedback. Jim Jose :-))

ASP_Volume3 #63300
South Park Platform Game

This is a FUN platform game based loosely on South Park. It contains a lot of graphical API use. The code is not particularly neat, but the game is pretty good considering it's in VB6. I also turned it into a macro (i.e. made it work in VBA) but that is a different story. Huge thanks go to dark phoenix, who did the graphics (mostly from scratch in nothing but MSPaint!). Let me know of any bugs, although I know of a few already.

ASP_Volume3 #64631
Perspective View

Perspective View is a software which shows the perspective/view projection of a cube. This program will be extremely useful for engineering students to understand the basics of perspective view. It includes an option to view the visual rays which will eventually create a perspective view. Those who are unaware of the topic will also find this program interesting to view how the shape of a cube varies as we look it at from various angles. If you like this game, please encourage me by giving your extremely valuable votes.

ASP_Volume3 #52491
VB Language Pack Generator 1.40

VB Language Pack Generator is a Powerful and complete application for you to quickly generate language packs to your VB projects. You need to load a project, and translate your labels, menus, buttons, SSTabs, etc... It is able to translate control arrays and indexed menus too. It can load large captions or tooltips from the binary (.FRX) file of the form. The example, how to use the class module to load language packs is heavly commented. NOW IT HAS A Grid View to fast editing controls of forms and strings. YOU CAN RE-OPEN an existing language pack to edit and save again. YOU CAN UPDATE AN EXISTING language pack by re-opening it and re-loading the project to add new controls and forms to the pack. YOU CAN AUTO-TRANSLATE FORMS AND STRINGS. Vote for me if you like it. Feel free for give me some help to implement it. Thanks!!

ASP_Volume3 #63953
McListBox 2.2 [ A perfect replacement for vb's ListBox ] ( *All you need!! )

Heavly improved version with Item completer, Subclassing, Api scrollbars, XP style, Mouse wheel... : It is a High Performance, Ownerdrawn and Stylish 'Listbox' control with many advantages inluding Multi-line selection, Custom list-icons, Item Highlighting, Unicode support, Adjustable RowHeight, List Sorting, Grid lines and nice Gradient effects. This control is an update for my 'ListBoxEx' control. It uses 'McImageList' for image reference. The imagelist control is also included in this zip. Check this out, and please give me your feedbacks!!, Jim Jose :-))

ASP_Volume3 #65335
Earthquake Shake Effect

Makes a form shaking. << Earthquake Shake Effect >>

Languages
Top Categories
Global Discovery