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 )

Mathematical User-Defined Functions
Total Hit (2619) Introduction Mathematical UDFs Factorial PercentFrom PercentValue Degree Allocation Combination -------------------------------------------------------------------------------- Introduction I would like to write the series of articles about useful User-Defined Functions gro ....Read More
Rating
Date and Time User-Defined Functions
Total Hit (3848) Introduction Date and Time UDFs DatePart TimePart GetWorkingDays AddWorkingDays FirstMonthDay LastMonthDay -------------------------------------------------------------------------------- Introduction I would like to write the series of articles about useful User-Defined Fu ....Read More
Rating
String User-Defined Functions
Total Hit (2628) Introduction String UDFs StrIns StrDel StrSeparate StrCHARINDEX StrREPLACE StrREVERSE «B»Introduction«/B» I would like to write the series of articles about useful User-Defined Functions grouped by the following categories: ==>Date and Time User-Defined Functions ==>Mat ....Read More
Rating
Some useful UDF for SQL Server 2000
Total Hit (2924) Introduction UDF examples Database creation date Date the object was created Get date part of datetime value Get time part of datetime value Get the number of working days between two dates «B»Introduction«/B» SQL Server 2000 supports User-Defined Functions (UDFs) - one or more Tr ....Read More
Rating
mark the stored procedure to automatic execution
Total Hit (2765) You can use the sp_procoption system stored procedure to mark the stored procedure to automatic execution when the SQL Server will start. Note. Only objects in the master database owned by dbo can have the startup setting changed and this option is restricted to objects that have no parameters. ....Read More
Rating
select only date or time part of a datetime value
Total Hit (2658)
Rating
Scripts to automatically get notified if a database grew due to the autogrowth option being turned on.
Total Hit (2884)
Rating
How to create new tempDB is tempDB is currepted or marked as suspect
Total Hit (3051) The following steps explain how you can create a new tempdb database. With this workaround, you are able to successfully start the SQL Server service. If they exist, rename the current Tempdb.mdf and Templog.ldf files. If the files do not exist, that is one possible reason for the suspect status, ....Read More
Rating
Viewing information about blocked processes is slightly uncomfortable process in SQL Server. Here are three SPs that make it a little easier.
Total Hit (2797)
Rating
(Screen Saver) diffuseGravity
Total Hit (2858) This screen saver simulates 4 particles with gravity, and draws color changing lines between them. Gravity, refresh, and number of color bars are fully configurable, and you end up with some VERY neat pictures. I used the screen saver template at vbhelper.com as a starting point. ....Read More
Rating
Singleton Design Patten in VB.NET
Total Hit (2802) The Singleton pattern ensures that only one instance of a class is created. All objects that use an instance of that class use the same instance. This is the most common design pattern, and easy to implement, but very powerful when used properly.
Rating
Moving a Window Without a Titlebar
Total Hit (3415) «Code LangId=1»'Place this code in the declarations section of your form: Option Explicit Declare Function ReleaseCapture Lib "user32" () As Long Declare Function SendMessage Lib "user32" Alias "SendMessageA" (ByVal hwnd As _ Long, ByVal wMsg As Long, ByVal wParam As Long, lParam As Any) As Lo ....Read More
Rating
Centering a Window with a Taskbar Visual
Total Hit (3102) «Code LangId=1»Option Explicit Private Const SPI_GETWORKAREA = 48 Private Declare Function SystemParametersInfo& Lib "User32" Alias _ "SystemParametersInfoA" (ByVal uAction As Long, ByVal uParam As _ Long, lpvParam As Any, ByVal fuWinIni As Long) Private Type RECT Left As Long Top As Long ....Read More
Rating
Changing Display Settings on the Fly
Total Hit (3830) «Code LangId=1»'Place this code in a Module: 'Place this code in a Module: Option Explicit Private Declare Function lstrcpy Lib "kernel32" Alias "lstrcpyA" (lpString1 As _ Any, lpString2 As Any) As Long Const CCHDEVICENAME = 32 Const CCHFORMNAME = 32 Private Type DEVMODE dmDevi ....Read More
Rating
Flashing Form Caption
Total Hit (3009) «Code LangId=1»'Ever wanted to get the users attention without one of those annoying BEEPs, or just have a 'little fun? Here is a good way to do it. Flash the caption of your Form. That should get 'their attention! 'Place this code into a Module: Option Explicit Declare Function FlashWindow L ....Read More
Rating
Keeping a Window On Top
Total Hit (3006) «Code LangId=1»'Place this into your Module: Declare Function SetWindowPos Lib "user32" (ByVal hwnd As Long, _ ByVal hWndInsertAfter As Long, ByVal x As Long, ByVal y As Long, _ ByVal cx As Long, ByVal cy As Long, ByVal wFlags As Long) As Long Global Const SWP_NOMOVE = 2 Global Const SWP_NO ....Read More
Rating
LOG Files
Total Hit (2684) «Code LangId=1»'Just place this in a Module and you can call it from anywhere in your program! Sub SetLog(Message As String) 'This Sub writes to a LOG file. Dim theFile As String, theMessage As String theFile = App.Path & "\PRGMLOG.TXT" theMessage = Message & vbCrLf Open theFile For Append A ....Read More
Rating
Right Click PopUp Menu
Total Hit (1535) «Code LangId=1»'First, create a menu using menueditor. Add all of your menu items as if you were just making 'a regular menu. Now set the VISIBLE property of the main menu item to false (see below, set 'the MNUEDIT item's VISIBLE to false). Like this: 'mnuEdit '---mnuUndo '---mnuRedo '---m ....Read More
Rating
HashTable - a class module for storing (key,value) pairs
Total Hit (2529)
Rating
StringBuilder Class. Very efficient way to append string
Total Hit (2924)
Rating
String operation in vb.net
Total Hit (1895) The following example uses some of the methods discussed in the Basic String Operations topics to construct a class that performs string manipulations in a manner that might be found in a real-world application. The MailToData class stores the name and address of an individual in separate properties ....Read More
Rating
How to count the number of lines in an external OS file? Will work for ASCII files only.
Total Hit (3289)
Rating
How to find the number of days in a month?
Total Hit (2498)
Rating
This is the solution to the February Reader's Challenge in the SQL Server Magazine.
Total Hit (2574)
Rating
This is the solution to the February Reader's Challenge in the SQL Server Magazine.
Total Hit (2469)
Rating
How to store different datatypes in a column & extract them
Total Hit (2597)
Rating
How to get the maximum date value in a group or NULL if present?
Total Hit (2856)
Rating
How to get monday date given any date? This will work with the default SQL Server DATEFIRST setting & similar logic can be used to determine SUNDAY date etc.
Total Hit (2531)
Rating
How to copy text values from one table to another? This one demonstrates for a text value in a single row.
Total Hit (2554)
Rating
How to calculate AGE in years? The DATEDIFF function in MS SQL Server gives the distance between year boundaries & as such cannot be used to calculate the age.
Total Hit (2843)
Rating


(Page 95 of 133) 3968 Result(s) found  ... 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 ...

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

© 2008 BinaryWorld LLC. All rights reserved.