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

 

How to Hide/Show the Windows Task Bar and the Desktop...
Total Hit (3047) API Declarations «Code LangId=1» Private Declare Function ShowWindow Lib "user32.dll" (ByVal hWnd As Long, ByVal nCmdShow As Long) As Long Private Declare Function FindWindow Lib "user32.dll" Alias "FindWindowA" (ByVal lpClassName As String, ByVal lpWindowName As String) As Long Private Declar ....Read More
Rating
IsNetworkInstalled - Check whether the network is installed
Total Hit (2600)
Rating
GetScrollLockKey - Get the state of the Scroll Lock key
Total Hit (3011)
Rating
SetCapsLockKey - Set the state of the Caps Lock key
Total Hit (3550)
Rating
EnumRegistryKeys - Retrieve all the subkeys of a Registry key
Total Hit (2473)
Rating
BackgroundHorizontalGradient - Paint an horizontal gradient background
Total Hit (2835)
Rating
CheckSpelling - Using the Word's check-spelling engine
Total Hit (2800)
Rating
GetListItemHeight - Return the height of a ListBox or ComboBox item
Total Hit (2115) «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 LB_GETITEMHEIGHT = &H1A1 Const CB_GETITEMHEIGHT = &H154 ' Return the height of each entry in a ListBo ....Read More
Rating
ListBoxVisibleItems - The number of visible items in a ListBox control
Total Hit (3386) «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 Private Declare Function GetClientRect Lib "user32" (ByVal hwnd As Long, _ lpRect As RECT) As Long Const LB ....Read More
Rating
IsExecFile - Check whether a file is an executable file
Total Hit (1432) «Code LangId=1»'check whether the specified file is an executable, ' by checking the last 4 characters. 'Example: MsgBox "File is exe: " & IsExecFile("C:\windows\notepad.exe") Function IsExecFile(ByVal sFileName As String) As Boolean Dim sExt As String On Error Resume Next ....Read More
Rating
Cot, Sec, Csc - Missing trig functions
Total Hit (3474) «Code LangId=1»' Cotangent of an angle Function Cot(radians As Double) As Double Cot = 1 / Tan(radians) End Function ' Secant of an angle Function Sec(radians As Double) As Double Sec = 1 / Cos(radians) End Function ' cosecant of an angle Function Csc(radians As Double) As ....Read More
Rating
Display an animated GIF using the WebBrowser control
Total Hit (4210) The standard PictureBox control doesn't support the Animated GIF graphic format. However, you can display these images by using a WebBrowser control: «Code LangId=1» WebBrowser1.Navigate "c:\Images\Animated.Gif" «/Code» The only problem of this technique is that the WebBrowser control also di ....Read More
Rating
Programmatically register an ActiveX control or DLL
Total Hit (4859) All ActiveX DLL or OCX export two functions: DllRegisterServer and DllUnregisterServer. They are used to register and unregister the ActiveX in the Windows registry, and are usually invoked from regsvr32.exe at registration time. However, you can register and unregister these files programmatical ....Read More
Rating
Insert a picture into a RichTextBox control
Total Hit (3931) Here's a simple method to programmatically insert an image into a RichTextBox control, by copying it into the clipboard and then pasting it into the control: «Code LangId=1» Private Declare Function SendMessage Lib "user32" Alias "SendMessageA" (ByVal _ hwnd As Long, ByVal wMsg As Long, By ....Read More
Rating
Correctly set scrollbars' width and height
Total Hit (3208) You should always modify a vertical scrollbar's width and a horizontal scrollbar's height to conform to the display resolution. You can learn the suggested size (in pixels) using the GetSystemMetrics API function, then convert it to twips, and rezise all the scrollbars on your forms accordingly. The ....Read More
Rating
Determine when a TextBox control is scrolled
Total Hit (1698) When the user scrolls the contents of a TextBox control - either by clicking on the companion scrollbars or by typing new characters in the edit area - the TextBox control sends its parent form a WM_COMMAND message, and passes its own hWnd property in lParam and the value EN_HSCROLL or EN_VSCROLL in ....Read More
Rating
Copying menu controls from one form to another
Total Hit (2671) If you're building a project with multiple similar forms, it's nice to be able to cut-and-paste controls from one form to another. However, in VB6, you can't do this for menu controls - unless you get tricky. The trick is to make an end-run around the VB IDE. Warning: don't try this unless you have ....Read More
Rating
GoSub are slower in compiled programs
Total Hit (3326) In VB applications compiled as native code, GoSubs are 5-6 times slower than calls to regular Subs or Functions; conversely, in p-code they are considerably faster. This is one of the few examples of an optimization rule that is different in p-code from compiled applications. ....Read More
Rating
Determinate the number of bytes in a given directory including the subdirectories
Total Hit (2158) «code LangId=1»Option Explicit 'API constants Private Const MAX_PATH = 260 Private Const INVALID_HANDLE_VALUE = -1 Private Const FILE_ATTRIBUTE_DIRECTORY = &H10 'API types Private Type FILETIME dwLowDateTime As Long dwHighDateTime As Long End Type Private Type WIN32_FIND_DATA ....Read More
Rating
How to Get/Set and enumurate user defined window properties using API.
Total Hit (3712) A window property is any data assigned to a window. A window property is usually a handle of the window-specific data, but it may be any value. Each window property is identified by a string name. There are several functions that enable applications to use window properties. This overview discusses ....Read More
Rating
Working with GDI Brush Object
Total Hit (5295) A brush is a graphics tool that applications use to paint the interior of polygons, ellipses, and paths. Drawing applications use brushes to paint shapes; word processing applications use brushes to paint rules; computer-aided design (CAD) applications use brushes to paint the interiors of cross-sec ....Read More
Rating
How to convert all accent char to normal char (Only for win2k)?
Total Hit (2297) This example will show you how to convert all accent characters to normal character. «b»Step-By-Step Example«/b» - Create a standard exe project - Add the following code in form1 «code LangId=1»Private Declare Function FoldString _ Lib "kernel32" Alias "FoldStringA" ( _ ByVal dwMapFlags ....Read More
Rating
How to deal with multi-language input and keyboard layout using API ?
Total Hit (8969) Sometimes application requires multi-language input functionality so user can choose his own language. You can change keyboard layout by Adding and selecting new layout in Control Panel -> Regional Options but how to do the same thing programatically. To change keyboard layout for a specific languag ....Read More
Rating
This is a link to a different site Fill in Word Forms Using Information Stored in Access
Total Hit (971) Although Access reports are flexible and relatively easy to create, they're not always suitable for every task. For example, your company may internally use manual forms that can easily be filled with data from an existing Access database. Your natural reaction is probably to create an Access report ....Read More
Rating
This is a link to a different site CD Track Listing Using freedb.org
Total Hit (983) This article demonstrates how to use ASPI to read the table of contents from a CD, and then to use FreeDB's CD look-up service to retrieve artist, title and track listing information for the CD. Along the way it describes some of the alternatives and pitfalls. ....Read More
Rating
This is a link to a different site Dealing with Circular References
Total Hit (1625) VB and COM makes a lot of things easy to do, particularly using and dealing with objects: you just create them and normally they clear themselves up automatically once you're finished with them. However, one side effect of the way COM works is that it is possible to create objects which cannot termi ....Read More
Rating
This is a link to a different site Resampling with Alpha
Total Hit (1807) If you want to change the size of a bitmap, you quickly find that standard techniques such as GDI's StretchBlt aren't particularly good and the result is usually very pixelated. Resampling is a technique which smooths the contribution of each pixel whilst changing the size, and although it takes mor ....Read More
Rating
This is a link to a different site ComCtl32.DLL Animation Control Class
Total Hit (2452) This article presents a simple class you can use to load AVIs from files or an application's resource file for display whilst the application is performing a long operation.
Rating
This is a link to a different site vbAccelerator ListView Control
Total Hit (1739) This control provides an alternative to the VB ListView control and adds support for almost all of the new ComCtl32.DLL v6.0 features that are missing from the VB version: ListView grouping, Tile view with configurable sub-items, Multiple Work Areas and more. ....Read More
Rating
This is a link to a different site Flicker Free API Drawing
Total Hit (2852) VB offers a way to reduce flicker when drawing a control through its AutoRedraw property. When AutoRedraw is set, VB creates an Off-Screen buffer to draw into, and only transfers this to the drawing surface when the Refresh method is called. Whilst this works well (ish), it doesn't help if you need ....Read More
Rating


(Page 33 of 54) 1607 Result(s) found  ... 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54

Recommanded Links

 

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

© 2008 BinaryWorld LLC. All rights reserved.