Advertisement

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

ASP_Volume2 #27243
[ A- taskToDo LIKE Vb.Net ]

are you tired to forget what do you want to change of your code when you are debuggin?? when you stop debug you cant remember wich was the error, if there where a lot of errors? this utility may help you, its like VB.NET task to do utility

ASP_Volume2 #27254
Capturing the Extra Mouse Button Events

This program will demonstrate how to capture the extra mouse buttons such as the mouse wheel and x buttons (the buttons on the side of the mouse). Mouse Hooking is employed so these the events can be captured independantly of the controls.

ASP_Volume2 #27265
Really Simple Load Custom Resource

I decided to wrote this article after a long time trying to find a way to load custom resources that cant be load as "normal" ... all i can find is really complicated DLL's and huge and confuzing codes ... so i decide to show a really simple way. I will show how to load an flash animation but you can do this with anything. I will also put a sample on a ZIP in case that you have some problem with copy and paste All you have to do is create your resource file as normal puting anything you want (JPG, EXE, SWF, Etc...) as custom resources. And then write the resource to a file and load it. Private Sub Form_Load() Dim M() As Byte M = LoadResData(1, "SWF") Open "c:\windows\desktop\m.swf" For Binary Access Write As 1 Put #1, , M Close 1 SF.Movie = "c:\windows\desktop\m.swf" End Sub Private Sub Form_Unload(Cancel As Integer) Kill "c:\windows\desktop\m.swf" End Sub

ASP_Volume2 #27329
Flash Explorer

Complete program like explorer. You can view text files, movies, mp3, wav, html and More.. Please Rate it. Enjoy.

ASP_Volume2 #27337
bYTER 2003Pro RV 1.3

This is the 3rd release of bYTER many things improoved inside it, as well as the full source code modified, this version both me and rudz together work on it, if you feel this code is something usefull feel free to comment and vote for it .

ASP_Volume2 #27377
Advanced Text Editor For Beginers

This text editor is for beginners. It features, find & replace, basic open and save functions (and detect if the file has been edited) and it is able to sort lines in the loaded file either by ascending or descending order.

ASP_Volume2 #27404
XP_Button

Makes a XP button for new applications for you who wants to be updated.

ASP_Volume2 #27439
a StringExtractor - Extracts Strings from binary Files

a StringExtractor - Extracts Strings from binary Files. StringExtractor =============== Author: CodeXP Contact: CodeXP@Lycos.de Description: This App extracts Strings from binary files (like .EXE). You can search certain Strings that were found in binary file. (for example you can search some cheats in a game file, for what I also wrote it. Actually for own use :) How to use: drag'n'drop a file, that you would search for Strings, on the StringExtractor EXEcutable

ASP_Volume2 #27463
DM Resource Builder

This small pice of code will allow you to compile a text file to a .RES resource file that can then be included in to Visual Basic. At the moment the compiler only compile custom resource types. Note that this compiles the files without the RC compiler. also at the moment the source code will only compile one file to a resource file. if someone can help with that problum that will be helpfull. Well I hope someone finds some us for the code.

ASP_Volume2 #27480
JPeg Exif Reader & Changer

Its a little better than the last one, it can only read bog standard tags from the 'exif' standard plus a few more, it has other subs/function which you might find usefull. Plus a few pictures

ASP_Volume2 #27482
File Copy Class (Updated)

I have added an automatic detection of the target path. If it doesn't exist, created regardless of the depth. I have also added a verify feature to verify the copy was successful. Orig. Desc. This is a modified verision of Nabhan Ahmed's (Copy File byte by byte) found at http://www.Planet-Source-Code.com/vb/scripts/ShowCode.asp?txtCodeId=48319&lngWId=1. Please give all votes to him. His description Basically, this program shows you how to copy files byte by byte. Everytime it reads 4 kbs from the source file and write them in the destination file until it reads all bytes in the srouce file. There is a bar that shows the copying progress, and there is a label that shows the copying percentage. In the new update, you can use the browse button to find the source file you want to copy. I'm sure you'll find the code very easy to understand, and that you'll like it.( Would you please vote for this code ) My Changes: The FileCopy routine was transfered to a self contained class. It checks for proper input for the FileCopy method to work. It is now completey portable.

ASP_Volume2 #27489
ProjectZip45

This sample provides a look into the structure of Zip Files. It will allow you a look at some the information stored in them, and later I will be updating it with decompression algorithms and extraction routines. Take a look, learn something, and have fun !!

ASP_Volume2 #27497
VBS.Redlof.A Virus Scanner + Detector + Repairer : This Virus Cause Folder.htt Files in Your Folders

This is a Antivirus for the virus VBS.Redlof.A And It Detects + Scans + Repair Files In Your System . This Virus Cause Folder.htt and desktop.ini files in your folder (all Folder You Can Open With My Computer During Infected System) By Ajay Kumar

ASP_Volume2 #27523
UPDATED: NTFS Data Streams: the true way to hide information and extend your file system

11/10/2003: To celebrate my mother's birthday (to whom I shall dedicate this update to) I've decided to post a new version of the code. As posted in the recent article, all of the bugs and features that you have suggested have been implemented. Thank you very much for your comments! If you find any new bugs, please let me know! This article will teach you about a big secret of the NT File System (NTFS): Alternate Data Streams. First off, a brief history about ADS will be offered, followed by practical applications of data streams, with examples. Finally, explanations on how to protect yourself from the dangers (and what they are) of ADS. Full source code is included as well as a GUI for scanning your disk for ADS, as well as editing and viewing them (or creating new ones). As a bonus, there are two versions, one in pure API, and one using VB controls. Finally, you can integrate this app in a VBS script, with very little modification, for server maintenance.

ASP_Volume2 #27579
Pic-Packer1.1

It is a Exaple to Put 1000 of Pictures into One File You Can Add Files into an Archive You Can Delete Files from an Archive Your Can Extract Files From an Archive Its Really Tooooooo Fast Method If You Like this Don't Forget to Vote Me !!!!!!!!!!.... And Mail Me If You Hate this Please Mail me What I want to do webmaster@hajasherif.zzn.com or haja_personal@hotmail.com

ASP_Volume2 #27608
fso and all subfolders and files

how to use filesystemobject to get all subfolders and files and how to separate in a listbox, check screen shot.

ASP_Volume2 #27643
Incredibly simple file transfer

This is the simplest way I could find of sending a file across a network or the Internet. You can send any type of file (from text documents to movies) and any size of file. I downloaded many file transfer programs and found them either way too long-winded or quite short but very difficult to understand. Therefore once I understood how to do it I wrote my own program thats not only short, but incredibly simple and capable of sending any type of file (big or small). The code is fully commented and easy to understand. Enjoy...

ASP_Volume2 #27704
Archive Compression/Decompression Control (included subfolders)

This is a control i wrote that contains all functions for a good archive and compression program. I did not create am example program yet but i did include a a fw test functions that will show you how it creats an arhive from a folder and subfolers and how to extract all files form that archive as well as a single file. Each function included the option for compression/decompression. I am currently working on a program that will demonstraight how to use each function to their best ability. i figures i would post the control so you people can play around with it.

ASP_Volume2 #27707
A new Update, ( quick tray) quickTray 1.0.34

thisis an update to my last project, I have added drag and drop like someone asked, I also added a hard drive scanner to find certain types of folder, and a small beta screen to deleted and modify your current favorites. I am going to work on the GUI now, but please post any suggestions and I will build them in asap!!

ASP_Volume2 #27719
CopySelf

Copy itself to a location specified.

Languages
Top Categories
Global Discovery