Advertisement

Results for "Category: Files/ File Controls/ Input/ Output"

C_Volume2 #69634
Copy API (Over 2GB limit)

A little Class that allow you to "seek into" and "copy" files bigger than 2GB.

C_Volume2 #69646
LoadFileIntoArray

Function that loads delimeted, fixed or Excel-files into an array.

C_Volume2 #69695
A great utility, I call it quick tray quicktray 1.0.14

A mutant cross of your quick launch and system tray! quickTray is to help you save taskbar space, and allowing you to close your windows and open them back up... I made this because taskbar space is something very important to me, and I never seem to have enough of it. Like, When I download a movie lets say, I open d:\downloads, then I have to decompress it, then I open that folder, and either un ISO it or just move it then to d:\Movies, or music, etc etc. You get the point. Anyways, this is so that you can access webpages apps, folders, anything you need to at the easy click of a mouse. This app isnt commented, because I dont like commenting code, but it shows you how to change the registry, how to add files and read files from a txt, and how to open applications using simple system32 api. I call it... quickTray Beware, this may cause mild forms of efficiency!

C_Volume2 #69708
Infrared receiver for remote controls (1) 03/16/2005

Project size : 58kB No matter which button you press on your infrared remote control - this program "recognizes" each button you press on the remote control. Each button is assigned to an individual "hexadecimal" string. -So if you are an experienced programmer, you can log these characteristic and individual strings, you can analyse the strings - et cetera. The program works with a 9-pin "COM port" interface with 1 diode, 1 resistor, 1 capacitor and a "TSOP" Infrared receiver (the interface can be do-it-yourself). The electronic components are cheap and cost about 2 dollars. Project tested on Win98SE.

C_Volume2 #69713
SWF Forge

SWF Forage, a parser/extractor and a compiler of swf file. I found similar codes on psc but I wish to do it in a more clear and faster way. Extracting compiled flash(.exe) back to swf file. It is easy to do compile a swf file to a standalone exe without a separate palyer, but it depends on what version Flash you made the swf, because new features with new Flash. If new features used in swf, older player maybe play it correctly. So a workaround solution is to use the latest player:) And I included a small play game as resource and automatically extracted it to "Marshi Maro.exe" since psc will automatically remove any file with PE headers, no matter what you name the file. And I make these two functions into a class for handy usage. I used Copymemory for a better performance. Please feel free to leave any comments, bugs or suggestions are welcome! Next version will feature in automatically list IE cached swf files for users to select. Maybe I will develop a much more robust version in really parsing the frames of a swf file to gifs. Some basic function classes are found on psc, but the core swf storage class is written by me. I strictly follow the coding standard so that I hope you can learn abou it without too much difficult. Sorry for lack of detail code comments, but I think that the method is really simple.

C_Volume2 #69727
Ultimate Self Delete EXE for 98/2000/XP

Self Delete any EXE irrespective of its NAME or PATH. As some examples i have seen do not delete the exe if the exe name contains space e.g Copy of Project1.exe Please vote for me if u like it.

C_Volume2 #69847
___ULTIMATE FILE SEARCHER 2.0 !!!___

Awsome file searching program. Works as good as the windows xp one if not better. Uses recursing due to the easyness and speed, Specify the filters u want and you should be able to search your hard drive very fast. Uses api not Dir$() so its rather fast. NEW-- Added lots more filters and now can edit a file's properties by the file menu

C_Volume2 #69870
Get System Directory -- 1 Line of Code No API

Get the system directory with 1 line of code and no API.

C_Volume2 #69896
Modem Tool

Program to help in protocol development with MultiTECH DSVD Voice Modem. Can be used with any COMM device. Good tool for learning COMM control.

C_Volume2 #69900
[An improved version] of my previous Random File Access Program

Beta V1.0.4 of my Random Access File program. By no means is this a complete app; however, it now has the look and feel of an Access environment...MDI look-and-feel (just the beginnings). Adding more validation routines, login prompt (which uses reads from an ini/config file), toolbars, menubars, progressbar and search function. Great for beginners and may help some intermediates. No ODBC or ODBC-bridge needed. Just a simple text file using the age-old Random Access. Again, this is not a complete app. If you like it, please vote and leave comments.

C_Volume2 #70019
Folder Backup Utility

Automatically Backs up a folder by synchronizing the contents to a destination folder. Looking for easy way of synching folders? Want a utility that will instantly back up your files when specified? This utility is for you. Not only will it use an incremental back up method to secure your files but it can back up your folder when a change is made to the directory. Demonstrates file synch and folder watching for changes much like Norton Anti virus. This application will load with windows to ensure that your folder is backed up automatically from the start. Sits in the task bar as a small folder icon. Keywords: Auto Backup Backing up Back up Copy Sync Synch Synchronize Incremental Differential Folder File Transfer Taskbar Icon Registry Load with Windows GetSetting SaveSetting Destination Source Directory Norton Anti-Virus

C_Volume2 #70034
DM Console+Make Tool

Hi all, this is a real console app that can run from the DOS Prompt. comes with it's own tools so you can convert the app after it's been compiled. so no need to mess around with Link.exe. well it comes with it's own example. and also I made a little help file. Hope you like it.

C_Volume2 #70048
T-Install

This code will help you make your own installation file. All you have to do is: 1. Choose a directory in wich your application is goinf to be installed. 2. Vote for my code :)

C_Volume2 #70099
Smart Storage with 2 compressions(zip/huffman) #BIG update 6

Smart Storage is something like a file packager, you can add any file(s) of any format to the storage file(AddUpdateItem function) and remove them(DeleteItem function), of course. Now it comes into two separate version: with/without compression. You can choose zlib/huffman or no compression for each file. It uses index(file) technique for a better performance, thus it has VaccumStorage() function. And, the most inportant part is that it uses serialized section(chunk) technique to handle the CRC & compression of large file. And this project is originally aimed to be the storage part of Carles P.V's Thumbnailer 1.0 (image thumbnailer-viewer with GDI+)(http://www.Planet-Source-Code.com/vb/scripts/ShowCode.asp?txtCodeId=59677&lngWId=1), thus it includes the PictureFromByteStream() function to directly return a picture object from a byte array! Beside that, there are: GetItemText() function for direct return of plain text content; GetItemPicture() function for direct return of picture object according to the index; SaveItemToFile() function to save the content to disk file according to the index. Some of the codes are not written by me, such as cHuffman, cCRC. They are from psc, now they are back for you guys:) The zlib dll is generated at runtime of sample test since psc will remove all PE file. It is easy for you to remove the zlib dependancy, that's why I only enclosed it in the sample project. And I make all these functions into a class for handy usage. I also use Copymemory for a better performance. Please feel free to leave any comments, bugs or suggestions are welcome! Usage: 1.Simply open the sample storage, then click listed files, content displayed, doubleclick to save. 2.Select DB File->Create->Open->Select Item File, add it... Sorry for lack of code comments, but I think that the method is really simple. #update 5: added ReadItemContentChunk(), chunk by chunk to read a file, rather than read the whole file at once. added Version support. Improved OpenStorage result. Now with full DIBs support, from an image to store in storage, then from storage back to be an image! #update 6: fixed bug in ReadItemContentChunk() due to changed with serialized section chunk.

C_Volume2 #70108
Prevent Double Start Program

This Code Prevent double start for your Program see it it's very simple. (And double start will happen when you make a copy for your program and open it again from another directory ,I will try to find another method),I Thank so much every one who criticism me positively not negatively.

C_Volume2 #70111
Http server pc

http server on pc

C_Volume2 #70183
Voice activation of programs

Allows voice activation of programs. Programs and words recognised (dictionary) are customisable. Click on "Add Word" to add a word to the dictionary. See CommandButton tooltips for help. Notes: It uses Microsoft Agent's Speech Recognition Engine 4.0 (included in installation). Need a working microphone, use preferably in a quiet room.

C_Volume2 #70198
FRX Restore.

Ever have an old program that you backed up the .FRMs\FRXs to, and suddenly notice that you need the pictures that where on that form. I bet its the worse feeling in the world, right up there with getting dumped. But wait! There is a light! FRX Restore will take that old dirty FRX File and turn it back into there old picture files! Pick and choose what pictures get extracted from the FRX data.

C_Volume2 #70204
Clean IT Out

Hi this is a little program that can remove Items left behinde by programs, It rmoves old files form the Temp folder., Removes Items form the Recent Doucemnts menu, Removes old Typed in web address form IE and Netscape. Removes Netscape cache, Clears Items form the Run Menu, Emptys the Recyle Bin And also has some more functions like a Simple but effect File Wipeing. anyway I hope you like this program and please Vote for Me... Also please leve lots of comments.

C_Volume2 #70212
FAST Tail Function for VB

After hunting for this functionality since I started using VB, I've finally figured out how to *quickly* read the last few lines in a file. This function fills a dynamic array with the last X number of lines in a file you specify. I use it to monitor apachewin32 logs on another server. This is much faster than using 'line input'. I know there may be more optimized ways of doing this, I just thought I should get it out there.

Languages
Top Categories
Global Discovery