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

 

HeapSort - A compact routine that sorts data in place
Total Hit (2711)
Rating
SemiCRC - A fast CRC-like algorithm
Total Hit (2320)
Rating
ShowHtmlHelp - Show a HTML Help page
Total Hit (2357)
Rating
PrintRotatedText - Display a rotated message
Total Hit (4380)
Rating
GetProcID - Retrieve the DispID of a procedure
Total Hit (1784)
Rating
ListViewScroll - Scroll a ListView control horizontally or vertically
Total Hit (4371) «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 LVM_FIRST = &H1000 Const LVM_SCROLL = (LVM_FIRST + 20) ' Scroll the contents of a ListView control ho ....Read More
Rating
SetTreeViewBackColor - Change the background color of a TreeView control
Total Hit (3356) «Code LangId=1» Declare Function SendMessage Lib "user32" Alias "SendMessageA" (ByVal hwnd As _ Long, ByVal wMsg As Long, ByVal wParam As Long, lParam As Any) As Long Declare Function GetWindowLong Lib "user32" Alias "GetWindowLongA" (ByVal hwnd _ As Long, ByVal nIndex As Long) As Long ....Read More
Rating
SaveCSV - Saving the content of a FlexGrid control as a CSV-file
Total Hit (2230) «Code LangId=1» ' Save the content of a FlexGrid control as a CSV-file ' Example: SaveCSV("C:\Test.csv", MSFlexGrid1) Private Sub SaveCSV(ByVal strFilename As String, ByRef msFlex As MSFlexGrid) Const SEPARATOR_CHAR As String = "," Dim intFreeFile As Integer Dim strLine As Stri ....Read More
Rating
DragControl - Drag any control using the mouse
Total Hit (3020) «Code LangId=1» Private Type POINTAPI X As Long Y As Long End Type Private Type RECT Left As Long Top As Long Right As Long Bottom As Long End Type Private Declare Function ClipCursor Lib "user32" (lpRect As RECT) As Long Private Declare Function Cli ....Read More
Rating
BusinessDateAdd - Add or subtract a number of business days from a date
Total Hit (2835) «Code LangId=1» ' add or subtract a number of business days from a date ' ' Note that it doesn't take Christmas, Easter and ' other holidays into account Function BusinessDateAdd(ByVal days As Long, ByVal StartDate As Date, _ Optional ByVal SaturdayIsHoliday As Boolean = True) As Date ....Read More
Rating
GetRoshHashanah - Get the date of Rosh Hashanah (Jewish calendar)
Total Hit (2807) «Code LangId=1»' Returns the date that Rosh Hashanah begins ' for the requested year. It is important to note that ' Rosh Hashanah is based on the Lunar cycle so the Holiday ' actually begins at sunset of the day before the date ' returned by this function. ' Note: Many dates in the Jewish ....Read More
Rating
ReplaceMulti - Multiple string replacements
Total Hit (1857) «Code LangId=1»' Perform multiple substitutions in a string ' The first argument is the string to be searched ' The second argument is vbBinaryCompare or vbTextCompare ' and tells whether the search is case sensitive or not ' The following arguments are pairs of (find, replace) strings ' ....Read More
Rating
Display the Windows Shortcut Wizard
Total Hit (2586) You can programmatically start the Shortcut Wizard from your code, to give the end user the capability to create a new shortcut: «Code LangId=1» Shell "rundll32.exe AppWiz.Cpl, NewLinkHere " & App.Path, 1 «/Code»
Rating
Get the list of ODBC drivers
Total Hit (4233) The ODBCTOOL.DLL library contains three functions that make it easier to manage DSNs. To run the following code you must add a reference to the "ODBC Driver & Data Source Name Functions" library to your References dialog box. If you don't find this library listed in the References list, use the Star ....Read More
Rating
Creating help string for Enum constants
Total Hit (3008) I've been trying to find a way to assign helpstrings for Enums in Visual Basic. The Class builder utility does that only for methods, events, and properties, but not for Enums. The IDL source code that corresponds to an Enum in a type library looks something like follws, and you can run the MIDL ....Read More
Rating
Updating records in DataList and ADO Data Controls
Total Hit (3918) If you use a DataList control linked to an ADO Data Control and if you want to add a record, you have to create a command button with this code: «Code LangId=1» Private Sub cmdAdd_Click() On Error GoTo AddErr datPrimaryRS.Recordset.AddNew txtNew.SetFocus Exit Sub AddErr: MsgBox ....Read More
Rating
Selecting an entire row in a ListView
Total Hit (3645) The ListView control that comes with VB6 lets you select an entire row by setting its FullRowSelect property to True. If you are working with VB5 or you're using VB6 with the old version of the Microsoft Windows Controls this capability isn't avaible, but if you have installed the comctl32.dll versi ....Read More
Rating
The simplest way to help user copy a floppy disk is display the Copy Disk system dialog. You can do this with a one-line statement: Let the user copy floppy disks
Total Hit (2876) The simplest way to help user copy a floppy disk is display the Copy Disk system dialog. You can do this with a one-line statement: «Code LangId=1» Shell "rundll32.exe diskcopy.dll,DiskCopyRunDll 0,0" «/Code»
Rating
Count Sort, a special case of indexed sort
Total Hit (2869) CountSort is yet another sort algorithm, which can be applied only under very particular conditions but that, when such conditions are met, turns to be the fastest of the lot. Count Sort can be used when the key is of Integer type, or when it is of Long type but the range of values is not too large. ....Read More
Rating
Rotate graphics (Plygon, line, ellipse, image...) using world transformation technique
Total Hit (5951) In this article I will show two different techniques to rotate an ellipse. First technique uses polygone points to draw an ellipse and second technique uses world transformation method which only applies to Win NT/2k/XP. «b»Step-By-Step Example«/b» - Create a standard exe project - Add two co ....Read More
Rating
How to enumerate available monitor on your system ?
Total Hit (4004) If you are working with multiple monitors then this example will show you how to enumerate available monitors on your sytem and retrive properties of monitor. «b»Step-By-Step Example«/b» - Create a standard exe project - Add one Module to project - Place one textbox on form1, set MultiLine=T ....Read More
Rating
How to load bitmap data into array from file to perform image operation?
Total Hit (5208) To modift RGB value of bitmap Load the image using LoadPicture() then call GetDIBits() on it's handle to extract the image data and perform the edits you want, then finally SetDIBits() the data back and display where you wish: In our next article I will show you how to get pointer to 2D pixel array ....Read More
Rating
How to display balloon style tooltip (Updated)
Total Hit (16545) Using api you can create ballon style tooltip. You can also set varous parameter for tooltip i.e. Delay time, Style, Color, font etc... I have used IFont to get font handle from StdFont but IFont may create problem sometimes. Check the following article to convert StdFont to APIFont «a href='h ....Read More
Rating
How to shutdown remote machine on a network using API.
Total Hit (4804) This demo will show you how to shutdown remote machine in a specified interval. When you shutdown machine you will see following warning message. «BR»«P Align=center»«img src='/Main/Articles/Lang1/Cat3/Code3580/image3580_1.gif'/»«/P»«BR» «b»For Quick Demo«/b» 1. Start a new project in Vis ....Read More
Rating
This is a link to a different site Tutorial - ListView Control Introduction
Total Hit (1694) The list view control is basically and advanced ListBox. This control allows you to add rows of data, but it also supports large and small icons, multiple columns, automatic label edit, column re-order, hot-tracking, the four main modes that you see in explorer: Icon - Displays items with large i ....Read More
Rating
This is a link to a different site Simulating a TopIndex Property for a ListView
Total Hit (693) A listview control's EnsureVisible method provides a means to bring a referenced item into view. Ditto, the LVM_ENSUREVISIBLE message simply "ensures that a list-view item is either entirely or partially visible, scrolling the list-view control if necessary." If the item of interest is back up t ....Read More
Rating
This is a link to a different site How to Select the Entire Row in a ListView
Total Hit (1503) By setting a ListView style bit using the Windows API SendMessage with the message LVS_EX_FULLROWSELECT, selecting an item will cause the selection rectangle to highlight and span the entire row. Removing this bit restores the default selection style. ....Read More
Rating
This is a link to a different site Show and Hide a Form's Titlebar at run-time
Total Hit (2305) This tip shows you how to show and hide the title bar of a window at run-time. To make a window's title bar disappear, you have to remove the control box, the maximise box and the minimise box as well as set the caption of the form to blank. Unfortunately, VB's ControlBox, MinButton and MaxButton pr ....Read More
Rating
This is a link to a different site Sending files inside e-mail messages
Total Hit (2062) We have published the introduction to UUCode algorithm and tutorial that shows how to add new feature of dealing with attachments to our sample applications Simple MailSender and MailChecker.
Rating
This is a link to a different site Tutorial : Retrieving FTP directory listing
Total Hit (2225) This tutorial will show you how to use the CFtpClient class in order to retrieve FTP directory listing and navigate between FTP directories. We'll improve the sample application that we're creating in the previous tutorials by adding the ListView control that will display content of the current FTP ....Read More
Rating


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