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 (1647)
VB.net VB.net (735)
C# C# (14)
ASP.net ASP.net (779)
ASP ASP (41)
VC++ VC++ (25)
PHP PHP (0)
JAVA JAVA (4)
JScript JScript (5)
  Database
» SQL Server (701)
» 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 1 of 133) 3975 Result(s) found 

How to test CDO email using VB Script.
Total Hit (1046) Sometimes we need to check CDO on the server with minimum amount of time. Following script will send an email using CDO object library. If you dont have CDO then it will throw an error. - Create an empty file in notepad. - Copy/Paste the following script - Save file as CDOMailTest.vbs - Do ....Read More
Rating
Problem: After installing SQL Server 2005 (Yukon) Query Analyzer Color Coding not working
Total Hit (635) I had this weird problem after installing SQL Server 2005. Here is few easy steps to fix it. The solution was to re-register a file in the binn folder: sqllex.dll For me, sql server is installed at C:\Program Files\Microsoft SQL Server So, to fix the problem, I did this. 1. Click Start ....Read More
Rating
How to configure E-Mail Subscription with SQL Reporting Services.
Total Hit (769) When you install reporting services it will ask you for SMTP settings. If you skip those settings then probabbly when you create new subscription you will only see "file share" option. In order to enable "Email Subscription" you need to do couple of steps. 1. open the RSReportServer.config fil ....Read More
Rating
SQL 2000 Install Generates PENDING FILE OPERATIONS Error
Total Hit (683) When trying to install SQL Server 2000 on an NT machine sometimes you may receive the following error. <font color=red><b>"A previous program installation created pending file operations on the installation machine. You must restart the computer before running setup."</b></font> SQL Setup is ....Read More
Rating
How to find and sort files based on creation time
Total Hit (1233) The following code will sort file list based on CreationTime «code LangId=2»Option Explicit On Option Strict On Imports System.Collections Imports System.IO Module Module1 Private Class CreateTimeComparer Implements IComparer Public Function Compare(ByVal x ....Read More
Rating
How to auto refresh page
Total Hit (2014) Here is the script to refresh page automatically at certain interval «code LangId=4» <html> <HEAD> <script type="text/javascript"> <!-- Begin /* Because this is a true refresh, you might want to put a notice on the page that it refreshes every "X" minutes */ function reFresh() ....Read More
Rating
IIS Resource Kit
Total Hit (603) <b>Internet Information Services (IIS) 6.0 Resource Kit Tools</b> The IIS 6.0 Resource Kit Tools can help you administer, secure, and manage IIS <a href='http://www.microsoft.com/downloads/details.aspx?familyid=56fc92ee-a71a-4c73-b628-ade629c89499&displaylang=en'>http://www.microsoft.com/downl ....Read More
Rating
Accessing FTP servers in .NET applications
Total Hit (818) <p>[From: &quot;Accessing FTP servers in .NET applications&quot;,<br> &lt;URL:<a href="http://dotnet.mvps.org/dotnet/faqs/?id=ftp&lang=en">http://dotnet.mvps.org/dotnet/faqs/?id=ftp&amp;lang=en</a>&gt;]<br> Accessing FTP servers in .NET applications<br> Samples:<br> <br> How to access a File Tr ....Read More
Rating
How to compress files and data in VB.net
Total Hit (859) <b>&quot;Compressing files and data&quot;,</b><br> <a href="http://dotnet.mvps.org/dotnet/faqs/?id=compression&lang=en"> http://dotnet.mvps.org/dotnet/faqs/?id=compression&amp;lang=en</a><br> <br> Compressing files and data<br> CAB format:<br> Microsoft Cabinet Software Development Kit<br> <a ....Read More
Rating
How to find start/end date of Previous Quarter
Total Hit (861) «code LangId=6»declare @PrevQtrDate datetime declare @PrevQtrStartDate datetime,@PrevQtrEndDate datetime declare @ReportDate datetime set @ReportDate=getdate() set @PrevQtrDate=dateadd(q,-1,@ReportDate) Print @PrevQtrDate set @PrevQtrStartDate=cast(month(@PrevQtrDate) as varchar(10)) + ' ....Read More
Rating
Displaying RTF formatted text in SQL 2005 Reporting services
Total Hit (5957) I haven't tried this but it may be helpful to someone who is trying to display RTF formatted text on their report. Crystal Report Support RTF/HTML format but RS 2005 doesnt support. May be MS will add in the next release. Just follow these steps: Compile the code below it into a class Firs ....Read More
Rating
Useful Stored Proc to get Foreign Key Information of any DB for any table(s)
Total Hit (698) «code LangId=6»Create proc spFKInfo @TableName varchar(100)='%', @DBName varchar(100)='Northwind' as declare @sql varchar(max) set @sql=' SELECT RELATION= FK.TABLE_SCHEMA + ''.'' + FK.TABLE_NAME + ''.'' + CU.COLUMN_NAME + '' -> '' + PK.TABLE_SCHEMA + ''.'' + PK.TABLE_NAME + ''. ....Read More
Rating
How to Implement IRR Financial function like Excel IRR in SQL Server using T-SQL
Total Hit (6155) Have you ever wondered how to use same functionality of IRR function of Excel in T-SQL. Well unfortunately there is no inbuilt function in T-SQL but we can create a user defined function to implement the same logic as IRR of Excel/VB. «code LangId=6»create table IncomeTable ( amt float, d ....Read More
Rating
How to find all tables with/without Primary Key from a specified Database
Total Hit (1447) Primary Key is important constraint to maintain integrrity and speed. Here is the query if you want to find all tables without Primary key. <u><b>Note: Please change Northwind with your DB name.</b></u> <b>All tables without primary key from Northwind Database</b> «code LangId=6»Select * from ....Read More
Rating
generate script for Stored procs, Search for string with in stored proc(s) code, count line of stored proc(s)
Total Hit (875) The following script will search for all stored proc and user defined function for specific substring. So if you looking for which proc is using "CREATE INDEX" code you can easily pinpoint that using this code. It will list size of all tables or table with specific name (use wildcard) It will co ....Read More
Rating
This is a link to a different site SQL Reporting Services with Dynamic Column Reports
Total Hit (422) Hi all, this is the second time I am getting a task for dynamically creating reporting columns. In the first instance, I had done it by first binding the data to a DataGrid (by setting the auto-generated columns feature to true and then exporting to Excel). In the second case, the task was to genera ....Read More
Rating
This is a link to a different site How to access a File Transfer Protocol site by using Visual Basic .NET
Total Hit (417) 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 To Write Pluggable Protocol to Support FTP in Managed Classes by Using Visual Basic .NET
Total Hit (399) This step-by-step article describes how to write pluggable protocol by using classes from the System.Net namespace. The Microsoft .NET Framework provides a layered, extensible, and managed implementation of Internet services that can be integrated quickly and easily into your applications. The i ....Read More
Rating
This is a link to a different site GotDotNet User Sample: FTP Client in .NET
Total Hit (472) This is a simple FTP protocol client component class written in C# using .NET sockets. It implements core functionality of the FTP protocol, so you can connect, change working directory, download and upload files. Masks will be added later.
Rating
This is a link to a different site SSIS Script Task Variable Write Example (Using LockOneForWrite)
Total Hit (548) I had some difficulty finding a succinct code example for how to change the value of a variable in a SQL Server 2005 SSIS Script task, so I thought I would add one here now that I think I've figured it out. (Is anyone besides me disappointed by the lack of examples in the Books Online and Help?) ....Read More
Rating
This is a link to a different site Bulk Edit GridView (ASP.net 2.0)
Total Hit (417) GridView is a tremendously useful control in ASP.NET 2.0. Despite being much improved from the DataGrid of the ASP.NET 1.x era, GridView still lacks some features which always seem to be requested. This is a multipart post on how to customize GridView to add some of this missing functionality. I' ....Read More
Rating
This is a link to a different site Solutions to Top Four Questions on DataGrid Web Server Control
Total Hit (396) The Top Four Questions that are addressed in this articles are, 1. Editing and Inserting Multiple Rows at Once. 2. Manipulating DataSource Values while binding to DataGrid 3. DropDownList in Editable DataGrid 4. Showing and Hiding Columns dynamically ....Read More
Rating
This is a link to a different site How To Install and Configure a Virtual Private Network Server in Windows 2000
Total Hit (709) A virtual private network (VPN), allows you to connect components to a network, via another network, such as the Internet. You can make your Windows 2000 Server-based computer a remote-access server so that other users can connect to it by using VPN, and then access shared files on your local drives ....Read More
Rating
This is a link to a different site How to setup a VPN Server & Client - WinXP [NOT 56k Friendly]
Total Hit (821)
Rating
This is a link to a different site Databinding methods such as Eval(), XPath(), and Bind() can only be used in the context of a databound control
Total Hit (596) You might have wanted to use inside a databound templated server control (e.g. the FormView or the GridView) several dependent dropdownlists. The listitems in each dropdownlist would change based on the selection of the previous dropdownlist, e.g. the country selection would change the listitems of ....Read More
Rating
This is a link to a different site How to grant permissions to a custom assembly that is referenced in a report in Reporting Services
Total Hit (291) This article describes a problem that occurs when you access a custom assembly in your report that does not have sufficient permissions on the resources in your environment. The article also provides steps to grant permissions to the custom assemblies that are used in the reports. ....Read More
Rating
This is a link to a different site Custom Assembly in Reporting Services
Total Hit (438) SQL Server 2000 Reporting Services is a server-based reporting solution that can deliver interactive Web–based reports. This article describes a problem that occurs when you access a custom assembly in your Reporting Services report that does not have sufficient permissions on the resources in your ....Read More
Rating
This is a link to a different site Querying the SQL Server System Catalog FAQ
Total Hit (284) Data Types How do I find the data types of the columns of a specified table? How do I find the LOB data types of a specified table? How do I find the columns that depend on a specified data type? How do I find the computed columns that depend on a specified CLR user-defined type or alias d ....Read More
Rating
This is a link to a different site Top Questions about the DataGrid Web Server Control
Total Hit (423) Windows Forms versus Web Forms DataGrid Controls Controlling Column Width, Height, and Alignment Customizing Column Layout in Display and Edit Mode Formatting Dates, Currency, and Other Data Showing and Hiding Columns Dynamically Adding Columns Dynamically Adding New Records to a Data Source U ....Read More
Rating
This is a link to a different site Free SQL 2000/2005 scripting tool (includes missing feature from 2005 i.e. IF EXISTS -> DROP)
Total Hit (147) http://www.sqlteam.com/publish/scriptio/
Rating


(Page 1 of 133) 3975 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 ...

Recommanded Links

 

Home  |  Comment  |  Contact UsPrivacy PolicyTerms & Conditions

© 2008 BinaryWorld LLC. All rights reserved.