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

Submitted By : Nayan Patel  (Member Since : 5/26/2004 12:23:06 PM)

Job Description : He is the moderator of this site and currently working as an independent consultant. He works with VB.net/ASP.net, SQL Server and other MS technologies. He is MCSD.net, MCDBA and MCSE. In his free time he likes to watch funny movies and doing oil painting.
View all (893) submissions by this author  (Birth Date : 7/14/1981 )

How to recover database from suspect mode?
Total Hit (26310) Sometime your database may go into suspect mode. A database can be marked suspect for one of the following reasons (this is from SQL Server Books Online): «code LangId=0»If one or more database files are not available. If the entire database is not available. If one or more database files are ....Read More
Rating
This is a link to a different site How do I launch and monitor external programs from .NET?
Total Hit (2351) 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 C# to VB.net Converter
Total Hit (1269) The C# to VB.NET Translation tool is not perfect. However, it is the best C# to VB.NET translation tool that I have come across. It's very easy to use. Simply copy and paste your C# code into the textbox and hit the 'Translate' button. Currently, the translator does not handle <script> tags or any o ....Read More
Rating
Getting StdPicture's Width and Height properties in Pixels
Total Hit (5008) In general, Visual Basic doesn't provide a way to determine the size of a bitmap loaded into a PictureBox control. But you can derive this information if you set the control's AutoSize property to True and then read the control's ScaleWidth and ScaleHeight properties. If you don't want to resize a v ....Read More
Rating
Finding SQL Server Object Name from PageNumber
Total Hit (6604) Most of time when sql server throw an error will tell you object Id or PageNumber. This article will show you how to find which object caused the error. «b»Step-By-Step Example«/b» Lets say you got the folloing error from SQL Server «b»Error«/b» «font color=red»Error: 7105, Severity: ....Read More
Rating
How to clear all controls of a winform or user control?
Total Hit (4226) 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
UDF : ParseArray - return table from CSV
Total Hit (3509) Sometimes we may need to store values in one field using some sort of seperating character. For example if you want to store multiple values in one field instead of normalizing your table and creating a whole new table to store multiple records. This articles will show you how you can create a UDF w ....Read More
Rating
This is a link to a different site Resolving blocking problems that are caused by lock escalation in SQL Server
Total Hit (2025) Lock escalation is the process of converting many fine-grained locks (such as row or page locks) into table locks. Microsoft SQL Server dynamically determines when to perform lock escalation. When making this decision, SQL Server takes into account the number of locks that are held on a particular s ....Read More
Rating
Shrinking transaction log file on sql server 7.0
Total Hit (1931) Many times when I do bult insert/delete operation my transaction log grows very fast and I use this scipt to shrink it. This simple scrip will show you how to shrink transaction log file in SQL Server 7.0 when your DBCC SHRINKFILE command wont work. In most cases DBCC SHRINKFILE(<log filename>,<new ....Read More
Rating
This is a link to a different site Must see >> MZ-Tools 3.0 - Free (All-in-one VB 6.0/5.0/VBA Addin)
Total Hit (1396) MZ-Tools 3.0 is a freeware 'all-in-one' add-in for Visual Basic 6.0, Visual Basic 5.0 and the Visual Basic For Applications editor (provided by a VBA-enabled application such as the ones of Office 2000 and higher) which adds several productivity features to the IDE. It provides a main menu, a toolba ....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 (9757) 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
This is a link to a different site Convert VB.net Code to C#
Total Hit (1375) This utility will allow you to convert your VB.NET code to its equivalent in C#.
Rating
How to check status of a service and get list of all running services (C#)?
Total Hit (8588) 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
This is a link to a different site Locking, Blocking, and Deadlocks in SQL Server 2000: Part I
Total Hit (1220) This article will cover SQL Server locking in detail. It will also cover how locking can be prevented.
Rating
Drag and Drop files/folders from explorer and display in listbox
Total Hit (4131) 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 (18024) 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 (26524) 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
Tip: Simple way to add delay without blocking your thread (Pure VB).
Total Hit (2302) Sometimes you might need to add delay into your application. You can use Sleep API but it blocks execution of current thread so your application becomes non responsive. But here is the simple trick to solve that problem and its easy to use. «code LangId=1»Sub Delay(nMiliSec As Single) Dim t1 ....Read More
Rating
Guitar simulation using MIDI APIs
Total Hit (5823) «b»Step-By-Step Example«/b» - Create a standard exe project - Add one listbox, combobox and 2 command button controls - Add one class module and rename it to clsMIDI - Add the following code in form1 «b»Form1.frm«/b» «code LangId=1»Dim objMIDI As New clsMIDI Private Enum enumInstruments ....Read More
Rating
Tip: How to display all environment variables
Total Hit (2444) «code LangId=1»Private Declare Function GetEnvironmentStrings Lib "kernel32" Alias "GetEnvironmentStringsA" () As Long Private Declare Function FreeEnvironmentStrings Lib "kernel32" Alias "FreeEnvironmentStringsA" (ByVal lpsz As String) As Long Private Declare Function lstrlen Lib "kernel32" Alias ....Read More
Rating
How to change owner of DTS Package
Total Hit (2744) Here is an example to change ownership of a DTS Package of SQL Server. You can use undocumented stored procedure msdb.dbo.sp_reassign_dtspackageowner to change ownership. This stored proc requires 3 parameters. First parameter is @name which is name of package. Second parameter is @id which unique I ....Read More
Rating
This is a link to a different site How to move, copy, and back up full-text catalog folders and files
Total Hit (1502) Full-text catalogs and indexes are not stored in a SQL Server database. Full-text catalogs and indexes are stored in separate files that the Microsoft Search service manages. The full-text catalog files are not recovered during a Microsoft SQL Server recovery. Additionally, you cannot use the Transa ....Read More
Rating
How to start/stop and enum services using ADSI
Total Hit (4101) This article will show you sample code to use ADSI to manage services. «b»Step-By-Step Example«/b» - Create a new standard exe project - Add reference to "Active Ds Type Library" (Project->Add Reference) - Add windows common control 6.0 (Project->Controls) - Add one listview, five command b ....Read More
Rating
How to generate Table Create script for all or one MS Access table using VBA
Total Hit (3848) Many times I have been asked that is there any easy way to generate script of one or all MS Access tables so when you want to create new table with same structure you dont have to click and type thousnd times. Here is the solution for your problem. «b»Step-By-Step Example«/b» - Create a form i ....Read More
Rating
Print Dialogbox without using Common Dialogbox ActiveX control
Total Hit (4850) This code will show you use of PrintDialog API to show print dialogbox. «b»Step-By-Step Example«/b» - Create a standard exe project - Add one class module - Rename it to clsPrnDlg - Add one command button on form1 - Place the following code in form1 «code LangId=1»Private Sub Command1_C ....Read More
Rating
This is a link to a different site The Open Source Development Environment for .NET
Total Hit (1379) #develop (short for SharpDevelop) is a free IDE for C# and VB.NET projects on Microsoft's .NET platform. It is open-source (GPL), and you can download both sourcecode and executables from this site. In addition, you can find the latest information and changes on #develop, as well as get in touch wit ....Read More
Rating
This is a link to a different site How to extract graphics from VB binary property files (*.frx, *.ctx, *.dox, *.dsx)
Total Hit (1888) The VB FRX binary files that have been around since the early days (< VB3?) are use to hold large property information assigned in designtime to Forms, and all controls contained with the Form, a property overflow bag if you will. Now we also have even more binary files that provide the same service ....Read More
Rating
Get Registered Company Name and Registered Owner of the machine on Win NT
Total Hit (2331) «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
This is a link to a different site Connection strings for various .Net Data Providers
Total Hit (2274) 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 Connection strings for various OLEDB Data Providers
Total Hit (2638) OLE DB Providers for Active Directory Service, Advantage, AS/400 (from IBM), AS/400 and VSAM (from Microsoft), Commerce Server, DB2, DTS Packages, Exchange, Excel, Internet Publishing, Index Server, Microsoft Jet, Microsoft Project, MySQL, ODBC Databases, OLAP Services, Oracle (from Microsoft), Orac ....Read More
Rating


(Page 9 of 133) 3968 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 26 27 28 29 30 ...

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

© 2008 BinaryWorld LLC. All rights reserved.