Results for "Category: Files/ File Controls/ Input/ Output"
This VB Class allows you to quickly and easily read/write files, line by line, word by word.
Replicate folders with just a button
It put a password to any .exe file.
Use NetZero, the free ISP? Hate that advertisement banner? Well This gets rid of it.. Plain and simple.
It correctly executes a program
This code is designed for reading text files. i have written this code because i did not want to use the slow "open for input..." and "freefile" bla bla code... I know i coul do this via the richedit control, but i wanted to know how to do it via api, and maybe you to... This code is using the "CreateFile" Api, which must be called differently in windows 2000. Therefore, i added a "IsWin2000" function to check for windows 2000. Update: Now added a class which wraps the module, lot's of events and functionality. it's 50ms slower in read (with my test file) Class module includes also function ReadCharacters which reads the specified ammount of characters from the open file.
This is a proper working Fallout 2 .DAT unpacker. It will unpack any of the .DAT files in the Fallout 2 game, this is my first submission with projects, If you dont have Fallout 2 take a look at the coding anyway, enjoy.
clsFocus is a class that can be associated with a form, allowing to perform data entry checking and focus handling with almost no code at all..., just associate the form with the class, and create ONLY ONE validation Sub for all the controls on the Form, it's that easy... Please rate it, it just takes a while, I would love to read your comments...
Program opens text file for input, reads name of files in list, then locks those files. Uses form and module, also shows system tray icon.
Select item in listbox on mousemove; Drag an item to different position; Most source from MSDN , two lines from yours truly.
Avoid the Flickering Use this routine to stop a control (like a list or treeview) from flickering when it is getting it's data.
You can copy files like the Windows-Explorer - with animation !
This simple program allows users to see the an Access 97 .mdb Password, to open it after.
This Code Get's The Mp3ID3 Tag. It Also lets you write to the Tag. It has perfect support for the Genre Part, and it's well commented. I know there already are code that does this, but they either dont let you write, or they dont support the Genre part. so here it is, email me for a .exe that demonstrates this module.(Now Includes Project for demo)
This control uncompresses rar files as welle as Sfx files !
' This Piece of code will let you copy a file from anywhere and rename it ' Note * The file will stay the same but will be only copiied to another location ' and renamed, and will not gain any effect ' If you like this code :) i think is usefull :) u can vote me , i discovered this when i was creating a new MSN Messenger 10 Built in bots in 1 :) ' Will be available on http://www.vbdotlb.connect.to
Example to show how to get multiple file names from a common dialog box.. with and without the cdlOFNExplorer flag
GUYS I THINK THIS CODE REALLY NEED YOUR VOTES ... COS SEVERAL PEOPLE ASKING ABOUT THE POLYGAMY PATCH AND LIKED TO KNOW THE SOURCE SO AFTER 1 NON STOP WEEK, I DEDICATE THIS CODE TO ALL OF YOU !
This class sends text, files, control codes directly to the printer spooler bypassing the print driver. This lets you send print files to the printer or control the printer by sending the appropriate control codes. The name of the print job can also be set. Works with any windows printer, not just LPT1: printers. See comments in the class for usage.
Completely destroy a file with no chance of recovery or trace. Use of CreateFile, FILE_FLAG_NO_BUFFERING (Open the file with no intermediate buffering or caching) FILE_FLAG_WRITE_THROUGH (Write through any intermediate cache and go directly to disk) and also FlushFileBuffers function to ensure that file buffers will be flushed! A must test and see.