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 76 of 133) 3985 Result(s) found 

 

TrimEx function using Regular Expression.
Total Hit (3167) Regular Trim function only removes preceding and trailing space but it does not remove all other white space characters e.g. New Line(\n), Carraige return(\r), Form Feed(\f), Tab(\t). To remove these characters you can easily implement function using Regular expression. ....Read More
Rating
Case insensitive replace in .net
Total Hit (12048) Sounds easy right.... but sometimes it can take your entire day how to do that using String Replace method. By default .Net string operations are case sensetive. In order to do case insensitive you need to use Strings.Replace method this is another replace method provided for VB programmers. «co ....Read More
Rating
How to clear all controls of a winform or user control?
Total Hit (4232) Here is the small code snippet to clear most of all controls on your form. This code also take care of containers like group box, panel ... etc. «code LangId=2» Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click ClearControls(Me.Contr ....Read More
Rating
Check service is installed or not, check status of a service and get list of all running services (VB.net)?
Total Hit (9771) In .Net using "System.ServiceProcess" namespace now its so easy to work with windows services. This article will show you how easy it is to get list of all running service or to check status of a single service by name. To control (i.e start/stop/paush) or retrive information of any service you need ....Read More
Rating
Drag and Drop files/folders from explorer and display in listbox
Total Hit (4140) This code will show you how simple it is to get file/folder list dragged from explorer. «b»Step-By-Step Example«/b» - Create a Windows Application - Add one ListBox control on the form - Add the following code in form1 - Run the project and try to drag and drop some files into listbox from ....Read More
Rating
GetListSubItemFromPoint : Detect Listview item/subitem click (VB.net)
Total Hit (18039) Sometimes you might want to determine which listview column clicked by user. You can find listitem (i.e. row) using GetItemAt method but there is no direct property or method in .Net to determine clicked subitem (i.e. column) based on (X,Y) coordinates. Here is the small code snippet to accomplish t ....Read More
Rating
How to get character index from cursor position in textbox/richtextbox control.
Total Hit (26537) Sometimes you might need to find out the closest character index in textbox/richtextbox from your mouse position. If you are doing drag n drop text and you want to drop it at a specified location in the textbox based on your current mouse position then you will surely need this code. This simple cod ....Read More
Rating
Get Registered Company Name and Registered Owner of the machine on Win NT
Total Hit (2336) «code LangId=2» '//Get Registered Owner name on current machine Function GetOwner() As String Dim regOwner As RegistryKey = Registry.LocalMachine.OpenSubKey("SOFTWARE\Microsoft\Windows NT\CurrentVersion") GetOwner = regOwner.GetValue("RegisteredOwner") End Function ....Read More
Rating
Using "Date" intervals in VB.NET
Total Hit (2489) The versatile Date datatype in VB.NET provides a large amount of built in functionality to manipulate dates and times. The ability to add, subtract and compare date values is very useful in particular. For example, suppose you are managing hundreds of clients in an insurance company. Since insu ....Read More
Rating
Convert dates entered by user as strings to VB Date values.
Total Hit (3625) This code formats a date string entered by the user, adding slashes and correct number of year digits and converts it to a proper date format. You can use the following code to make your user interface more friendly. It will help you in correcting and preventing mistakes over what date is entered. ....Read More
Rating
How to create XP-Style Balloon Tooltip in VB.net (Updated)
Total Hit (36533) Using api you can create ballon style tooltip. You can also set various parameters for tooltip i.e. Delay, Visible Time, Style, Title, Description , Font, TextColor, BackColor etc... Note: If tooltip is OnDemand ToolTip then VisibleTime and Delay Properties have no effect. To set VisibleTime and ....Read More
Rating
Implementing Balloon ToolTip with sound, System Tray Icon and Context menu
Total Hit (30256) In this article we will learn how to implement Balloon ToolTip with Sound notification and System Tray with Context menu in VB.net Since there is no inbuilt classes in .net to implement Balloon ToolTip so we have to do this using API. This code contains 2 important classes «b»CToolTipNotif ....Read More
Rating
A Complete guide to .net Framework
Total Hit (1669) The Microsoft .NET Framework is a platform for building, deploying, and running XML Web services and applications. It provides a highly productive, standards-based, multiple-language environment for integrating existing investments with next-generation applications and services, as well as the agili ....Read More
Rating
How to do Asynchronous Loading of Data Without Threading.
Total Hit (3709) Sometimes we need to work with long running task but still we dont want to stop responding other events in this type of situation mostly we will think about implementing threading. But here is more easy way without implementing threading. Today we will discuss about IAsyncResult class found in Sy ....Read More
Rating
Convert DataReader to DataTable
Total Hit (3723) There is no direct way to convert dataraeader to datatable in ADO.net so I wrote this function which is really handy. Happy Prpgramming...
Rating
HTML Color Coding for various Languages (i.e. VB, VB.net, SQL).
Total Hit (10641) I spent several hours to find some article to convert Source Code into HTML with different colorcode for keywords/literal/comment/function. But no luck and finally I wrote my own ColorCoding Engine. This article will show you how you can utilize power of Regular Expression to solve your very complex ....Read More
Rating
Dealing with Single Quote (') problem in SQL Server while inserting data.
Total Hit (1941) I dont know how many times I had to face single quote problem during my day to day programming task. When you pass any character or varchar datatype to sql server you have to be very careful if your data contains single quotes. You have to replace (') with ('') so sql server can understand it proper ....Read More
Rating
Download HTML page from a given URL and then clean HTML tags, Comments, Script blocks.
Total Hit (5612) Sometimes we need to retrive only HTML text from a given URL (i.e. http://msdn.microsoft.com/vbasic/) In this article I have used Regular Expression to perform this complex task. To do this we nned to perform following steps 1) Download HTML page from given URL 2) Grab Body of HTML 3) Perfor ....Read More
Rating
This is a link to a different site Getting Started with ObjectSpaces
Total Hit (2120) ObjectSpaces is one of the exciting features coming in the new version of .NET Framework, codename "Whidbey". This article will explain what ObjectSpaces are and will provide a step-by-step guide to a first experience with ObjectSpaces.
Rating
This is a link to a different site How To: Host a Remote Object in a Windows Service
Total Hit (1275) Objects called using the .NET Remoting infrastructure can be hosted by ASP.NET, custom executables or Windows services. This How To shows you how to host a remote object in a Windows service and call it from an ASP.NET Web application.
Rating
This is a link to a different site Programmatically Set NTFS File System Folder Permissions by Using Microsoft Visual Basic .NET
Total Hit (3418) This step-by-step article describes how to programmatically set NTFS file system folder permissions by using Microsoft Visual Basic .NET.
Rating
This is a link to a different site Executing Custom Code During Installation
Total Hit (1525) An application can consist of not only traditional program files, message queues, event logs, and performance counters on the deployment destination but also custom code that must be executed on the deployment destination. You can configure your application to execute the custom code when your appli ....Read More
Rating
This is a link to a different site Executing Assembly Code with the CallWindowProc API in Visual Basic .NET
Total Hit (1029)
Rating
This is a link to a different site Connection strings for various .Net Data Providers
Total Hit (2281) 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 Automatically Upgrade Your .NET Applications On-the-Fly
Total Hit (1204) Rich client, (or in .NET terminology, "Windows Forms") applications provide a great user experience in terms of functionality, usability, operating system and inter-application integration. Unfortunately, they have also suffered from a relatively high total cost of ownership compared to browser-base ....Read More
Rating
This is a link to a different site Microsoft .NET Framework FAQ
Total Hit (750)
Rating
This is a link to a different site How do I launch and monitor external programs from .NET?
Total Hit (2354) This article give you basic introduction to System.Diagnostics.Process namespace which is really great addition in VB.net.
Rating
This is a link to a different site Leverage Regular Expressions
Total Hit (1988) Regular expressions provide a simple and efficient way—far beyond the capabilities most conventional programming languages offer—to search and replace text. However, relatively few developers are familiar with this powerful tool. I'll explain how you can leverage regular expressions from VB.NET to s ....Read More
Rating
This is a link to a different site Translating from a Custom Markup to HTML using Regular Expressions
Total Hit (1827) If you run a messageboard-type site, you may want to allow users to enter certain HTML tags, but not others. For example, you may want users to be able to use tags like <b> and <u>, but any other HTML tags would be displayed as-is. That is, if a user were to enter as a message: ....Read More
Rating
This is a link to a different site Microsoft Beefs Up VBScript with Regular Expressions
Total Hit (1224) In this article, I'll describe all objects related to VBScript Regular Expressions, summarize common regular expression patterns, and provide some examples of using regular expressions in code.
Rating


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