Advertisement

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

4_2005-2006 #164502
Extended MessageBox

The MsgBox class creates, displays, and operates a message box similar to the API "MessageBox" but with some extended features like different button styles, placements and images, timeout ... full documentation included ... v.1.1 now with input box

4_2005-2006 #164548
Analogue Gauge / Peak Meter Usercontrol 29.5k

Options for colors: background/gauge pointer(centre,fill,outline). Two gauge angles 180 degrees or 240. Hide/show percent bar(picturebox), scrollbar. Auto disable of user controlable features when in Peak mode. Note: The Background pictures (mostly transparent except for the dots around the gauge edge, the logo in the centre and the Min Max words) ARE 48x48 Icons, you can edit them to your desire (with any icon editor) using the two SPARE Images I provided as templates, to suit your own personal style/preference.

4_2005-2006 #164571
Folder Flooder

REWRITTEN DESCRIPTION: For educational purposes only. This program I've written is like a virus, but it does no damage to the files, boot sectors, or the hard drive, etc., hense it's safe. There is no form in this project since it wasn't needed. So Sub Main() in the module will automatically be called. People in PSC is calling this program a "waste" when it is not. You can learn a lot from it. Like basic VBScripting, error handling, reading and writing to the registry, finding out what drives exist on the computer, recursing all directories in an array, hiding directories/files, etc. I have no intention of creating havok and destroying files, operating systems, etc. I just wanted viral like code, only it simply folder floods. And folders do no damage what so ever. The only thing annoying about it is deleting them by hand. I'm going to tone down the code a little bit to make it cleaner to use in this site. And please, don't flame me anymore. I uploaded this program for others to learn from it, not to get chewed out.

4_2005-2006 #164586
MFR - Mass File Renamer

Lets you rename mass amout of files in a flash! u can customise the new filenames with numbers and it can also grab id3 tags from mp3 files making things that much easier. Please Vote :p

4_2005-2006 #164661
[ Exe Compiler ]

This code demonstrates how to compile exe files using vb code, like the winzip self extractor.

4_2005-2006 #164663
Boot Tab Control

Boot Tab Control is a good looking Windows Control. It has many functions. First you can change colors of the control or control drawing mode. Both Linear Gradient and Solid modes are supported. You can also change the Colors which used by the control for drawing. Also you can set UserDraw to true for drawing tabs by your self. Boot Tab Control supports three selected tab changing. These are Fade, Slide and Normal. These affects will be applied while selected tab is changing. You can also change the TabsLaout. Bottom and Top Layouts are supported. The others (Left, Right) are not supported. Free to use. Have fun ... // ADD: TabVisible property added

4_2005-2006 #164676
Create Dir (Folder)

this code creates folder with any number of subfolders beneath it. MkDir can't do this! sorry 4 my english :)

4_2005-2006 #164724
Simple Empty Window

Create an empty window with the less code possible.

4_2005-2006 #164760
FLV Extract

The application opens FLV (Flash Video) files and allows users to extract video, audio or timestamp information from them. FLV Extract can currently extract MP3 audio stream and video encoded in Sorenson h263 (FLV1) format or On2 VP6 / On2 VP6 with Alpha Channel (FLV4). The video is exported in the classic AVI format, allowing you to edit or view it with any player, if you have the correct video codecs installed on your computer. At the moment I'm writing this, Video Lan Client has built-in support for all videos exported by FLV Extract and ffdShow, a Direct Show video codec for Windows and other operating systems, can be used to view the clips. FLV Extract was inspired by another application written in C# available on Moitah.net which does the same thing but has a simpler interface and offers less feedback to the user. The author of the C# (original) version deserves credit for it, without that version I wouldn't have been motivated to port his version to Visual Basic 6 programming language and improve it.

4_2005-2006 #164762
Simple Archive Format (store small files in one large file)

A class that implements a very simple archive format that allows you to store in a single file lots of small files.

4_2005-2006 #164782
coolTrackBar

A really cool TrackBar. This is a customizable Trackbar and u can use it like any other controls. This show how implement any kind of control and create custom events. Because this is a standard control, u need to compile the code before use the control. For this reason u need: -Compile the code -Add inside panel 4 a myTrackBar object -Put the dock prop. of mytrackBar1 to bottom -Put the size of mytrackbar1 to x,12. U can use any x but with this gfx only 12 in height is nice. -Remove comments from the form1 -Run the code. I know this is boring, but i can't upload exe or dll. With this technique u can create also cool buttons and add/override any event.

4_2005-2006 #164785
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

4_2005-2006 #164806
Icon control for .NET

A .NET icon control that behaves similarly to a Windows Desktop icon. The icon can be dragged around its container at runtime.

4_2005-2006 #164814
Multi File Extantion remover

The program can remove extentions from multipile files, or add them to the files. Prefect if you need to renmae *.--- files or to add --- extention. The code is simple and readable, easy to modify for your own use...

4_2005-2006 #164819
VBP Project Map

I recently started working on a huge Visual basic program (150+ forms). I needed a quick way to find what was calling what. After not finding anything, I made this. It basically loops through the vbp, frm and bas files to develop a relationship of forms in a tree control. Beware, there is some spaghetti in this app. Enjoy!

4_2005-2006 #164887
Custom Textbox, Custom Report Printing

Custom textbox with lot of properties, Report Printing from MSFlexgrid and DatagridView.

4_2005-2006 #164971
Find and Replace Text in a File

Replaces text in a file with different text. Form has two three text boxes: Search String Box, Replace String Box, File to Search Box. The file will be searchd for the search string and if found the file will be updated with the changes. (Note the entire file will be re-written)

4_2005-2006 #164974
Quick & Easy File Search

This is second upload of this app, after I fixed some bugs... This program is searching for a specified file, you can use all the wild card combinations I personaly know of like * ? and just regular file names, from what I've seen its also does this pretty quickly. Hope you all like it :).

4_2005-2006 #164993
[_Create_EXE_Files_During_Runtime!!!!!]

This tutorial explains how to create executable files during runtime ! Visual Basic does NOT even have to be installed on the computer running your Application !!!! the bas file included in this project helps you to create exe files which include customized data! DURING RUNTIME! "What we do is coding an exe file that opens itself for read access during runtime." Reading the Tutorial won't last longer than 10 minutes and the method you learn can be very EFFECTIVE.

4_2005-2006 #165059
relational select menu

Sometimes there're multi form select object on one webpage, you select one option from SELECT1 drop-down menu, you want the second SELECT object only show related options in the drop-down list. And sometimes this relationship saved in a databse... Sample here: You select OEM Name from SELECT1, then only parts from this OEM will be listed in second drop-down menu for you to select

Languages
Top Categories
Global Discovery