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

 

CombSort - A compact routine that sorts data in place
Total Hit (2164)
Rating
SelectionSort - Short, simple and sloooow
Total Hit (2209)
Rating
GetRegisteredUser - Retreive the name of the registered user
Total Hit (1781)
Rating
GetCookies - Get local cookies for a given URL
Total Hit (3160)
Rating
Moving a Window Without a Titlebar
Total Hit (3411) «Code LangId=1»'Place this code in the declarations section of your form: Option Explicit Declare Function ReleaseCapture Lib "user32" () As Long Declare Function SendMessage Lib "user32" Alias "SendMessageA" (ByVal hwnd As _ Long, ByVal wMsg As Long, ByVal wParam As Long, lParam As Any) As Lo ....Read More
Rating
ListViewAdjustColumnWidth - Resize ListView's columns to account for their contents
Total Hit (3357) «Code LangId=1»Private Declare Function SendMessageLong Lib "user32" Alias "SendMessageA" (ByVal hwnd As Long, ByVal wMsg As Long, ByVal wParam As Long, ByVal lParam As Long) As Long Const LVM_SETCOLUMNWIDTH = &H1000 + 30 Const LVSCW_AUTOSIZE = -1 Const LVSCW_AUTOSIZE_USEHEADER = -2 ' Adju ....Read More
Rating
ListBoxTooltip - A class for displaying items' values in a tooltip
Total Hit (1692) «Code LangId=1» ' --- The ListBoxTooltip class ' ' Usage in the client form: ' ' Dim lstTT As New ListBoxTooltip ' ' Private Sub Form_Load() ' Set lstTT.ListBox = List1 ' End Sub ' Private Sub Form_Unload(Cancel As Integer) ' Set lstTT.ListBox = Nothing ' E ....Read More
Rating
ListBoxEnsureVisible - Ensure that a ListBox element is visible
Total Hit (2188) «Code LangId=1»' ensure that a listbox item is visible ' if the second argument is omitted, the index of current item is used ' ' NOTE: uses the ListBoxVisibleItems function Sub ListBoxEnsureVisible(lst As ListBox, Optional ByVal itemIndex As Long = -1) Dim visibleCount As Long ....Read More
Rating
GetDBDate - Formatting a date as a DateSerial for Access
Total Hit (2790) «Code LangId=1»' Format a date as a DateSerial for Access ' Example: Debug.Print GetDBDate(date) Public Function GetDBDate(sDate As String) As String On Error GoTo ERROR_GetDBDate Dim sTmp As String If IsDate(sDate) = False Then sTmp = sDate Else sTmp = "DateSe ....Read More
Rating
Soundex - Determine the phonetic code of a word
Total Hit (1901) «Code LangId=1» ' The Soundex code of an alphabetical string ' ' you can use Soundex code for phonetic searches ' Beware: this isn't bullet-proof! ' ' UPDATE: this version corrects a bug in the original routine ' thanks to Edward Wittke for spotting the mistake Function Soundex(By ....Read More
Rating
GCD - The Greatest Common Divisor of two integers
Total Hit (1632) «Code LangId=1»' the Greatest Common Divisor of two integers ' (it uses the Euclide's algorithm) ' if either argument is zero you get a "Division by Zero" error Function GCD(ByVal n1 As Long, ByVal n2 As Long) As Long Dim tmp As Long Do ' swap the items so that n1 >= n2 ....Read More
Rating
Display the Find system dialog
Total Hit (3197) If you ever needed to programmatically enable your users to search for files, you certainly found useful the possibility of reusing the system Find dialog integrated in the Start menu and also available through the F3 key within the Explorer. The key to obtain such a dialog is the ShellExecute funct ....Read More
Rating
Open a Control Panel dialog or wizard
Total Hit (2668) Have you ever needed to open a Windows dialog such as Internet Properties, New Hardware, Modem Properties or any other dialog you can find in the Control Panel? Well, it's very simple, onve you know the trick. All these dialogs are implemented in files with the CPL extension. (They're actually D ....Read More
Rating
Wait for the termination of a program using Windows Scripting Host
Total Hit (2708) If you want to execute an application and waiting for its termination, you can follow two approaches. The "classic" approach is based on API functions such as OpenProcess, WaitForSingleObject and CloseHandle. However, there is a simpler technique based on the Windows Scripting Host object model. ....Read More
Rating
Copy the contents of the screen or the active window
Total Hit (5391) The standard way to copy the contents of the screen or a window to a picture box requires you to use a lot of API functions, such as BitBlt. A simpler approach is possible, though: you just have to simulate the typing of the Print Screen key (or Alt+Print Screen if you want to copy the contents of t ....Read More
Rating
Storing objects in the Tag property
Total Hit (4397) The Tag property exposed by many Windows Common Controls (including TreeView's Node objects and ListView's ListItem objects) is more versatile than the ListBox and ComboBox controls' ItemData property, because it is of Variant type and can therefore accept values of most data types. However, it ....Read More
Rating
Convert a VB6 project back to VB5
Total Hit (2338) If you load a VB6 project file in the VB5 environment you get a warning, even though the project is correctly loaded. The cause of the warning is a VB6 attribute "Retained" (that is, the "Retained in memory" option in the Project Properties dialog box) that isn't recognized by VB5. If you want to ma ....Read More
Rating
Simple variables are always faster than array elements
Total Hit (2685) Reading and writing an item of an array is always slower than accessing a simple variable. Therefore, if you need to repeatedly use the same array item in a loop, you should assign it to a temporary variable and use that variable instead. I've included an example of this technique that scans an Inte ....Read More
Rating
Sharing Data Between Processes Using Memory-Mapped Files
Total Hit (16288) Memory-mapped files provide a way to look at a file as a chunk of memory. This feature is very useful in languages that support examining memory at arbitrary addresses. You map the file and get back a pointer to the mapped memory. You can simply read or write to memory from any location in the file ....Read More
Rating
Optimize Parametrized Queries With ADO Objects
Total Hit (3068) When you write Insert statements, it can be difficult to accommodate the possible values end users might enter into a textbox. The most common task is replacing single quotes with double quotes. However, parameterized queries provide two benefits: You do not have to parse data entered by users—excep ....Read More
Rating
How to export ADO recordset to an Excel file
Total Hit (3288) Some times we have situation when we want to export ADO recordset to an excel file. Here is the code ...
Rating
Detecting Keyboard strokes
Total Hit (15619) «code LangId=1»'In a module '*************************** '* Keyboard constants '*************************** Public Const VK_ACCEPT = &H1E Public Const VK_ADD = &H6B Public Const VK_APPS = &H5D Public Const VK_ATTN = &HF6 Public Const VK_BACK = &H8 Public Const VK_BROWSER_BACK = &HA6 Public ....Read More
Rating
This is a link to a different site Binary download with the Internet Transfer Control by Mikael Östberg
Total Hit (2804) Have you ever wanted to retrieve information automatically from another web page and display it on your own web page? There are a couple of ways to do this. One way, which I am going to show you in this article, is using the Microsoft Internet Transfer Control, also known as the Inet Control. It is ....Read More
Rating
This is a link to a different site HOWTO: Navigate Excel Objects from Visual Basic
Total Hit (2178) This article explains three methods you can use to navigate and access Microsoft Excel Application objects: «LI»Using longhand and default properties «LI»Using aliasing «LI»Using the Parent and Application methods of Microsoft Excel version 5.0 objects to access any Microsoft Excel object ....Read More
Rating
This is a link to a different site How to Determine if a Specific Drive Exists
Total Hit (1220) Here is a simple means of determining whether a specific drive exists on the target system
Rating
This is a link to a different site How to Track Cursor Movement in a ListView
Total Hit (966) The methods presented here are a bit different. The first (Check1) causes the mouse cursor to change into a hand, and as it moves over the ListView items, causes the item below to become underlined as a visual aid. This is similar to the visual clue in Internet Explorer when a hyperlink is encounter ....Read More
Rating
This is a link to a different site Duplicating List Contents to Another List or Combo Using SendMessage
Total Hit (1503) You may encounter the need to quickly duplicate the contents of a listbox to another listbox, or to a combo box (or vice-versa). While there is no non-looping method available the use of SendMessage can speed up the copying, especially in situations where a large amount of data is to be duplicated. ....Read More
Rating
This is a link to a different site Filling Polygonal Regions Using ExtFloodFill
Total Hit (1450) Here's a quickie one-form demo that shows how to use the ExtFloodFill API to construct a child's drawing canvas that can save and reload a picture. When the left mouse is pressed, lines are drawn on the picturebox in response to a drag. When the right mouse is pressed, a random colour fills the in ....Read More
Rating
This is a link to a different site GDI+ Wrapper
Total Hit (2339) The GDI+ Wrapper project is a DLL that works on top of Dana Seaman's excellent GDI+ Type Library and aims to provide COM applications with a wrapper providing equivalent functionality to the C++ and .NET GDI+ classes. The current version provides support for Images and Bitmaps. Further contribut ....Read More
Rating
This is a link to a different site Creating Drop-Shadows
Total Hit (2086) Demonstrates how to create drop-shadows for windows and controls using the same technique used by Office XP/VS.NET CommandBars.
Rating


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