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

 

Reusable routine for Encryption/Decryption of String in VB.net
Total Hit (2619) 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
RunningAsExe - Determine whether the code is running in an EXE or DLL
Total Hit (2539) «Code LangId=2» ' Return True if the application is running as an EXE ' Return False if the application is running as a DLL Function RunningAsExe() As Boolean ' get the codebase of the running assembly Dim codeBase As String = Reflection.Assembly.GetExecutingAssembly.CodeBase ' ....Read More
Rating
SearchFileOnPath - Searching a file on the system
Total Hit (2698) «Code LangId=2»<System.Runtime.InteropServices.DllImport("kernel32")> Shared Function _ SearchPath(ByVal tartPath As String, ByVal fileName As String, _ ByVal extension As String, ByVal bufferLength As Integer, _ ByVal buffer As System.Text.StringBuilder, ByVal filePart As String) As ....Read More
Rating
FilterByType - filtering the results of Type.FindMembers by thier return type
Total Hit (3379)
Rating
Dynamically setting an event handler for a class' event via reflection
Total Hit (2743) Here it is some code that shows how to use reflection to dynamically set an event handler for a class' event. «Code LangId=2» Sub TestSub() ' create a Person Dim pe As New Person() ' get a reference to the EventInfo for this object Dim peEv As EventInfo = pe.GetType.GetEv ....Read More
Rating
How to make a ComboBox do auto complete?
Total Hit (2888)
Rating
Building arrays on the fly
Total Hit (2868) VB.NET supports the creation of arrays on-the-fly, by using the New operator. For example, look at the following code, that uses GDI methods to display few connected lines «Code LangId=2» ' Get the Graphics object from the form. Dim gr As Graphics = Me.CreateGraphics ' Draw three straight line ....Read More
Rating
BinToDec - Convert from binary to decimal
Total Hit (3674) «Code LangId=2»' convert from binary to decimal Function BinToDec(ByVal value As String) As Long ' we just need a call to the Convert.ToInt64 static method Return Convert.ToInt64(value, 2) End Function «/Code»
Rating
GetNodeNestingLevel - Returns the nesting level of a TreeView's Node object
Total Hit (1888) «Code LangId=2» ' Returns the nesting level of a TreeView's Node object ' (returns zero for root nodes) Function GetNodeNestingLevel(ByVal node As TreeNode) As Integer Do Until (node.Parent Is Nothing) GetNodeNestingLevel += 1 node = node.Parent Loop End Function ....Read More
Rating
GetImageFormat - Retrieve the format of the input image, according on its extension
Total Hit (3048)
Rating
How to assign ItemData to combobox / listbox in VB.net
Total Hit (9841) There is no ItemData property in VB.net for ComboBox and ListBox but you can use another approach which will give you same functionality of ItemData. Use following code to test how you can assign ItemData. ItemData is generally used to store Id related to the Item of list. ....Read More
Rating
Running ILDASM from inside Visual Studio .NET
Total Hit (3021) Nothing beats ILDASM when it's time to understand what your VB.NET or C# compiler actually emits. In this case you should prepare a desktop shortcut to ILDASM so that you can run it quickly, and then open a Windows Explorer window on the Bin directory of your project, so that you can easily drag you ....Read More
Rating
Convert a binary, octal, or hexadecimal value to decimal
Total Hit (4001) The Convert class offers a few static methods that let you easily and quickly convert a binary, octal, or hexadecimal number(stored in a String) into the equivalent Byte, Short, Integer, or Long value. These are the methods in question: «Code LangId=2»Dim b As Byte = Convert.ToByte(value, fromB ....Read More
Rating
CreateDataReader_Sql - Create a SqlClient Data Reader
Total Hit (2567)
Rating
ClipboardGetText - Retrieving the text in the clipboard
Total Hit (3273)
Rating
Retrieve Windows and System directories
Total Hit (3107) In VB.NET you don't need to call the GetWindowsDirectory and GetSystemDirectory API functions to retrieve the path the Windows and System directories. Retrieving the System directory is as simple as calling the Environment.SystemDirectory property: «Code LangId=2» Dim sysDir As String = Environm ....Read More
Rating
ReplaceAccentedChars - Replacing all accented characters in the input string
Total Hit (2612) «Code LangId=2» ' Replace all accented characters in the input string ' Note: this function was written according to Italian rules. Rules for your ' language may vary, for example È may not be converted to "E'" as it is in ' Italian ' ' Example: ' Debug.WriteLine(ReplaceAccentedChars("È ....Read More
Rating
Ask a Yes/no question and return a Boolean
Total Hit (2828) «Code LangId=2» ' Ask a Yes/no question ' returns True if the user replies "Yes" ' Example: MessageBox.Show(AskYesOrNo("Do you like me?", "ME", True)) Function AskYesOrNo(ByVal text As String, ByVal title As String, _ ByVal defaultAnswer As Boolean) As Boolean Dim defButton As Messa ....Read More
Rating
Concatenate an array of strings with commas and a final "and", or other separators
Total Hit (2675) «Code LangId=2»' Concatenate an array of strings with commas and a final "and", ' or other separators ' ' Example: ' Debug.WriteLine("Choose one from " & CreateStringList(New String() {"item1", ' "item2", "item3"})) ' ' => Choose one from item1, item2 and item3 Function CreateStringL ....Read More
Rating
Checking (from a VB6 program) whether the .NET Framework is present
Total Hit (2644)
Rating
Mouse clipping with the Cursor class
Total Hit (2147) The Clip property of the System.Windows.Forms.Cursor class represents the rectangle within which the mouse cursor is confined, or Nothing if the mouse can move over the entire screen. This rectangle is in screen coordinates, so you must do some conversions if you want to confine the mouse to an obje ....Read More
Rating
This is a link to a different site How Do I...Pass an Array From .NET Code to VB6 Code?
Total Hit (708) This example demonstrates how to use a .NET object from a Visual Basic 6.0 application. The same technique can be used to create the object from any COM application including those built with Visual C++ 6.0, VBScript or JScript.
Rating
This is a link to a different site How to access a File Transfer Protocol site by using Visual Basic .NET
Total Hit (1247) 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 Do I...Execute Custom Code During Installation?
Total Hit (886) An application can consist not only of the traditional program files, but also of associated resources such as message queues, event logs, and performance counters that must be created on the deployment destination. You can configure your application to create these resources when the application is ....Read More
Rating
This is a link to a different site Use .NET Forms as Popup Windows
Total Hit (2270) This article provides a reusable class which you can use to convert a form into a popup which works in the same way as the drop-down portion of a ListBox or the popup controls for picking colours or tables in Office. In addition to wrapping all the functionality you need to ensure the popup is cance ....Read More
Rating
This is a link to a different site A .NET Implementation of the ZoomIn Utility
Total Hit (2183) The ZoomIn Utility enables you to look at any area of the screen and capture the display. This can be an excellent way to snip graphics from other applications or to work out the exact details of how other controls are drawn. A copy of this is provided along with Visual Studio as a tool and also as ....Read More
Rating
This is a link to a different site How Do I...Count rate of change?
Total Hit (942) Windows performance counters enable your applications and components to publish, capture, and analyze the performance data that applications, services, and drivers provide. You can use this information to determine system bottlenecks and fine-tune system and application performance. For example, you ....Read More
Rating
This is a link to a different site How To Recursively Search Directories by Using Visual Basic .NET
Total Hit (1556) This article demonstrates through code how to recursively search subdirectories for files, starting with a root directory. A search string is specified so that you can search for files that match a certain criteria. Each part of the code is explained as necessary. A working code sample is also provi ....Read More
Rating
This is a link to a different site ADO.NET: Populate a DataSet from a Database
Total Hit (588) Getting data from a database is easy, and working with data is easier than before. If you want the results from a database as a forward only, read-only stream of data, you can execute a command and retrieve the results using the DataReader. For examples on how to use a DataReader, see Retrieve Data ....Read More
Rating
This is a link to a different site Monitoring File System Events
Total Hit (1270) In some applications like file system explorers, file managers etc. it becomes necessary to keep an eye on file system changes. In traditional tools like VB6 this task usually required some third party component or Windows APIs. In .NET the FileSystemWatcher class from System.IO namespace provides e ....Read More
Rating


(Page 21 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.