Advertisement

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

6_2008-2009 #205793
Custom Progress Bar

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.

6_2008-2009 #205851
Go Beyond the limitations of ASP.NET Form

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

6_2008-2009 #205884
Select Menu Builder Class

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)

6_2008-2009 #205989
Making a menu using winapi non-mfc

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.

6_2008-2009 #205990
Copy, Move & Delete Files withinVB Project

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.

6_2008-2009 #205998
App.Path in Visual Basic.Net ---------->ONE LINE OF CODE

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...

6_2008-2009 #205999
DirBox Sample

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!

6_2008-2009 #206000
OCX >Virtual Hard Drive< OCX

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...

6_2008-2009 #206013
Movable Borderless Custom Shaped Form in VB .NET with Inheritance

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.

6_2008-2009 #206019
Double List Box

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: &lt!--#INCLUDE FILE=DoubleBox.asp--&gt; &lt;FORM&gt; &lt;INPUT TYPE=Submit VALUE="Continue &amp;gt; &amp;gt; "&gt; &lt;% 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 %&gt; &lt;/FORM&gt; 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

6_2008-2009 #206040
Transfer files to select computers over a network

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

6_2008-2009 #206055
VBExplorer2

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.

6_2008-2009 #206065
Captcha Image

Simple Captcha image .create images to ensure that the user who is registering at your site is a human user not a program if u like the code please rate it

6_2008-2009 #206102
Word ADDin

This is a sample of how to make a word add in, This also shows how to interface with the current active document as well, like how to add merge fields or document variables. You also see a simple drag drop.

6_2008-2009 #206103
Auto Complete combo Box

Have you ever wanted an auto complete on your combo box well here it is. I have posted this before but it was my first time and the formating was all messed up. So now it's in a working project.

6_2008-2009 #206104
System Tray Notify Icon

Shows a simple way of how to use the Notify Icon control. Includes a simple timer that changes the icon every second so that it appears to be flashing. Simple code for simple project unlike some of the hairy code I found on PSC for doing the same thing in Dot Net. Also shows how to use the contextmenu along with the Notify Icon control. Please vote.

6_2008-2009 #206110
Form Designer Basics

This sample shows you how to drag and drop controls onto a form at runtime (thereby creating a runtime form designer) and how to move the controls around as well as resize them.

6_2008-2009 #206111
Control Designer Info

Ok simply put, this is how to get that link to show up in the bottom of the properties window in VS.Net. You know, for example drag a datagrid onto the form and look at it's properties, you will notice an autoformat link at the bottom. Well there is very little info, and guess what, some one came up with a unique name I would never have thought of searching with. They call those links VERBS is that funny or what? So this is a basic example of adding verbs. Though the control designer can be so much more, you can control mouse events and how things look at design-time when laying things out. Check it out, VOTE!!!

6_2008-2009 #206163
How to Embed SMS Wireless Messaging into ASP Applications

This article explains how to use Simplewire's platform to embed SMS wireless messaging to cell phones and pagers into your applications in ASP. This will allow your application to send information to mobile users throughout the world. I hope this helps a lot of you who are trying to developer wireless applications.

6_2008-2009 #206170
A TRUE Windows Prompt Like Dos (no controls)

Haven't seen it done yet until I did it myself. I asked around if there was code to create a 'prompt' and all I seen was modifed multi-line boxes. This is not a Dos window, its a windows window. - this is as real as it gets... If you need a GUI windows command prompt... here it is, Best WINDOWS command line code here... Please: I am going to use this code for a Business Basic interpreter, if you find any bugs or make it better, please let me know!!! I am always looking for improvement here!! Code is FREE for all...

Languages
Top Categories
Global Discovery