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

 

ShuttleMergeSort - An improved MergeSort
Total Hit (2347)
Rating
ServiceCommand - Start, stop, pause, and continue a Windows NT service
Total Hit (3009)
Rating
GetProcessesInfo - Retrieve information on active processes
Total Hit (3247)
Rating
GetMCIErrorString - Get a description of an MCI error
Total Hit (3138)
Rating
SetMenuBitmap - Add a bitmap to a menu item
Total Hit (3736) «Code LangId=1» Private Declare Function GetMenu Lib "user32" (ByVal hWnd As Long) As Long Private Declare Function GetSubMenu Lib "user32" (ByVal hMenu As Long, _ ByVal nPos As Long) As Long Private Declare Function SetMenuItemBitmaps Lib "user32" (ByVal hMenu As Long, _ ByVal nPositio ....Read More
Rating
TextBoxScroll - Programmatically scroll a multi-line TextBox control
Total Hit (3263) «Code LangId=1» Private Declare Function SendMessage Lib "user32" Alias "SendMessageA" (ByVal _ hwnd As Long, ByVal wMsg As Long, ByVal wParam As Long, _ lParam As Any) As Long Const EM_LINESCROLL = &HB6 ' Scroll the contents of the control. ' ' Positive values scroll left and up, n ....Read More
Rating
AlwaysOnTheTop - Move a form on top of all other windows
Total Hit (2181) «Code LangId=1» Private 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 Const SWP_NOSIZE = &H1 Const SWP_NOMOVE = &H2 Const SWP_SHOWW ....Read More
Rating
GetFileDescription - Get a file's description through Windows API
Total Hit (2223) «Code LangId=1»Private Const MAX_PATH = 260 Private Type SHFILEINFO hIcon As Long iIcon As Long dwAttributes As Long szDisplayName As String * MAX_PATH szTypeName As String * 80 End Type Private Declare Function SHGetFileInfo Lib "Shell32" Alias "SHGetFileInfoA" _ ....Read More
Rating
Monday - retrieving the date of the Monday for a specified week
Total Hit (2707) «Code LangId=1» ' Return the date of the Monday for a specified week.. ' This function can be tweaked to return any weekday. I use it in Access to ' subdivide reports into weekly units, since Access displays only a number ' between 1 and 53 for the week when you group dates by week. ' ' Note ....Read More
Rating
ArrayStdDev - The standard deviation of a numeric array
Total Hit (3151) «Code LangId=1»' The standard deviation of an array of any type ' ' if the second argument is True or omitted, ' it evaluates the standard deviation of a sample, ' if it is False it evaluates the standard deviation of a population ' ' if the third argument is True or omitted, Empty values are ....Read More
Rating
ASin, ACos, ACot, ASec, ACsc - Missing inverse trig functions
Total Hit (3039) «Code LangId=1»' arc sine ' error if value is outside the range [-1,1] Function ASin(value As Double) As Double If Abs(value) <> 1 Then ASin = Atn(value / Sqr(1 - value * value)) Else ASin = 1.5707963267949 * Sgn(value) End If End Function ' arc cosine ' er ....Read More
Rating
Correctly restore mouse cursor
Total Hit (3315) When you write lengthy procedures, it is a good habit to change the mouse cursor to an hourglass, and restore it to the original shape when the procedure exits. However, this cursor tracking may be rather difficult when the procedure has multiple exit points, or when it can exit abruptly because of ....Read More
Rating
Compound member attributes
Total Hit (2674) The Procedure Attributes dialog includes a Procedure ID combo box, that lets you associate a particular ID to a given member of the class. You usually use this combo to make a property or a method the default item of a class or an ActiveX control, but there are other uses as well. For instance, you ....Read More
Rating
Passing Public class variables by reference
Total Hit (2911) Under VB4 Public variables in form and class modules were implemented in the same manner as variables in BAS modules, that is, as direct references to memory locations. This allowed VB programmers to create procedures that modified values passed by reference, as in: «Code LangId=1» '--- the CIn ....Read More
Rating
Provide a short description of the menu item being highlighted
Total Hit (2337) Visual Basic lacks of the capability to display a short description of the menu command being highlighted with the mouse or the keyboard, a feature that all professional applications should have. To add menu descriptions to your program, you must subclass the form and trap the WM_MENUSELECT message. ....Read More
Rating
Incremental searches within list boxes
Total Hit (2531) The DBList and DBCombo controls expose a MatchEntry property, that - when set to True - permits to perform quick incremental searches by simply typing the searched sequence of characters. If MatchEntry is set to False, any time the user presses a key, the next item that begins with that character be ....Read More
Rating
Print an Image contained in a Picture Box or a Form
Total Hit (2356) Module «Code LangId=1» 'Print the Picture contained in a PictureBox or a Form Public Sub PrintImage(p As IPictureDisp, Optional ByVal x, Optional ByVal y, Optional ByVal resize) If IsMissing(x) Then x = Printer.CurrentX If IsMissing(y) Then y = Printer.CurrentY If IsMissing(resiz ....Read More
Rating
How to read data from Excel file
Total Hit (3621) Many times we have requirements to load data from CSV file, text file or Excel file... In this article I will show a sample code which reads a specified rows and columns from excel file. «code LangId=1»Private Sub Command1_Click() ImportExcelToSQL "c:\temp\diamond_upload.xls", 0, 20, True ....Read More
Rating
How to change printer port using API ?
Total Hit (4398) «code LangId=1»Option Explicit Private Type PRINTER_DEFAULTS pDatatype As String pDevMode As Long 'DEVMODE DesiredAccess As Long End Type Private Declare Function GetPrinter Lib "winspool.drv" Alias "GetPrinterA" (ByVal hPrinter As Long, ByVal Level As Long, pPrinter As Long ....Read More
Rating
Working with string APIs
Total Hit (2359) «code LangId=1»Private Declare Function lstrcat Lib "kernel32" Alias "lstrcatA" ( _ ByVal lpString1 As String, _ ByVal lpString2 As String) As Long Private Declare Function lstrcmp Lib "kernel32" Alias "lstrcmpA" ( _ ByVal lpString1 As String, _ ByVal lpString2 ....Read More
Rating
How to check whether your program is running on Windows NT/2000 ?
Total Hit (2052) This simple code will tell you whether your program is running on NT/2000 platform or Win9x/ME. «b»Step-By-Step Example«/b» - Create a standard exe project - Add the following code in the form1 code window «b»Form1.frm«/b» «code LangId=1»' Types, constants and functions for OS version d ....Read More
Rating
How To Use High-Level Access Control APIs from Visual Basic
Total Hit (4553) The Win32 API provides two sets of APIs for working with security descriptors (SDs) and access control lists (ACLs). Low-level as well as high-level access control API sets provide an interface for working with SDs and ACLs. For Microsoft Windows 2000 and MIcrosoft Windows XP, the high-level access ....Read More
Rating
Quickly Clear Tree View Control
Total Hit (2043)
Rating
Chart Web Component with Visual Basic
Total Hit (1922)
Rating
This is a link to a different site Professional ASP Programming Guide for Office Web Component: with Office 2000 and Office XP
Total Hit (1067) In this chapter we will take a look at some advanced charting techniques that will be useful in addition to the basic charting techniques covered by the previous chapter. We will introduce how to code split axis, add data labels, and other charting functions. We will also compare the differences of ....Read More
Rating
This is a link to a different site Creating a Common Control Status Bar via API
Total Hit (899) In this second article written for VBnet by Brad Martinez, Brad works out the magic behind the Win32 Status Bar common control (window) exposed by the common control library Comctl32.dll without the use of Comctl32.ocx. Subsequent pages will introduce more functionality in creating the control. T ....Read More
Rating
This is a link to a different site Tutorial : Programming in Visual Basic
Total Hit (882)
Rating
This is a link to a different site Using Popup Menu ActiveX DLL to create SysTray Menus with Icons
Total Hit (2454) This sample shows how to use the newly introduced ShowPopupAbsolute method of the PopupMenu ActiveX DLL to implement a icon menu in the SysTray. The code expands upon the "SysTray the Easy Way" sample. Essentially this project uses a VB form as a class which exposes an easy to use interface for a ....Read More
Rating
This is a link to a different site Add Your App to the Systray the Easy Way
Total Hit (2539) This sample application presents a small form which you can drop into your project to get immediate SysTray support. A lot of the source code I've seen for VB SysTray interfaces has used an OCX or DLL and subclassed for a SysTray message, however, it turns out you don't need to do this, because you ....Read More
Rating
This is a link to a different site Enabling Mouse Gestures with a WH_MOUSE hook
Total Hit (2250) Use of mouse gestures to control application is becoming increasingly common in the more sophisticated web browsers. This sample demonstrates how you can support a range of mouse gestures in a Visual Basic application using a Windows Hook.
Rating


(Page 23 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.