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 10 of 25) 735 Result(s) found 

 

Locale-aware string conversions
Total Hit (2755) You can use the usual UCase, LCase, and StrConv functions to convert a string to upper, lower, and titlecase (e.g. "This Is A Title"). However, VB.NET offers is much more flexible, and lets you convert the case of a string according the locale you specify. You can do this through the methods of the ....Read More
Rating
Reduce COM+ context overhead: use modules and shared members
Total Hit (2723) If you use Shared members in .NET or modules in VB6, you reduce COM+ context overhead without any risk whatsoever that you will get extra context overhead for that code. You also release yourself from the clean-up burden that you have in both worlds. Instead of the VB6 consumer code: «Code LangId ....Read More
Rating
DrawRotateImage - rotating an image by a specified angle
Total Hit (3556)
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
Evaluate an expression using the Microsoft Script Control
Total Hit (3521) Thanks to COM Interop, you can still use the Microsoft Script Control from VB.NET and any other .NET language. To do so, you must add a reference to the Microsoft Script Control library (from the COM page in the Add Reference dialog box): this action creates a new reference named Interop.MSScriptCon ....Read More
Rating
Including/excluding files in Visual Studio .NET
Total Hit (2539) Say that that you have an existing Visual Studio .NET project, and that you copy a lot of new source code files, images and other stuff from another project (maybe you're merging two projects, or a colleague wrote and passed those files to you). One approach to include the new files is to use the Pr ....Read More
Rating
IsValidUsPhoneNumber - Validating a US phone number
Total Hit (2960) «Code LangId=2» ' Validate a US phone number ' Example: ' MessageBox.Show(IsValidUsPhoneNumber("(123) 456-7890")) ' True ' MessageBox.Show(IsValidUsPhoneNumber("(123) 456-78901")) ' False Function IsValidUsPhoneNumber(ByVal phnNum As String) As Boolean Return System.Text.RegularExp ....Read More
Rating
CompactPathToControl - Shorten a path by using ellipses
Total Hit (3023)
Rating
Create a command-line filter utility
Total Hit (2779) The Console class exposes two properties that make it very simple to create command-line utilities that work as filters, exactly like the FIND and MORE utilities that are provided with the operating system. The Console.In property returns a TextReader object that reads from the standard input channe ....Read More
Rating
FlipCase - Inverting the case of all characters of the input string
Total Hit (2591) «Code LangId=2» ' Invert the case of all characters of the input string ' ' Examples: ' Debug.WriteLine(FlipCase("Hello World")) ' => hELLO wORLD ' Debug.WriteLine(FlipCase("hELLO wORLD")) ' => Hello World ' Debug.WriteLine(FlipCase("3) this is message n. 3")) ' => 3) THIS IS ' MES ....Read More
Rating
Copying data into the Clipboard
Total Hit (4575) Copying a piece of information into the clipboard is as easy as calling the Clipboard.SetDataObject: you can pass this method a string, an image, and so on. If you pass it a string that contains text in Rich Text Format (RTF), the Clipboard object detects this format automatically. For example, the ....Read More
Rating
ArrayListJoin - Merging two ArrayList objects
Total Hit (2876) «Code LangId=2»' A reusable function that merges two ArrayList objects ' Example: ' Dim al As New ArrayList() ' al.Add("Jack") ' al.Add("Mary") ' val.Add("Bob") ' al.Add("Tom") ' ' Dim al2 As New ArrayList() ' al2.Add("Frank") ' al2.Add("Lee") ' a ....Read More
Rating
Creating a project into an existing folder
Total Hit (2547) When you create a new project, VS.NET automatically creates a folder with the project's name under the selected directory. If you name your project MyTestProject, and select an existing folder named c:\My Project\MyTestProject as destination directory, in reality the final project's folder will be c ....Read More
Rating
Don’t use the GotFocus and LostFocus events
Total Hit (4481) Have you ever tried to change the BorderStyle, HideSelection, MultiLine, ScrollBars, WordWrap and TextAlign properties of a TextBox, or the ComboBox’s RightToLeft property from inside the control’s GotFocus or LostFocus events? You’ll get a System.ComponentModel.Win32Exception exception saying "Erro ....Read More
Rating
Drawing Bézier splines
Total Hit (3469) GDI+ supports two different forms of a complex curve that can't be represented as an arc of a circle or an ellipse: a cardinal spline and a Bézier spline. A Bézier spline is a curve specified by four points: the initial point, the ending point, and two control points. The curve doesn't pass through ....Read More
Rating
GetSqlServerDatabases - Retrieving the name of the installed SQL Server databases
Total Hit (2548)
Rating
Hex2Dec - Convert from hexadecimal to decimal
Total Hit (8223) «Code LangId=2»' convert from hexadecimal to decimal Function HexToDec(ByVal value As String) As Long ' we just need a call to the Convert.ToInt64 static method Return Convert.ToInt64(value, 16) End Function «/Code»
Rating
IsValidIP - Validating an IP address
Total Hit (3126)
Rating
IsComDLL - Check whether a DLL is an COM self-registering server
Total Hit (3050) «Code LangId=2»<System.Runtime.InteropServices.DllImport("kernel32")> Shared Function _ LoadLibrary(ByVal path As String) As Integer End Function <System.Runtime.InteropServices.DllImport("kernel32")> Shared Function _ GetProcAddress(ByVal hModule As Integer, ByVal procName As String) ....Read More
Rating
A command-line Object Browser that uses Reflection
Total Hit (3327)
Rating
Use VB6 ActiveX controls with VB.NET
Total Hit (4016) It is possible to use VB6 ActiveX controls - such as ADO Data Control, Chart Control, Comm Control, and the Windowless controls - with the designer of Visual Studio .NET, but you may encounter problems when doing so because VS.NET doesn't come with the design-time license for these controls, therefo ....Read More
Rating
This is a link to a different site How Do I...Read XML from a file?
Total Hit (948) This sample illustrates how to read XML from a file using the XmlTextReader class. This class provides direct parsing and tokenizing of XML, and implements the W3C Extensible Markup Language (XML) 1.0 and the Namespaces in XML specifications.
Rating
This is a link to a different site DataSets in Microsoft .NET - 2
Total Hit (1310) In the previous part of this article we discussed different features and how to create a dataset in design time lets go further in detail. In this part I will discuss about sort, search and filtering support provided by dataset and data table object.
Rating
This is a link to a different site Working with Data in .NET : Sample Chapter from Professional .NET Framework
Total Hit (810) Throughout this chapter you will see how the System.Data namespace is structured and how to utilize many of the classes within it. As well, we'll go over the pros and cons of using ADO.NET, and then compare and contrast current ADO functionality with that of ADO.NET. After that we'll go into using t ....Read More
Rating
This is a link to a different site .NET Remoting - Part III/IV
Total Hit (2948) Remoting provides a very flexible environment for distributed applications in the .NET arena. In part one I introduced the background to distributed applications and the .NET remoting architecture that aims to support distributed applications. In part two we looked at some examples of the applicatio ....Read More
Rating
This is a link to a different site Connection strings for various .Net Data Providers
Total Hit (2282) Data Providers for MySQLDirect, ODBC, OLE DB, Oracle (From Microsoft), Oracle (From Oracle), OraDirect (From CoreLab), PostgreSQLDirect and SQL Server ....
Rating
This is a link to a different site How Do I...Load a DataSet with XML?
Total Hit (992) This sample illustrates how to load a DataSet with XML Data. The sample builds on the topic, How Do I...Create DataSet mappings from an XSD schema?, by first loading XML data into an XmlDataDocument and then accessing this data from the DataSet. The DataSet has previously loaded a schema in order to ....Read More
Rating
This is a link to a different site How Do I...Throw an Exception?
Total Hit (1374) This sample illustrates how to throw an exception. A try..catch..finally block is used in to illustrate to use and catch the exception you threw. It is important to remember that when you throw an exception, you need to document the exception you throw, so that users are aware they need to include a ....Read More
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 How Do I...Work with the global assembly cache?
Total Hit (1031) The global assembly cache is a machine-wide store used to hold assemblies that are intended to be shared by several applications on the machine. The .NET Framework provides two tools for working with the cache. One is a Windows shell extension that allows you to work with the cache using a Graphical ....Read More
Rating


(Page 10 of 25) 735 Result(s) found  1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25

Recommanded Links

 

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

© 2008 BinaryWorld LLC. All rights reserved.