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

 

GetIEToolbarPicture - The path of IE toolbar image
Total Hit (1670)
Rating
GetIEFileNewEnabled - Determine whether IE File-New menu is enabled
Total Hit (1595)
Rating
EnumRegistryKeys - Retrieve all the subkeys of a Registry key
Total Hit (2473)
Rating
ConvertSelectedTex - Convert text selected in code window
Total Hit (2113)
Rating
CheckSpelling - Using the Word's check-spelling engine
Total Hit (2800)
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 (1431) «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
ArrayAny - Return an initialized array of any type
Total Hit (2046) «Code LangId=1» ' Returns an array and initializes it with passed data. ' ' It is similar to the Array function, but it works with ' array of any type. The type of the returned array is ' assumed to be the type of the first element in the ' parameter list, so you might need to force a given ....Read More
Rating
Don't store object variables in the SPM
Total Hit (2607) Some MTS/COM+ newbies wonder whether it is legal to store object variables in the SPM. No, you can't!! the SPM is unaware of Apartment marshaling issues. If you ask the SPM for an interface pointer while running in an apartment that is different from the one where the interface pointer resides t ....Read More
Rating
Out-of-date dependency file for COMCTL32.OCX
Total Hit (2101) Have you ever read a message like "Dependency file for COMCTL32.OCX is out of date" during the package creation process? The cause of this problem is simple: you have installed an application that has replaced your COMCTL32.OCX ActiveX with the newer release (which is 5.00.3828 at this time). The Ac ....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 (4854) 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
Correctly set scrollbars' width and height
Total Hit (3207) 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
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
Start the IDE with maximized code and form windows
Total Hit (2212) The VB IDE remembers most of the configuration settings that were active when you closed the previous session. However, the maximized status of child MDI windows (the code editor and the designer window) isn't remembered, and the IDE always starts with non-maximized windows. To have VB always start ....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 play AVI file stored into resource file without saving on disk
Total Hit (8159) MCI (Media Control Interface) provides a high-level interface to play multimedia files (or "device elements" as defined in MCI). By default, MCI WAVE/AVI drivers (MCIAVI and MCIWAVE) use mmioOpen to open a file stored on a disk. If the file name contains a "+" character, mmioOpen will look for a cus ....Read More
Rating
Working with GDI Brush Object
Total Hit (5294) 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
Working with Basic Filled Shapes using GDI API
Total Hit (5671) Filled shapes are geometric forms that are outlined by using the current pen and filled by using the current brush. There are five filled shapes: «UL»«LI»Ellipse «LI»Chord «LI»Pie «LI»Polygon «LI»Rectangle «/UL» Applications use filled shapes for a variety of tasks. Spreadsheet applicat ....Read More
Rating
How to deal with multi-language input and keyboard layout using API ?
Total Hit (8968) 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
How to detect system activity for mouse and keyboard
Total Hit (2612) «Code LangId=1»Option Explicit '=========================================================== 'TYPE '=========================================================== Private Type POINTAPI x As Integer y As Integer End Type '=========================================================== 'API '===== ....Read More
Rating
This is a link to a different site HTTP with MS Winsock Control - Part III : How to retrieve a file from the Web through a proxy server
Total Hit (2759) In the previous tutorials we have learned how to communicate with a web server via direct connection. In that scenario the client application establishes connection to the web server by the specified server address (or IP address) and IP-port 80. But there are a lot of cases where a client has an ac ....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 Connecting to Network Resources
Total Hit (1637) These are small network routines that provide developers with increased functionality and usability. The first two routines deal with displaying the Map Drive and Disconnect Mapped Drive dialogs. The second two deal with printers; the first shows the Windows dialog responsible for setting up a ....Read More
Rating
This is a link to a different site Manipulating Image Brightness with SetPixelV
Total Hit (1236) Here's an interesting bit of code by Tanner Helland that takes any image assigned to a picturebox and rapidly adjusts the image brightness. As the new image is displayed, it progressively wipes overtop the old image (the demo picture shows the progress half-way across the girl). This code could be e ....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 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 vbAccelerator Icon Selector Control
Total Hit (2537) This control provides a simple to use icon selector, and works in the exactly the same way as the Change Icon dialog in Windows. You can either use it to select existing icons, or you can add your own.
Rating


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