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

 

AddToIEFavorites - Add a URL to the IE's favorites
Total Hit (8928)
Rating
ShowSaveFileDialog - Show a Save File common dialog
Total Hit (4713)
Rating
GetRegisteredOrganization - Retreive the name of the registered organization
Total Hit (1898)
Rating
CreateEmf - creating an Enhanced Metafile (EMF) from a bitmap image
Total Hit (6430)
Rating
GetFileFromProgID - The file that implements a COM component with given ProgID
Total Hit (1817)
Rating
CStack - a class module for implementing Last-In-First-Out (stack) structures
Total Hit (2768)
Rating
ListBoxItemFromPoint - The index of a ListBox item at given coordinates
Total Hit (3189) «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 Sub CopyMemory Lib "kernel32" Alias "RtlMoveMemory" (dest As _ Any, dest As Any, ByVal num ....Read More
Rating
SplitSubMenu - Split a submenu with vertical bars
Total Hit (2864) «Code LangId=1» Private Type MENUITEMINFO cbSize As Long fMask As Long fType As Long fState As Long wID As Long hSubMenu As Long hbmpChecked As Long hbmpUnchecked As Long dwItemData As Long dwTypeData As String cch As Long End Type Private ....Read More
Rating
GetFileExtension - The extension in a filename
Total Hit (2035) «Code LangId=1»' Return the extension of a file name Function GetFileExtension(ByVal FileName As String) As String Dim i As Long For i = Len(FileName) To 1 Step -1 Select Case Mid$(FileName, i, 1) Case "." GetFileExtension = Mid$(FileName, i + 1) ....Read More
Rating
ArrLongestItem - The value and index of the longest element of an array of any type
Total Hit (2311) «Code LangId=1»' The longest item in an array of any type ' (it applies the LEN function to all the items in the array ' and then takes the highest value) ' ' FIRST and LAST indicate which portion of the array ' should be considered; they default to the first ' and last element, respectively ....Read More
Rating
DegreesToRadians, RadiansToDegrees - Convert from radians to degrees and back
Total Hit (1684) «Code LangId=1»' convert from degrees to radians Function DegreesToRadians(ByVal degrees As Single) As Single DegreesToRadians = degrees / 57.29578 End Function ' convert from radians to degrees Function RadiansToDegrees(ByVal radians As Single) As Single RadiansToDegrees = radia ....Read More
Rating
Hide and show the mouse cursor
Total Hit (3119) At times you may want to temporarily hide the mouse cursor, for example in order to reduce flickering. To do so you just need the ShowCursor API function: «Code LangId=1» Private Declare Function ShowCursor Lib "user32" (ByVal bShow As Long) As Long ' hide the mouse ShowCursor False ' do ....Read More
Rating
Animated form icons
Total Hit (3952) You can add a professional touch to your apps by showing an animated icon when the main form is minimized. To achieve this effect, prepare an array of Image controls, each one containing the icons that make up the animation, then add a Timer control, with the Enabled property set to True and the Int ....Read More
Rating
Get the Command$ value from inside an ActiveX DLL
Total Hit (3094) At times you may need to access the command line passed to the application from within an ActiveX DLL. Unfortunately, when inside a DLL the Command$ function returns a null string, so you have to resort to some API trickery: «Code LangId=1» Private Declare Function GetCommandLine Lib "kernel32" ....Read More
Rating
The first visible line in a multiline TextBox control
Total Hit (3959) To determine the index of the first visible line in a multiline TextBox control you only need to send it the EM_GETFIRSTVISIBLELINE message: «Code LangId=1» Private Declare Function SendMessage Lib "user32" Alias "SendMessageA" (ByVal _ hwnd As Long, ByVal wMsg As Long, ByVal wParam As Lon ....Read More
Rating
Using the CreateDirectory and CreateDirectoryEx API functions
Total Hit (6768) The VB's MkDir function creates a directory in a specified path. If the directory already exists, MkDir raises error 75 (Path/file access error); yet, it raises the same error code if you attempt to create the directory on a read-only drive. Even worse, in Windows NT/2K/XP workstations, if you try t ....Read More
Rating
An enhanced VB DatePart function
Total Hit (4615) Here is an enhanced version of VB DatePart function: the first parameter is now an enumerated type, so easier to use. DatePartEx is 4-5 times faster than DatePart and supports also two new intervals: MonthName and WeekdayName.
Rating
Retrieve Time Zone information
Total Hit (7011) The GetTimeZoneInformation API returns a TIME_ZONE_INFORMATION variable that contains several pieces of information about system's time date and time setting. The first Long value in this structure holds the "distance" (in minutes) from Greenwich standard time, so it's quite easy to create a GetTime ....Read More
Rating
Create your own Image/Link extractor tool using Regular Expressions
Total Hit (3178) This is a very simple code to present use of Regular expression to solve some complex text operation which is kinda impossible using inbuilt string functions available in Visual Basic. For More information Visit the following MSDN article «a href='http://msdn.microsoft.com/library/en-us/dnclin ....Read More
Rating
How to perform clipping using API
Total Hit (5566) To perform very complex clipping operations you can use a set of clipping APIs. From this sample code you will learn several techniques of clipping. A clipping region is a region with edges that are either straight lines or curves. You can create simple or complex regions using various region API ....Read More
Rating
Taking advantage of NTFS inbuilt compression using APIs (Only for NTFS file system)
Total Hit (5400) Windows NT/2000 supports compression on individual files, folders, and entire NTFS volumes. Files compressed on an NTFS volume can be read and written by any Windows-based application without first being decompressed by another program. Decompression occurs automatically when the file is read. T ....Read More
Rating
Monitoring folder activities
Total Hit (3076) In this article I will show you how to use FindFirstChangeNotification, FindNextChangeNotification, FindCloseChangeNotification and WaitForSingleObject API. Unfortunately these all APIs can only give you indication of event but they do not tell you which file/folder has been changed and what event o ....Read More
Rating
Fastest way to export MSFlexgrid data to Excel file.
Total Hit (8922)
Rating
This is a link to a different site Browse for Folders Callback Overview
Total Hit (1438) Windows' Browse for Folders dialog provides the means to retrieve from a user their selection of the Shell's file system and special folders. The following and related code page discuss adding callback functionality to a VB5 application to provide the ability to pre-select a folder on the dialog's d ....Read More
Rating
This is a link to a different site Gamma Correction
Total Hit (1676) A Gamma Correction filter is primarily used for colour matching purposes on CRT based displays, but it can also be used for creative image processing. This article shows how the gamma filter is calculated and provides an implementation.
Rating
This is a link to a different site vbAccelerator Progress Bar Class
Total Hit (1802) This article provides a class that allows you to draw progress bars onto any control, form or API created object with a hDC property. The drawing code is derived from the vbAccelerator Progress Bar control and all functionality except Image Processing and persistence of data is included. ....Read More
Rating
This is a link to a different site vbAccelerator ListBar Control
Total Hit (1623) The vbAccelerator ListBar control is an all-VB control which emulates the Outlook sidebar as accurately as possible. I was inspired to write it when I started playing with Microsoft's Spy++ utility and pointed it at Outlook's list bar (or "ShortcutBar" as it publicises itself to the world) and notic ....Read More
Rating
This is a link to a different site HTTP with MS Winsock Control - Part VII - Handling HTTP redirection
Total Hit (2584) There are a lot of reasons why the web developer decides to redirect HTTP request. All the web browsers used today handle the redirection automatically, without interaction with a user. So it is time to add the similar functionality to our Simple HTTP Reader sample application. ....Read More
Rating
This is a link to a different site CWinInetConnection class
Total Hit (1989) Check up CWinInetConnection class that, encapsulating the calls of WinInet API, allows you to detect the Internet connection and its properties, establish and hang up the connection, switch the system state known as Online/Offline mode.
Rating
This is a link to a different site Retrieving socket's status - Part I - The select Winsock API function
Total Hit (3625) Before to dive into the most interesting thing - sending and receiving data through a socket, we have to know how to determine status of a socket. In other words, we should know when a socket is ready to receive or send any data. The select function from the Winsock API can provide us with basic inf ....Read More
Rating


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