Advertisement

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

4_2005-2006 #167176
Get All Files Located In Directory With Very Easy Way Including SubFolders

Hi All .. That's My First Upload To Planet . This Code Will Get All Files Located In Directory Including SubFolders .. It's Very Easy , Fast Way Without any APIS .. Just Copy The Function To Your Program and Use It .. That's an Example Program That Show's You How To Use Function .. Please Please , Send Me You Comments To My E-mail : [email protected] ; [email protected] .

4_2005-2006 #167179
draganddropexample

simple project to show how to drag a small textfile from windows explorer(or desktop) and drop it into a textbox and display the contents of the file and the filename(not displaying the full path)

4_2005-2006 #167235
ScanPath (demo of cScanPath Class)

Fast API based file finder. Class scans a path (with Attributes, Mask, Date, Size filter properties) and returns the files & folders by raising events. Optionally scan nested sub-folders and sort results. Created to make File Utility creation very rapid. Hope it may be useful as example of API file handling and WithEvents. I welcome feedback!

4_2005-2006 #167240
ScanPath 2.0.1 (13 Feb 06)

Fast API based file/folder scanner. Single File solution with no dependencies to add file processing to any Utility Project in single step. Scans a path (applying optional Attribute, Mask, Date and Size filters + multiple file extensions and simple pattern matching). Can also optionally scan nested sub-folders and/or sort results. Returns the files & folders by raising events. I originally created this a few years ago when I was creating many File Utilities. Hope it may be useful as example of API file handling and WithEvents. I welcome feedback (votes always appreciated)! UPDATE: Fixed a resource leak and simplified the use of extended file details.

4_2005-2006 #167273
drag & drop (custom cursors)

Show how to use custom cursors in drag and drop. Create cursors from the dragged data - an image of dragged text or thumbnail of a dragged image. Seperate cursors for copy/move and no drop allowed.

4_2005-2006 #167280
Config File Class

This is a class that will save settings to a text file. You only have to give it a description and a value and it does the rest.

4_2005-2006 #167354
DropDown Button Drive Control

Updated code as suggested see comments section.(12/8/04) The next generation of Drive Control. Now offers standard main button that you control as a regular button, Still has drive ready on hover, use only the space that a regular button would use and has resizable button features. This version allows the 4 standard flatstyles of a regular button including the system flatstyle for those of you who use Xp Style. The drop down drive control automatically closes in 10 seconds, when a drive or the close drive buttons are selected. I would like to take a moment to thank those of you who took the time to vote and make suggestions on the first ButtonBar control which inspired me to take the control to a higher level. This control was made by Myself and John Harald Apeland as co-programmer. Enjoy the control, votes and or suggestions for improvements are always welcome.

4_2005-2006 #167355
DriveBar

Replace the drive combobox with a button bar control. Has green drive ready indicator or red not ready when mouse hovers drive button. Also on hover it displays drive info. Added the ability to rotate the bar control. This is accomplished by clicking the control on the form and open the properties window under appearances there is an option for vertical when true this sets the bar vertically on the form. the screenshot shows the DriveBar both ways. Please vote if you like this control. Special thanks to John Herald for the advice on the control. You probably will have to add a reference to Microsoft Scripting Runtime Libray which is located on the reference Com Tab as listed above. Then build the program before trying it.

4_2005-2006 #167356
Image and Text Layering

Updated an old Microsoft control. I added several new items to the control. This control will allow layering of text and images as well as rotation and object movement. You can save the layers as an object and later go back and re edit any object just like jasc paintshop pro. Please comments suggestion and or votes are always appreciated. :.)

4_2005-2006 #167393
Creates a relative path from one file or folder to another.

Creates a relative path from one file or folder to another.

4_2005-2006 #167394
Recursive Get ALL files from a Folder and its Subfolders and its Subfolder Subfolders etc.

Recursive Get ALL files from a Folder and its Subfolders and its Subfolder Subfolders etc.

4_2005-2006 #167412
Read / Write Combo Boxs

This code will let you read in values from a file of your choice, probably a .ini or .txt into a combobox. It will also let you save the contents of the combobox to a file of your choice. Example: Call WriteCombo(combo1, "C:/example.ini") or Call ReadCombo(combo1, "C:/example.ini")

4_2005-2006 #167475
FileZIP Detector

This program is able to scan the files contained in a ZIP archive,but it cannot unzip them. http://linuxman.2ya.com/. if you think this is useful do rate it, thanks:)

4_2005-2006 #167480
Total Commander "like" Explorer

First of all , thanks for downloading this application, i made this explorer app with the idea of getting at least the basic functionality of Total commander, for example in sorting, etc, hope you like it, it works fine, more faster than other browser downloaded here, just try it. Please Vote !, thanks again.

4_2005-2006 #167500
___ULTIMATE FILE SEARCHER 2.0 !!!___

Awsome file searching program. Works as good as the windows xp one if not better. Uses recursing due to the easyness and speed, Specify the filters u want and you should be able to search your hard drive very fast. Uses api not Dir$() so its rather fast. NEW-- Added lots more filters and now can edit a file's properties by the file menu

4_2005-2006 #167545
A "DataGrid" -extended-: FullRowSelect + Disabled Cell editing.

1 part of code: I want to show you how you can set FullRowSelest in DataGrid + disable cell(textbox) editing. 2 part of code: How you can use DataGridColumnStyles to show fields in DataGrid that only you want to be viewable/avaiable. 3 part of code: How to make your own DataGridColumnStyles. This project is all documented ( on englis ). *****If you like it, please vote..

4_2005-2006 #167574
DataTreeView

Introduction At the time of this writing, the standard Windows Forms .NET TreeView control doesn't support the concept of databinding like the ASP.NET TreeView control. So, we are left writing our own solutions. This solution provides a standardized way to use databinding with the Windows Forms .NET TreeView control. This functionality will enable you to quickly develop user-friendly ways to create and view complex data information. It includes the Databinding as well as the following Design Patterns: Facade, Proxy, Singleton. It also includes custom 'Rule' classes to give the developer at design time the ability to derive primary key and foreign key data points. This is essential to adjusting the underlying Dataset when changes to the TreeView occur. Updates are also performed on a Asynchronous separate thread. The last item I'd like to mention is that this class does support two table DataSets, a Primary key table and a Foreign key table. Requirements The following were the initial requirements: Databind a DataSet to the TreeView and save results back to a Microsoft Access database. Design the solution to make it easy to reuse the class in different solutions. Encapsulate as much of the binding logic inside the custom solution and hide it from the UI developers. UI developers should have to write next to nothing for code to keep the TreeView in sync with the DataSet underneath it. Provide a sample for deleting nodes in the TreeView (via right click context menu) and have that deletion automatically reflected in the DataSet. Provide a sample for editing nodes in the TreeView (via right click context menu) and have the .Text property change automatically reflected in the DataSet. Provide a sample for inserting nodes in the TreeView (via right click context menu) and have the new node automatically reflected in the DataSet. Support drag and drop of TreeNode branches within the same TreeView and have the relationships automatically reflected in the DataSet. If the following columns are in the DataTable: Checked, ForeColor, BackColor, ImageIndex, or SelectedImageIndex, incorporate the following node properties when the TreeNode is created. If the any of these columns are missing, simply implement the default value for the TreeNode. Support drag and drop of TreeNode branches across multiple TreeView controls and have the relationships automatically reflected in the target DataSet as well as the source DataSet. Provide a sample for accepting and rejecting changes made to the same TreeView control giving the user the ability to undo their changes. Automatically commit changes to the source and target DataSet when a TreeNode branch is dropped on the target TreeView.

4_2005-2006 #167589
Dynamic Form Field Capture

This code will caputre all fields in an HTML form and create a template for a VBScript function that passes the fields to a stored procedure.

4_2005-2006 #167634
rsButton

Simple but useful (i hope) button control Updated : - disabled state drawing - support for keys : Enter = Click Space = DropDown Correct focus rectangle drawing with TAB key

4_2005-2006 #167737
File Crypting Tool

Crypting program created for encrypt/decrypt files. It is very fast, and best for images (JPEG, BMP, GIF...), but you can use it for crypt-decrypt video or other files... No special encription metod was used, (just reversing some bynary data), so it is not good for textual files, use it only for binary files! - e. g. if you want to protect your images from viewing by other people :-) To encrypt/decrypt files, you have to choose one or more files, or folder where files you want to process exists. Only selected files (when check-box is selected) will be processed. When you choose some files or folders, all files in list-box are selected automaticaly. If you want to exclude a file from encrypt/decrypt process, uncheck it. By clicking on Start button, process starts. If a file is previously encrypted with this tool, it will be decrypted. A file that is not previously encrypted with this tool, will be encrypted.

Languages
Top Categories
Global Discovery