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 13 of 54) 1607 Result(s) found 

 

SetIETitle - Change the title used for Internet Explorer
Total Hit (1640)
Rating
WindowFromMouse - The handle of the window under the mouse cursor
Total Hit (2897)
Rating
GetIEFavoritesEnabled - Determine whether IE Favorites menu is enabled
Total Hit (1667)
Rating
EnableRegistryTools - Enable or disable the RegEdit utility
Total Hit (1729)
Rating
ApplyRegFile - Load the specified REG file in the registry
Total Hit (1612)
Rating
ProgIDToCLSID - Convert a ProgID into a CLSID
Total Hit (4191)
Rating
GetTempFile - Create a temporary file
Total Hit (2756) «Code LangId=1» Private Declare Function GetTempFileName Lib "Kernel32" Alias _ "GetTempFileNameA" (ByVal lpszPath As String, _ ByVal lpPrefixString As String, ByVal wUnique As Long, _ ByVal lpTempFileName As String) As Long Private Declare Function GetTempPath Lib "Kernel32" Alias ....Read More
Rating
CombSort - A very efficient algorithm
Total Hit (2230) «Code LangId=1»' Comb Sort an array of any type ' ' CombSort is faster than all but QuickSort and close to it. ' On the other hand, the code is much simpler than QuickSort ' and can be easily customized for any array type ' This routine is based on an article appeared on the Byte ' magazine i ....Read More
Rating
ProjectName - The name of the current project
Total Hit (1838) «Code LangId=1»' Returns the name of the current project ' The first time it's called it clears the error code ' Function ProjectName() As String Static result As String If Len(result) = 0 Then On Error Resume Next ' cause a dummy, harmless error Err.Raise 9 ....Read More
Rating
Don't let binary compatibility beat you
Total Hit (2753) When you decide to release a new version of an MTS/COM+ component you should take care of its compatibility with the previous version. There are three types of changes you could make: (1) You change only internal code of a component, keeping the interface that the component provides untouched. ( ....Read More
Rating
A simple way to control a common dialog's position
Total Hit (4113) The CommonDialog control doesn't provide any direct way to decide where a common dialog appears on the screen. In all cases, in fact, the control tries to display the common dialog centered on its owner form. This behavior suggests a simple way to affect the approximate position of the common dialog ....Read More
Rating
Dynamically bind a DataList or DataCombo control to an ADO Recordset
Total Hit (3999) When dynamically changing the bound ADORecordset for a DataCombo or DataList control, the order you follow when assigning the properties is important. This is the correct sequence of operations to perform to change the bound recordset for these controls: «Code LangId=1» ' unbind the current so ....Read More
Rating
Using Enter to move to next field
Total Hit (1606) Most MsDos programs used the Enter key to move from one field to the next one. You can easily simulate this behavior by setting the form's KeyPreview property to True and writing this code in the Form_KeyPress event: «Code LangId=1» Sub Form_KeyPress (KeyAscii As Integer) If KeyAscii = 13 Th ....Read More
Rating
Clone a Font object
Total Hit (2800) When you want to assign a control's Font to another control, the first obvious way is to assign the Font property directly, as in: «Code LangId=1» Set Text2.Font = Text1.Font «/Code» but in most cases this approach doesn't really work, because it assigns a reference to the same font to both c ....Read More
Rating
The beginning or end of previous week
Total Hit (3736) For reporting, many times you need to figure out what date last week began and ended. Use the code below to figure that out:
Rating
Undocumented behavior of the CInt() function
Total Hit (3019) The CInt() function rounds to the nearest integer value. In other words, CInt(2.4) returns 2, and CInt(2.6) returns 3. This function exhibits an under-documented behavior when the fractional part is equal to 0.5. In this case, this function rounds down if the integer portion of the argument is e ....Read More
Rating
Two handy functions for Null handling
Total Hit (3087) You're probably aware that most VB functions don't work well with Null values, which is an issue when you're working with database columns that can accept Nulls. For example, the following statement: «Code LangId=1» Dim s as String s = rs.Fields("AnyField") «/Code» can raise error 94 "Invali ....Read More
Rating
Event logging doesn't work in interpreted applications
Total Hit (3377) The StartLogging and LogEvent methods of the App object only work in compiled applications. This behavior is by design and shouldn't be considered a bug, even though it isn't documented in the language manuals. To work around this problem, just create an ActiveX DLL component that exposes the St ....Read More
Rating
Count the number of files in a given directory
Total Hit (3241) API Declarations «Code LangId=1» Option Explicit 'API constants Public Const MAX_PATH = 260 Public Const INVALID_HANDLE_VALUE = -1 Public Const FILE_ATTRIBUTE_DIRECTORY = &H10 'API types Public Type FILETIME dwLowDateTime As Long dwHighDateTime As Long End Type Public Typ ....Read More
Rating
How To Read/Write Data File Using ReadFile and WriteFile API
Total Hit (7608) The Win32 API allows binary files to be opened and written using the CreateFile, ReadFile, and WriteFile APIs. These functions offer increased flexibility to write and read from files. This article demonstrates a technique to write large amounts of data, in the form of a large array, to a binary fil ....Read More
Rating
How to create Region from a Bitmap and perform Hit Testing within a Region ?
Total Hit (7561) Hello friends, In this article you will learn two basic concept of Regions. 1. Creating Region from a Bitmap. 2. Hit Testing within a Region. «b»Creating Region from a Bitmap«/b» In my previous article «b»«a href='CodeDetail.aspx?CodeId=3752'»Working with Region API«/a»«/b» you learned how ....Read More
Rating
How to perform Direct Read/Write to disk (low level I/O)
Total Hit (6904)
Rating
How to sort items on the fly as they are added in a ListView using SubClassing
Total Hit (3563) «Code LangId=1»Option Explicit ' The NMHDR structure contains information about a notification message. The pointer ' to this structure is specified as the lParam member of the WM_NOTIFY message. Private Type NMHDR hwndFrom As Long ' Window handle of control sending message idFrom As ....Read More
Rating
This is a link to a different site Tutorial : Connecting to the remote FTP host
Total Hit (3157) In this tutorial we are going to find out the essential things that we need to know in order to use the library. We’ll examine the procedure of establishing FTP session with an FTP server. Such a procedure includes three operations: the TCP connection establishment to the FTP remote host, the user a ....Read More
Rating
This is a link to a different site How to Share a Folder using NetShareAdd
Total Hit (1448) The NetShareAdd function shares a server or workstation resource. Only members of the Administrators or Account Operators local group, or those with Communication, Print, or Server operator group membership can successfully execute the NetShareAdd function. The Print operator can add only Printer qu ....Read More
Rating
This is a link to a different site Using the GetOpenFileName Common Dialog API
Total Hit (1257) This page provides the detailed code and descriptions required for the Common Dialog GetOpenFileName API, as well as showing how to retrieve the constituent parts of the file string returned. Code comments are at a minimum here. For detailed descriptions of the OPENFILENAME structure used and the ....Read More
Rating
This is a link to a different site vbAccelerator Status Bar Control
Total Hit (1665) This article provides a full implementation of the ComCtl32 status bar control in VB, providing access to all of the features including Owner-Drawn panels.
Rating
This is a link to a different site vbAccelerator ImageList Control and Class v2.0
Total Hit (1622) As a number of my controls require image list support (Rebar and Toolbar control, Tab Control, S-Grid, Icon Menu Control, ActiveX Popup Menu DLL, Owner Drawn ComboEx Control and the Owner Drawn Combo and List box Control), it was about time I provided an Image List control to support them, so you do ....Read More
Rating
This is a link to a different site Emulating Modal Forms
Total Hit (994) Sometimes, the restrictions applied when showing a modal form can be restrictive. For example, if your application can have more than one main view window, a modal dialog prevents any other form from being activated whilst the modal dialog is displayed. Another example occurs when you want to try an ....Read More
Rating
This is a link to a different site Creating and Responding to System-Wide Hotkeys
Total Hit (1986) Win32 allows you to set up combinations of key-presses which can be associated with an application on a system-wide scope, called Hotkeys. When a user presses a registered HotKey it doesn't matter which application is active when they pressed it, the hot-key message will get routed to your applicati ....Read More
Rating


(Page 13 of 54) 1607 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 Us   |  Privacy Policy   |  Terms & Conditions   |  BlogsZappySys

© 2008 BinaryWorld LLC. All rights reserved.