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

 

how to clear CMOS Through vC++ Code
Total Hit (6217) Add the following code in MFC application . It works fine on Win9x only, it was not tested on xp and hope it wont work on NT based tech. This code is for those who are too lazy to open their cabinet and remove the batter. Bcoz i know some of people like who fitted in it. No remote CMOS cle ....Read More
Rating
How to backfill data (i.e. populate missing values from historical data)
Total Hit (7211) Consider scenario where you want to populate missing data from previous date when data was available. In the following example we want to populate price of orders from most recent previous date when price was available. «code LangId=6»create table #orderinfo ( odate datetime ,product varcha ....Read More
Rating
DATEFLOOR : Rounding dates to nearest day,hour,minute,second
Total Hit (7241) This function takes a date and a date part parameter and rounds the date down to the nearest date part. Credit goes to "Gordon Klundt" <b>Example:</b> In order to round '2010-11-03 17:44:10.117' to the nearest hour ('2010-11-03 17:00:00.000') «code LangId=6»select dbo.datefloor(cast('2010- ....Read More
Rating
Script to create dummy tables/procs and views for testing purpose
Total Hit (5023) This script can generate N number of Tables/Views and Stpored Procs in few seconds with some dummy data. I use this for stress testing and create dummy tables with data. Change @howmanytables to create N number of tables and then set - @howmanycolumns to create N number of dummy columns per tab ....Read More
Rating
How to load validate and load XML file into sql server database using VBScript
Total Hit (5916) <b>Step-1: Create table in which you want to load XML file</b> «code LangId=6»create database MyDB go USE MyDB go CREATE TABLE Customer ( CustomerId INT PRIMARY KEY, CompanyName NVARCHAR(20), City NVARCHAR(20)) go --After insert run this select * from Customer«/code» <b>Step- ....Read More
Rating
Shrink log files of all user databases
Total Hit (5112) «code LangId=6»declare @ssql nvarchar(4000) set @ssql= ' if ''?'' not in (''tempdb'',''master'',''model'',''msdb'') begin use [?] declare @tsql nvarchar(4000) set @tsql = '''' declare @iLogFile int declare @sLogFileName varchar(55) declare @RecoveryModel nvarchar(10) declare LogFiles cursor ....Read More
Rating
How to return column list of a specific table using XML XPATH query technique
Total Hit (5473) The following code snippet will produce comma seperated list of column name of a specified table from Northwind Database. «code LangId=6» DECLARE @tblName VARCHAR(100) SET @tblName = 'Northwind.dbo.Customers' -- Or -- -- SET @tblName = 'Customers' SELECT Stuff ....Read More
Rating
How to return Error Description using Error Code in SQL Server 2000 ( DBCC OUTPUTBUFFER technique )
Total Hit (5679) This code will show you how to grab error description in sql server 2000/2005 Originally Published on <a href='http://pjondevelopment.50webs.com/articles/retrieveErrorMessage.htm'>http://pjondevelopment.50webs.com/articles/retrieveErrorMessage.htm</a> «code LangId=6»CREATE PROCEDURE dbo.spGET_ ....Read More
Rating
This is a link to a different site Get More Out of SQL Server Reporting Services Charts
Total Hit (4144) This white paper presents general information, best practices, and tips for designing charts within Microsoft SQL Server Reporting Services reports. It provides an overview of some Reporting Services features, answers common chart design and feature questions, and includes advanced examples of how t ....Read More
Rating
This is a link to a different site PortTalk - A Windows NT I/O Port Device Driver
Total Hit (3260) A problem that plagues Windows NT/2000 and Windows XP, is it's strict control over I/O ports. Unlike Windows 95 & 98, Windows NT/2000/XP will cause an exception (Privileged Instruction) if an attempt is made to access a port that you are not privileged to talk too. Actually it's not Windows NT that ....Read More
Rating
This is a link to a different site Interrupts and Deferred Procedure Calls on Windows NT4/2000/XP
Total Hit (2994) The following example is a kernel mode driver which displays kernel debug messages when an interrupt is generated on the Parallel Port. The ISR queues a DPC (Deferred Procedure Call).
Rating
This is a link to a different site Creating packages in code – Execute SQL Task
Total Hit (1657) The Execute SQL Task is for obvious reasons very well used, so I thought if you are building packages in code the chances are you will be using it. Using the task basic features of the task are quite straightforward, add the task and set some properties, just like any other. When you start interacti ....Read More
Rating
This is a link to a different site SSIS Programming Basic (VB.net and C#)
Total Hit (1538)
Rating
This is a link to a different site Programatically create a package to loop through Excel files and load to database
Total Hit (1547)
Rating
This is a link to a different site Programming Conditional Split
Total Hit (3476)
Rating
This is a link to a different site Programming Lookup Transform
Total Hit (3868)
Rating
This is a link to a different site Programming forloop container
Total Hit (3916)
Rating
This is a link to a different site SSIS Tips and Tricks from ssisblog.replicationanswers.com
Total Hit (3540)
Rating
This is a link to a different site Formatx and Chkdskx v1.0
Total Hit (3108) Complete source code for chkdsk and format clone programs. These examples demonstrate the use of file system utility functions that you can incorporate into your own applications.
Rating
This is a link to a different site Fundelete v2.0
Total Hit (3410) This utility expands the NT 4.0 Recycle Bin to catch file deleted from command prompts and within programs, and it comes with full source code. Several powerful device driver techniques, including getting a user's SID within a driver, enumerating a directory's contents, and generating IRPs, are demo ....Read More
Rating
This is a link to a different site Inside Disk Defragmenting
Total Hit (4317) Find out about the APIs Windows NT Defragmentation products use, and download a free defragmenting demonstration program, complete with full source.
Rating
This is a link to a different site Inside the Disk Key
Total Hit (3327) The HKLM\System\Disk\Information value is the heart of NT's disk administration. It contains information on drive mappings and fault tolerant configurations. In this article I go inside the Disk\Information value to describe its format, and provide source code to a program, Diskkey, that reads and d ....Read More
Rating
This is a link to a different site NewSID v4.03
Total Hit (3188) Learn about the computer SID problem everybody has been talking about and get a free computer SID changer, SID, complete with full source code.
Rating
This is a link to a different site Parallel port Interfacing Tutorial
Total Hit (4133) Parallel port is a simple and inexpensive tool for building computer controlled devices and projects. The simplicity and ease of programming makes parallel port popular in electronics hobbyist world. The parallel port is often used in Computer controlled robots, Atmel/PIC programmers, home automatio ....Read More
Rating
This is a link to a different site Dll for Hardware I/O (Inpout32.dll - works under Win 9x/WIN NT/2000/XP)
Total Hit (3500) Writing programs to talk with parallel port was pretty easy in old DOS days and in Win95/98 too. We can use Inporb and outportb or _inp() or _Outp functions in our program without any problem if we are running the program on Dos or WIN95/98. But entering to the new era of NT clone operating systems ....Read More
Rating
This is a link to a different site Create DLLs with VC++ - A Tutorial
Total Hit (4868) Visual Basic is a very fast and easy tool for developing applications with a high degree of user friendliness, but it lacks some important functionalities like direct access to hardware, multi-threading (Active-X server does allow some type of multi-threading). An easy and effective solution for thi ....Read More
Rating
This is a link to a different site AccessEnum - find out file system and Registry security settings.
Total Hit (3209) This simple yet powerful security tool shows you who has what access to directories, files and Registry keys on your systems. Use it to find holes in your permissions. AccessEnum works on Windows NT/2000/XP/2003.
Rating
This is a link to a different site CacheSet - Control the Cache Manager's working set size (Only for NT 4.0 SP4 and later)
Total Hit (4808) CacheSet is a program that allows you to control the Cache Manager's working set size using functions provided by NT. Its compatible with all versions of NT and full source code is provided.
Rating
This is a link to a different site Ctrl2cap - kernel-mode device driver to convert caps-lock characters into control characters.
Total Hit (3172) Ctrl2cap is a kernel-mode device driver that filters the system's keyboard class driver in order to convert caps-lock characters into control characters. People like myself that migrated to NT from UNIX are used to having the control key located where the caps-lock key is on the standard PC keyboard ....Read More
Rating
This is a link to a different site Device Object Security
Total Hit (3105) Are your device objects as secure as they should be? Learn what permissions are applied to the objects you create with IoCreateDevice and get introduced to kernel-mode security APIs that can be used to close potential device object security holes.
Rating


(Page 130 of 133) 3985 Result(s) found  ... 121 122 123 124 125 126 127 128 129 130 131 132 133

Recommanded Links

 

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

© 2008 BinaryWorld LLC. All rights reserved.