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

 

How To Automate Microsoft Excel from Visual Basic
Total Hit (3760) There are two ways to control an Automation server: by using either late binding or early binding. With late binding, methods are not bound until run-time and the Automation server is declared as Object. With early binding, your application knows at design-time the exact type of object it will be co ....Read More
Rating
How to use LoadMenu and LoadMenuIndirect API to load menu from Resource or Memory buffer ?
Total Hit (7410) In this article you will learn - How to use LoadLibraryEx and FreeLibrary APIs to load/unload Dll/Exe resources - How to use LoadMenuIndirect API to load menu from memory buffer - How to use LoadMenu API to load menu stored in DLL or Exe resource - How to use TrackPopupMenu to display popup menu ....Read More
Rating
How to use FormatMessage API to format string with placeholder (para with %)
Total Hit (5323) FormatMessage is a very powerful API. In this article we will explore possible use of FormatMessage API. Some possible use of FormatMessage api is «UL»«LI»Getting API error description from Error Code «LI»Reading Message String from Resource of DLL or Exe «LI»Replacing placeholders in a string w ....Read More
Rating
How to play a Wave file in your project
Total Hit (2848) «Code LangId=1» Option Explicit Private Sub Command1_Click() sndPlaySound "C:\WINDOWS\MEDIA\Start.wav", &H1 End Sub«/Code»
Rating
GetIEContextMenuEnabled - Determine whether IE context menu is enabled
Total Hit (1633)
Rating
ClipMouseToWindow - Confine the cursor to a window's client area
Total Hit (4512)
Rating
VBSendKeys - Send keys to any Windows and MS-DOS application
Total Hit (13062)
Rating
IconToPicture - Convert an icon handle to a Picture object
Total Hit (4133)
Rating
StrReverse - A replacement for the VB6's StrReverse function under VB4 and VB5
Total Hit (1533) «Code LangId=1»' A replacement for the StrReverse function for VB4 and VB5 Function StrReverse(ByVal Text As String) As String Dim length As Long, index As Long length = Len(Text) StrReverse = Space$(length) For index = 1 To length Mid$(StrReverse, length + 1 - ....Read More
Rating
Disable COM+ 1.5 applications and components
Total Hit (2832) COM+ 1.5 (provided with Windows XP) has an interesting feature that is missing in COM+ 1.0: the ability to disable entire COM+ applications or just their individual components. You can disable and re-enable a COM+ application or component by right-clicking on it in the Component Services MMC explore ....Read More
Rating
Check for a valid URL
Total Hit (3938) Before posting an Internet request you should check that the user has entered a valid Internet address. You can do this with a parsing routine, or use the following routine based on the IE5 library: «Code LangId=1» Private Declare Function IsValidURL Lib "urlmon" (ByVal pBC As Long, _ url A ....Read More
Rating
Convert a color value to a gray scale
Total Hit (3230) When you have a 32-bit color value, you can convert it to a grey-scale - that is, you can determine how it would appear on a monochromatic display (more or less) using the following function: «Code LangId=1» Function GetGreyScale(ByVal lColor As Long) lColor = 0.33 * (lColor Mod 256) + 0.59 ....Read More
Rating
Topmost windows
Total Hit (2023) This is an evergreen, but it's still popular. It is very easy to create a window that always stays on top of the others, thanks to the SetWindowPos API function. Here is a general procedure that can be called to make a form the topmost window and to revert to the normal status. This capability is ex ....Read More
Rating
UseMnemonics property for bound Label controls
Total Hit (2191) If your forms contain Label controls used to display data from a database, set their UseMnemonic property to False. In fact, if you leave this property to its default value (True), ampersand "&" characters won't be showed correctly, and the Label will mistakenly react to hotkeys. ....Read More
Rating
The age of a person
Total Hit (2766) You can quickly evaluate the age of a person using the following function: «Code LangId=1» Function Age(BirthDate As Date, Optional CurrentDate As Variant) As Integer If IsMissing(CurrentDate) Then CurrentDate = Now Age = Year(CurrentDate) - Year(BirthDate) End Property «/Code» If ....Read More
Rating
Understanding the "Allow Unrounded Floating Point Operations" option
Total Hit (2897) The Microsoft manuals preach that all the compiler options in the Advanced Optimization dialog box are to be considered unsafe, in that they might lead to incorrect results (or just program crashes!). This is true for most of them, but often one of such options - namely, the "Allow Unrounded Floatin ....Read More
Rating
Tricks with LCase and UCase
Total Hit (2783) There are a few tricks that you can do with LCase$ and UCase$ functions. I doubt you will be using this tip in all your applications, but here they are for when you'll need them. Say you wish to check that a string (or a portion of it) does NOT include any alphabetical characters: instead of set ....Read More
Rating
Evaluate an expression at runtime
Total Hit (3498) The .NET framework doesn't offer any direct way to evaluate an expression that has been entered by the end user when the application is running. However, it is quite simple to create a simple expression evaluator based on calculated columns in DataTable. The following routine does the trick: «Cod ....Read More
Rating
This is a link to a different site Enumerating Share Connection Information
Total Hit (1461) The WNetEnumResource API continues enumeration of network resources on the local computer that was started by a call to the WNetOpenEnum API function. It will not retrieve the shares in use on remote machines. The illustration shows the function enumerating all network resources on my development ne ....Read More
Rating
This is a link to a different site Using the GetOpenFileName Common Dialog API - Overview
Total Hit (1462) This page details the descriptions of Windows GetOpenFileName and GetSaveFileName API methods. The related demo code pages show how to call the APIs, as well as demonstrating how to retrieve the constituent parts of the file string returned. To access both of the file common dialogs, the OPENFILEN ....Read More
Rating
This is a link to a different site Adding a VB Toolbar to a VB StatusBar
Total Hit (1144) This code was prompted by a newsgroup request for code to place a VB command button inside a VB statusbar such that the button reacted normally to events yet was contained inside the status bar panel area. Attempts to use SetParent against the command button worked to re-parent the control, however ....Read More
Rating
This is a link to a different site How to Programmatically Select and Deselect All ListItems
Total Hit (1359) Using conventional methods, selecting and deselecting all items in a ListView typically involves iterating through the ListItems collection to set each item's selected property. By utilizing the SendMessage API with LVIS_SELECTED, this monotony can be reduced to a single call. Note that this meth ....Read More
Rating
This is a link to a different site Changing the Display Resolution from Visual Basic
Total Hit (1158) This routine, like the ListView method in Enumerating the Available Display Resolutions, uses Windows' EnumDisplaySettings API to retrieve all the available screen resolutions supported by the display. Here, the results are used to create a "QuickRes-style menu", replete with the option of displayin ....Read More
Rating
This is a link to a different site The best example of how to read from the NT eventlog.
Total Hit (2257)
Rating
This is a link to a different site Make a ComboBox drop down when you press the down arrow key
Total Hit (1777) Drop-down combo boxes by default drop down when you press the F4 key. However, not many users know this, and you can make a combo box easier to use by making it drop down in response to the down arrow key instead.
Rating
This is a link to a different site Rank Filters
Total Hit (737) This is a supporting note describing the Rank filter provided in the vbAccelerator Image Processor. Rank filters can either be linear, yielding a softening effect, or non-linear, giving an impressionistic effects to a images.
Rating
This is a link to a different site Using The IconMenu Control To Create a Colour Picker
Total Hit (852) This project demonstrates how to use the new Caption shortcuts in the Icon Menu control to create multiple column menus which don't have separators. By adding the hat character ("^") to the beginning of a menu caption, the Icon Menu control will start a new menu column without a separator line. (Use ....Read More
Rating
This is a link to a different site Subclassing Without The Crashes
Total Hit (2446) Prior to VB5, it was impossible to subclass a control without relying on a proprietary custom control. This greatly restricted what you could do if you wanted to play around with some of the neater customisation features - creating a new control was completely out, finding out in detail what was goi ....Read More
Rating
This is a link to a different site Win32 Hooks in VB - The vbAccelerator Hook Library
Total Hit (2546) When a subclass isn't tough enough for the job, its time to move to an even lower-level and more disruptive technique. Win32 Hooks are a method by which you can tap into the Windows message stream for every single message directed to every window in your application. You can modify or even discard m ....Read More
Rating
This is a link to a different site Introduction to the freeware Info-ZIP libraries
Total Hit (1882) This project started when I was trying to build up the indexes for the vbAccelerator site. I had a program to search through all the HTML files which make up the site, and this could pick out the ZIP files linked to by the pages. But how to determine which projects these ZIP files contained? You nee ....Read More
Rating


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