Atlanta Custom Software Development 

 
   Search        Code/Page
 

User Login
Email

Password

 

Forgot the Password?
Services
» Web Development
» Maintenance
» Data Integration/BI
» Information Management
Programming
VB VB (1648)
VB.net VB.net (736)
C# C# (15)
ASP.net ASP.net (779)
ASP ASP (41)
VC++ VC++ (25)
PHP PHP (0)
JAVA JAVA (4)
JScript JScript (5)
  Database
» SQL Server (708)
» ORACLE (5)
» MySQL (0)
» DB2 (0)
Automation
» C/C++/ASM (11)
» Microcontroller (1)
» Circuit Design (0)
OS/Networking
» Networking (5)
» Unix/Linux (1)
» WinNT/2k/2003 (8)
Graphics
» Flash (0)
» Maya (0)
» 3D max (0)
» Photoshop (0)
Links
» ASP.net (2)
» PC Interfacing (1)
» Networking (4)
» SQL Server (4)
» VB (23)
» VB.net (4)
» VC (3)
» HTML/CSS/JavaScript (10)
Tools
» Regular Expr Tester
» Free Tools

(Page 78 of 133) 3985 Result(s) found 

 

Accessing FTP servers in .NET applications
Total Hit (5264) <p>[From: &quot;Accessing FTP servers in .NET applications&quot;,<br> &lt;URL:<a href="http://dotnet.mvps.org/dotnet/faqs/?id=ftp&lang=en">http://dotnet.mvps.org/dotnet/faqs/?id=ftp&amp;lang=en</a>&gt;]<br> Accessing FTP servers in .NET applications<br> Samples:<br> <br> How to access a File Tr ....Read More
Rating
How to compress files and data in VB.net
Total Hit (3678) <b>&quot;Compressing files and data&quot;,</b><br> <a href="http://dotnet.mvps.org/dotnet/faqs/?id=compression&lang=en"> http://dotnet.mvps.org/dotnet/faqs/?id=compression&amp;lang=en</a><br> <br> Compressing files and data<br> CAB format:<br> Microsoft Cabinet Software Development Kit<br> <a ....Read More
Rating
Reusable function to open form by name
Total Hit (2399) «code LangId=2»Private Sub showForm(ByVal frmName As String) Dim frm As Form frm = AppDomain.CurrentDomain.CreateInstanceAndUnwrap( _ Me.GetType.Assembly.GetName.Name, _ System.String.Concat(Me.GetType.Assembly.GetName.Name, ".", frmName) _ ) frm.Show() End ....Read More
Rating
Reusable routine for Encryption/Decryption of String in VB.net
Total Hit (2626) The following code snippet will help you to perform string encryption/decryption using VB.net «code LangId=2» Imports System Imports System.Xml Imports System.Text Imports System.Security.Cryptography Imports System.IO Private Sub Form1_Load(ByVal sender As Object, ....Read More
Rating
How to install Compact Framework on Windows Pocket PC
Total Hit (2374) It may sound easy but I had hard time to find this. To install Compact Framework on windows pocket pc perform the following steps 1. Download Compact Framework msi file from Microsoft Download center 2. Save downloaded file to some location (e.g. c:\downloads\NETCFSetupv2.msi) 3. Goto Start ....Read More
Rating
How to find and sort files based on creation time
Total Hit (6614) The following code will sort file list based on CreationTime «code LangId=2»Option Explicit On Option Strict On Imports System.Collections Imports System.IO Module Module1 Private Class CreateTimeComparer Implements IComparer Public Function Compare(ByVal x ....Read More
Rating
How to perform recursive search for files or folders in VB.net
Total Hit (4395) This is a very common requirement to find all or specific files in a specified foder and all subfolders. You can use GetDirectories and GetFiles of System.IO.DirectoryInfo for this purpose. Check the following example. «code LangId=2»Sub FindFilesDemo() Dim msg As String Dim ar As Ne ....Read More
Rating
Copy Directory Content and All subfolders to target path
Total Hit (11348) This Code will copy all files and subfolders of specified source directory to target location «code LangId=2» Sub CopyDirectory(ByVal SourcePath As String, ByVal DestPath As String, Optional ByVal Overwrite As Boolean = False) Dim SourceDir As DirectoryInfo = New DirectoryInfo(SourceP ....Read More
Rating
This is a link to a different site A Google-like Full Text Search
Total Hit (4498) Thanks to Internet search engines like Google and Yahoo!, your search application users are more sophisticated and demanding than ever. Your application users have a wealth of search application knowledge that they're probably not even aware of. Ask one of them to find a website dedicated to their f ....Read More
Rating
This is a link to a different site VB.NET & C# comparison cheat sheets
Total Hit (4180) Because developing with the .NET framework gives you the freedom to use multiple languages it can be a bit of a hassle to choose between them. VB.NET and C# are probably the most wide spread languages and a question that gets asked regularly on the ASP.NET forums is which one to choose. My answer: l ....Read More
Rating
This is a link to a different site How to make User Contol design time container so you can place controls inside UserControl at designtime
Total Hit (764) This step-by-step article describes how to make a UserControl object behave as a control container at design-time after you add the UserControl object to a Windows Form. There may be situations where you want to drag a control to your UserControl object. To permit this, the UserControl object must b ....Read More
Rating
This is a link to a different site What Is Authorization Manager
Total Hit (1127) Role-based security has been evolving on the Windows platform since the first release of Windows NT. Using roles, the operating system can make determinations, such as whether a process is privileged, by checking the security context for a group called BUILTIN\Administrators. The operating system ma ....Read More
Rating
This is a link to a different site How to access a File Transfer Protocol site by using Visual Basic .NET
Total Hit (1250) This article describes how to perform the File Transfer Protocol (FTP) operation by using Microsoft Visual Basic .NET. The code samples in this article perform the following FTP commands: • Upload a file to the FTP site • Download a file from the FTP site • Create a folder on the FTP site • Re ....Read More
Rating
This is a link to a different site How To Write Pluggable Protocol to Support FTP in Managed Classes by Using Visual Basic .NET
Total Hit (1179) This step-by-step article describes how to write pluggable protocol by using classes from the System.Net namespace. The Microsoft .NET Framework provides a layered, extensible, and managed implementation of Internet services that can be integrated quickly and easily into your applications. The i ....Read More
Rating
This is a link to a different site GotDotNet User Sample: FTP Client in .NET
Total Hit (1297) This is a simple FTP protocol client component class written in C# using .NET sockets. It implements core functionality of the FTP protocol, so you can connect, change working directory, download and upload files. Masks will be added later.
Rating
This is a link to a different site How-To Windows Forms Controls Series Videos – Visual Basic
Total Hit (815) How-To Windows Forms Controls Series Videos – Visual Basic
Rating
This is a link to a different site How-To Windows Forms Controls Series Videos – C#
Total Hit (750)
Rating
This is a link to a different site Understanding Application Settings in VB.net
Total Hit (841) This artical covers enhancements made to Application Settings in .net framework 2.0
Rating
This is a link to a different site Using System.Net.Mail
Total Hit (862) Sending an e-mail with classes of the .Net Framework is pretty easy. Michel Fournier wrote an article titled Sending email from VB.Net in the April 2006 edition of the Level Extreme .Net magazine providing you a good wrapper that does most operations you need when an application needs to send an e-m ....Read More
Rating
This is a link to a different site Easy way to send SMS from .net application
Total Hit (1229)
Rating
This is a link to a different site How to find which program is locking the file
Total Hit (1035)
Rating
This is a link to a different site Working with ADO.net DataTable - Adding, Modifying, Deleting, Filtering, Sorting rows & Reading/Writing from/to Xml
Total Hit (1096) In this article, I am going to explain how to Add, Modify, Delete, Sort, Filter rows of the DataTable and also loading data from xml and writing data into xml. I will also talk about writing/reading Schema of the DataTable.
Rating
This is a link to a different site How to capture unhandled exception and email screenshot of application using Application Events
Total Hit (965) Visual Basic developers will learn how to handle unhandled exceptions in their applications and how to email that information with a screen-shot of the application’s state using the System.Net.Mail namespace.
Rating
This is a link to a different site How to implement XML and Binary Serialization (All FAQs)
Total Hit (808) Binary: 1. Which class is responsible for binary serialization? 2. What does it take to make my object serializable? 3. What are the main advantages of binary serialization? 4. How do you encapsulate the binary serialization? 5. How do you encapsulate the binary deserialization method? 6. Will ....Read More
Rating
This is a link to a different site Full Chapter on Serialization from the book XML and ASP.NET (by George Petrov)
Total Hit (912)
Rating
This is a link to a different site How to Keep the Visual Studio Designer Out of Your Control’s Properties
Total Hit (904) Do you create custom controls for Windows Forms projects? Do you add properties to those controls? If so, you'll probably want to apply a few attributes to those properties: Browsable and DesignerSerializationVisibility. Else, the designer will put brain dead default values in them. ....Read More
Rating
This is a link to a different site How to run your .net application using admin privilege under Vista?
Total Hit (959) Assume you're writing some application that really - I mean really really - needs administrative privileges (does it? you must be kidding). So, you want it to run evelated as an administrator. How to tackle this requirement in a Windows Vista and UAC world where even an administrator is locked down ....Read More
Rating
This is a link to a different site The implementation of Flags using bitwise operators
Total Hit (1012) Bitwise operators give you the ability to store multiple settings in a single primitive data type (e.g. an integer). This is useful when a single item has potentially more than one setting of the same type. For example, a message box could have an Ok button, a Cancel button, a Retry button or any co ....Read More
Rating
This is a link to a different site Writing Provider-Independent Data Access Code with ADO.NET 2.0
Total Hit (962) When you need to write an application that allows users to select the database provider, the application code itself needs to be completely provider-independent. ADO.NET 2.0 helps you create and deliver database applications even when you don't know what database your clients are using. ....Read More
Rating
This is a link to a different site Display Multiple reports using single ReportViewer control
Total Hit (1114) It is easy to get the ReportViewer Control to report off of a DataSet that is set during design time. But what if you want to use code to cause one ReportViewer control to display many totally different reports using your own O/R mapper collection instead? It is not easy to see how to do this, but i ....Read More
Rating


(Page 78 of 133) 3985 Result(s) found  ... 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 ...

Recommanded Links

 

Home   |  Comment   |  Contact Us   |  Privacy Policy   |  Terms & Conditions   |  BlogsZappySys

© 2008 BinaryWorld LLC. All rights reserved.