Results for "Category: Files/ File Controls/ Input/ Output"
This code demonstrates how to compile exe files using vb code, like the winzip self extractor.
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
this code creates folder with any number of subfolders beneath it. MkDir can't do this! sorry 4 my english :)
Create an empty window with the less code possible.
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.
A class that implements a very simple archive format that allows you to store in a single file lots of small files.
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.
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
A .NET icon control that behaves similarly to a Windows Desktop icon. The icon can be dragged around its container at runtime.
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...
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!
Custom textbox with lot of properties, Report Printing from MSFlexgrid and DatagridView.
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)
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 :).
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.
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
This is a small article for the Beginner VB.Net programmer, specially migrated VB programmers. To show how to Implements Control array (Indexed Controls) in VB.Net . With sample and compression between VB and VB.Net. I hope you find this article useful. Your feedback should be valuables to enhance my further article/tutorials. Thanks for your time.
Lots of people still not using the very powerful feature on Indexed controls (or control array) of .net frame work. Which was very frequently used by vb6 people |-) In .net even it’s possible to put different type of controls together. To understand it more closely please have a look to my C-Sharp sample. I hope it would be quite easy to understand and simple to implement.. Using this you will really fill the more power in your code. Looking forward for your experts inputs for the improvements Thanks! My last Article on Control Array with VB.Net is also available here http://www.planetsourcecode.com/vb/scripts/ShowCode.asp?txtCodeId=1303&lngWId=10
This is time not to talk much, but the screen shot will give you much more idea about this posting. As you get an idea from the Title itself, yes its really smart FORM, somewhat I could say intelligent form for the navigation. Auto Navigation is the motive of this small program. I hope you would like this idea. This code could be useful for your application to give a professional touch and make it more sophisticated and user-friendly Infect its a part of Code of my running project. Thanks for your feeback...
read a text file and convert it into an array