Results for "Volume: C_Volume2"
Very impornat classes .. By these you will be able to Make Help Text for menus and toolbars by the MouseMove and MouseOut Events ( they dont have these Events ) .. and You will also be able to save the GUI of the MS Coolbar control .. This also have the Timer Class ( Timer Without Timer Control ) .. Please vote For Me ..
Hello friends i dont know how many people know this but not all,,this tutorial will let you know how to handle cancel button on input box most of them dose this by checking the length of the value returned by the input box even though it works it is not the proper way todo it check ot this material Have fun...
I haven't submitted in a while and figured that some of you might might be able to use some of the things I have worked on. Much of this code was inspired by this site or derived from this site. This submission is a File Object by encapsulating Win API functions into an object oriented dll. I have used this dll in several applications currently distributed in high stress environments. Includes advanced file and directory properties and functions including File Input/Output. And a file searching collection. File Object Properties CRC32, CRCAlder, Computer Name, Date Accessed, Date Created, Date Modified, Directory, Drive, Exists, Extension, Name, Size, Type, Fixed Disk, Hidden, LastAccessed, LongName, Parent Directory, Read Only, Short Name, Title General File Functions FileCopy, Delete, Execute, ExploreDir, FileMove, FilePropertiesDialog, FileRename File Input Output Functions FileOpen, FileClose,GetData, GetDataFromFile, PutData, PutDataInFile, SetFilePosition Directory Object Properties Exists, Drive, ComputerName, Path Functions Copy, Create, Delete, Move
A big update of my previous version. as optimised as I can make it. API use ot bitblt, stretchblt, textout, gettickcount, rectangle, etc. Already had excellent reviews from visualbasicextreme.com, and hoped you all would like this too. each effect can be turned off through 'Settings' on Display>Screensaver. Font is part of the zip. Hope you all like :-))
This is designed as a wrapper to the MySQL API, it is a windows dll and just needs compiling and registering before adding a reference to your projects, it provides a means of accessing a MySQL database as you would using ADO. This is the second and final version and has been compiled and tested with both VB6 and VB.NET and works very well with both. Please give feedback on this as it will help me to improve on it. Also please feel free to suggest anything that you would like to see in future version of this dll.
This is a collection of Screensavers which try to mimic the effects found in the Matrix films, there are 4 different screensavers each with lots of different ways they can be tweaked to just how you like them. It has the normal falling code, with options of Size, Colour, Speed... and the option to make it look like the code from Reloaded. It can give the effect of a picture in the falling code if you import one in or create the same effect but continous from an AVI File!! Good example to learn MCI from. It also has the call tracing effect and the computer screen moment from the first film 'Knock Knock Neo...' With this there is the end scene from the first film where Neo sees the hallway in Code. The major changes since the last version can be seen in the History.txt file, and please read the readme file before opening the project.
An easy way to handle INI files by using API. Ini files can be useful when you need to save and load data to and from a file. I tend to use them to save user preferences but can be used for many other things as well. The main advantage over the registry is that you can modify them easily by using a text editor such as notepad. Enjoy :)
This is an implementation of a Finite State Machine for hyphenation in Turkish.
This is an (in my opinion) great add-in for adding resizing capabilities to your projects. It is based on the class ControlResizer from Edward Catchpole (you can find it on http://www.planetsourcecode.com/vb/scripts/ShowCode.asp?txtCodeId=46203&lngWId=1). I have changed it a little but so you can set a minimum width/height for your form and when you are setting properties for an MDI Child, it first sets the height and width to the ones you used in design-time. Also I have changed the way of proportionally resizing things, because it just didn't work for me. Now it does. I hope you take time to look at this code, leave comments and benefit from it (this is the best thing I have seen that is 100% free so far). Updates are coming up.
File Shield is a file protector application. It will encrypt any file and encose it inside another application (lock.exe), where it can then be decrypted and extracted with a correct password. If necessary, the file can be included with its own unique key, which will identify whether the protected file has been altered. Another useful feature is the expiration date system. You may choose to set a date when the program will no longer extract the file. Encryption depends on the password. The password is not included in the executable at all. When a password is entered, a unique key is created for it. You cannot reverse a unique key encryption as it is one-way. This means that if you enter the wrong password, its unique key will not match the one that is in the file, so it will not extract. Since the file is encrypted with the password, only the same password will decrypt it. When the file UID generation is turned off, and on the VERY unlikely event that two passwords (one wrong, and one right) create the same unique key, the file will extract, but the data will be incorrect if the wrong password is used. When the UID generation is turned on, even a password with the same unique key will not extract the file because it would end up with an 'Extraction Error.' The file UID generation does not allow modified files to be extracted, which is definitely an advantage. Any file can be protected with File Shield. When the protected executable is ran and the correct password is entered, it will extract the file, run it (with its associated application if it is a document), and then delete it as soon as the program that opened the file closes.
2 lines of code to create any destination directory or path, no loops etc.
Download from "www.chandu.i8.com/hackkey.html"! Readme.txt first! You can find out the text what was typed on keyboard! (It secretly store data in to a file )! ****** Now Know what others typed in system like Documents, files,e-mail text,ofcourse e-mail id's and passwords everything that had been pressed on your system's Keyboard . My program finds pressed keys and stores them in a file.it also has password fecility, so every one cannot open the application while runing.It also changes the file if text file exceed 600KB. Its very useful to know what others typed on system. This code is simply for knowing what others typed on your system. Its intended to give basic information but not to do harmful things. I Wonn't be responsable for any of your mis-use of my code,use it! Try it ans use this code in your own way or modify it!
This Sample create's a Datareport by filtering a Database. It is quit useful for small Reports. (Sorry this is the Englisch Version!)
This code shows how to register and unregister ActiveX dlls programatically, without relying on regsvr32 for the task. It's built into a reuseable class that can be put in your own code or compiled into a dll. Based very loosely on code from Vasudevan S.
Shows how to create a web browser using a progress bar, showing the title of the page in the title of the app, keeping objects sized according to the forms size, much more. PLEASE BE EASY ON ME, THIS IS MY FIRST SUBMISSION :D
Explains to you what a property bag does, can be used for, how to use it and has examples included. Great for creating an archive, you own DLL files, customizing compiled EXE files and much more.
The attached code demonstrates a technique you can use to create multiline balloon tooltips for ListView items. The code is based on the following simple idea. In the MouseMove event you need to check the index of the item under the mouse pointer, and if this item is changed, you simply redefine the text of the tooltip attached to the ListView control. Notice that you should destroy the tooltip if there is no any item under the mouse pointer. To determine the index of the list-view item under the mouse pointer, we send the LVM_HITTEST message to the ListView control. The SendMessage function you should use to send this message returns the index of the item at the specified position, if any, or -1 otherwise. Before you send the message, populate the pt field of an instance of the LVHITTESTINFO structure with the coordinates of the mouse pointer (you pass the reference to this structure as the value of the lParam parameter in SendMessage). You can use for this purpose the X and Y parameters of the MouseMove event of the control, but draw attention at the fact that these parameters can be measured in twips and you need to convert them in pixels. This simple idea can be used to create such tooltips for ListBox items, any grid control items and so on. For instance, we use this technique in extra samples for iGrid ActiveX Control we produce (this is an editable replacement for ListView and FlexGrid – visit www.10Tec.com for more info).
Hmm... I'v managed to Tooltip every row in a Listview control. Even if its not the RIGHT way to do it, erm.. its.. WORKING. In addition, i'v altered some of the codes on PSC in order to sort the listview control. tell me what u guys think :)
Learn managing simultenous WinSock connections, ADO connectivity and Moduler coding with a sample Web Server project. Simple web server supporting unlimited domains and redirections with default document! I know there has been a lot web servers on PSC. Still I decided to make it up within 2 hours and submit for those who wants to learn WinSock handling, simple string manipulation, logic implementation & ADO connectivity. All these are done in moduler manner so code always remains reusable anyway! This server can host unlimited number of domains with default document supprt. As these are being controlled with database backend, you can do anything like implementing bandwidth throttle like GeoCities or IIS, implementing site statistics like GeoCities, etc. Only bug I was tired to fix up is that the server loses the relative path if the URL is not ended with a '/' or no document is specified. I mean 'http://YourServer/www.YourSite.com' would return the site but relative paths will be messed up. It is okay if you use 'http://YourServer/www.YourSite.com/' or 'http://YourServer/www.YourSite.com/Index.htm'. Possible implementation could be many. I downloded the whole www.PHP.Net with Offline Navigator and hosted on my machine with this little server. I now just have to open my web browser to get help while I work on PHP! IIS or other hitech web servers would cost you more power, resource & management skill! It doesn't support server side scripting.
This script explains how to send multiple strings through winsock in only 1 packet. Very usefull with multichat and faster than sending strings one at a time.