Results for "Category: Files/ File Controls/ Input/ Output"
The code removes all files from the specified folder and all the files from the subfolders of the specified folder.
Retrieves and set's a Link File's(.lnk) attributes(Target, Directory, Description, Icon Path, Icon Index, .ect..). This project was requested by Lawrence.
Want to waste less time looking for your programs in the star menu then use this program just select the program and click execute, no more looking in all your star menu you can also add . exe .lnk and alot more extensions even mp3s so you can have your favorite song with just the touch of a button. there is only one requierement that you vote for me.Thank you more to come but please vote.
This program will load a VB form and allow you to change the name of the controls and all refrences to the control in the body. You can then save the form after editing. Shows the use of ListView.
From any Exe,ocx,dll...etc which contain that information...
How to upgrade Standard Open / Save Dialog with new text and Picture...
This small program shows how to Show & Hide forms. Also how to work with model forms using showdialog method.
This code is helpful if you want to load a form by passing its name as parameter. rating is expected ;-)
A custom control Progress bar based on panel class, very simple and small. This code is based on Jim Gardiner control progress bar, thanks to him. I made some modification and come out with very short and simple code.
In HTML and ASP programming, the form element (i.e., ) features the Action property that programmers use to redirect to another URL after clicking. In ASP.NET, server-side forms are rendered using a class named HtmlForm under System.Web.UI.HtmlControls Namespace. This class doesn't provide the familiar Action property, nor does it supply an alternative property to perform the similar functionality. As a result, the single form interface model is so deep-rooted in ASP.NET that there's no way around it.. This article is concentrating on the aspects of providing the Action property to Server-side form object based on very own HtmlForm class itself which further can be extended to adopt multiple-form interface
A Server-Side VBScript Class that has methods to Build a menu from a database, a file, manually or a combination of the three. See ReadMe.txt - UPDATES: New properties and methods (10/2); New properties (10/4); New Method (10/5)
This code shows how to easily and quickly create a menu on a non-mfc window using winapi. I this code is versatile, and extremely useful as I for one hate resources. This example deals with making a "file --> exit" menu. The methods used in making this apply to all menus.
This is code will help to copy, move, delete files within VB Project without using Explorer and just defining the locations of source and target files. Kindly make reference to Microsoft Scripting Runtime (scrrun.dll). This code will greatly help in adding Backup and Restore routiens in simple manners.
This is ONE LINE OF CODE replacement for the VB 6.0 App.Path.You don't need now the App.Name , because these gives you tje full path + the exe name. Just see this simple line of code...
It is the same as the Common Dialog Control,when you use it for openning/saving files,but it is working with directories not with files.This is my first code on PSC.Pls send some feedback!
Creates Virtual HDDs , BUT now it automatically converts the LongPath to ShortPath , so it is great for newbies.The *.zip file includes a very nice sample and the ocx.Vote if you want...
Example shows how to create a movable custom defined form in VB .NET using inheritance. Custom shaped forms are created though use of Images and Transparency settings on the form. .NET features used in example: inherit, inheritance, overrides, shadow, protected, process.start (Opening URLs in explorer), region arrays, cursor / mouse position, no control timers, images, drawings image (replacement for paintpicture) and many more. Include heavy commenting and explanation throughout source. This example to a bit of time to do so please vote highly if you like the example.
Show two list boxes, one to display a list of choices, one to display a list of ordered suggestions. 1ClickDB.com's Query Wizard for Access and SQL Server includes a handy control to move items between two list boxes using JavaScript. This control uses a Server Side VBScript class that is available for free integration into your custom Code Wizard application, or any other ASP based HTML FORM you may have. Here is some sample code showing how to enable this control in your own HTLM FORM: <!--#INCLUDE FILE=DoubleBox.asp--> <FORM> <INPUT TYPE=Submit VALUE="Continue &gt; &gt; "> <% dim objDoubleBox set objDoubleBox = New DoubleBox objDoubleBox.doublebox_fields = "ItemOne,ItemTwo,ItemThree" objDoubleBox.doublebox_delimiters ="," objDoubleBox.doublebox_size = 12 objDoubleBox.doublebox_LHeader ="Choose From List:" objDoubleBox.doublebox_RHeader = "Selected" objDoubleBox.doublebox_form = "forms[0]" objDoubleBox.doublebox_name="DoubleBoxForm" objDoubleBox.DrawDoubleBox %> </FORM> After submission, the selected entries will show up as a delimited list in the Request("doubleboxform") variable. This is determined by the value specified for .doublebox_name. Note this control _must_ be embedded in a Form to actual return values. Form can be a POST or GET. This control requires VBScript 5 or later on your ASP server. The JavaScript created by the control is compatible with most old and new browsers. More on the web at http://AccessHelp.net/survival
As a computer programmer, you may be developing one or more projects to run on certain computers on a network environment. Once the initial installation takes place for each computer, you may have a need to change the code for a program, recompile, and create a new EXE file,and copy the EXE file to each computer needing this program update on your network. NOTE: To use this demo, you must have System Admin rights or try typing in a UNC path and access their computer remotely. (Example Shown Right) The file must be closed before you can copy it to networked computers. You could, of course, Use Start / Run / and type in the UNC path and dump the file to each computer (like illustrated above) - then copy the file over. There may even be other methods to do this, but the method I developed allows you to send the EXE file (or other file(s) if necessary), to each computer on the network (only those running your software) through its computer identification name. This program was written about 1 ½ years ago – found partial code that was missing – so I’m uploading this for you’ll. Did some simple modifications to it before uploading it to PSC. Forms are quite simple and it uses DAO (I know it’s old) but still works very well. See for yourself – then change to ADO if you wish. This YourApp.vbp and TransferApp.vbp does not require any outside OCX or DLL. You do have to reference the Microsoft Scripting Runtime. Please read the README.doc Word Document for proper preparation, setup, and execution of this demo. If you don't have MS WORD, you can download the WORD viewer from Microsoft's web site. If you like this program, please feel free to vote - please leave suggestions and/or comments. Thanks
This is the follow up project from the basic VBExplorer I posted in September 2001. VBExplorer2 is a functional Explorer type project using the TreeView and ListView controls. The Facilities programmed are an 'Up one Level', Cut, Copy, Paste, Delete, Properties, Refresh, Rename(using the edit label feature in the ListView control), Large icons, Small icons and List icons. All supporting controls are placed on a frame object and rendered invisible at run time. The frmFileOps Form is an added bonus and shows some techniques in producing a smooth animation illustrating a Move/Copy operation. It uses the BitBlt API to animate a worm carrying a document in it's mouth between two computers. The code is surprisingly small. There's also a nice bit of code using a Label control that provides a movable bar between the TreeView and ListView controls letting you size the controls to your liking. Just place the cursor on the Bar and when the cursor changes to a West-East arrow Click-Hold-and-Drag to a new position. For further info see ReadMe2.txt.