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

 

SemiCRC - A fast CRC-like algorithm
Total Hit (2318)
Rating
RunAtStartUp - Run any application at startup, once or multiple times
Total Hit (1931)
Rating
GetClasses - Enumerate all the classes defined in a type library
Total Hit (1717)
Rating
ListViewScroll - Scroll a ListView control horizontally or vertically
Total Hit (4370) «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
TextBoxGetLineColumn - Get caret position in a multiline TextBox control
Total Hit (3675) «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 EM_LINEFROMCHAR = &HC9 Const EM_LINEINDEX = &HBB ' Get the line/column coordinates of a given character ....Read More
Rating
GetFilebaseName - Retrieve the base portion in a file name
Total Hit (1583) «Code LangId=1»' Retrieve a file's base name ' if the second argument is true, the result include the file's path Function GetFileBaseName(FileName As String, Optional ByVal IncludePath As _ Boolean) As String Dim i As Long, startPos As Long, endPos As Long startPos = 1 ....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
ArrayMin - The value and index of lowest element in an array of any type
Total Hit (2145) «Code LangId=1» ' Return the minimum value in an array of any type ' ' FIRST and LAST indicate which portion of the array ' should be considered; they default to the first ' and last element, respectively ' If MININDEX is passed, it receives the index of the ' minimum element in the array ....Read More
Rating
Reduce context overhead for COM+ components
Total Hit (1469) Instances of configured components, that is, components configured in COM+, get runtime services owing to context objects. When you instantiate a COM+ component, your instance will live in a context object. When you call a method of your instance, the call will go through the context and that is whe ....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
Creating help string for Enum constants
Total Hit (3007) 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
Highlight the contents of a control on entry
Total Hit (1792) Here's a simple way to highlight the current word in a TextBox control (i.e. the word where the caret is): «Code LangId=1» Text1.SetFocus SendKeys "^{LEFT}+^{RIGHT}" «/Code» Similarly, you can highlight the current line in a multiline TextBox control as follows: «Code LangId=1» Text1.SetFo ....Read More
Rating
Avoid beeps on forms without a default button
Total Hit (3932) If a form contains one CommandButton control whose Default property is set to True, the Enter key activates the CommandButton. If the form doesn't contain any default CommandButton control, however, pressing the Enter key when the focus is inside a TextBox control (and a few other controls as well) ....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
Print a Text File
Total Hit (2406) Module «Code LangId=1» Option Explicit Public Sub PrintTXTFile(FileName As String) Dim x As Integer Dim s As String x = FreeFile On Error GoTo HandleError Open FileName For Input As x Do While Not EOF(x) Line Input #x, s Printer.Print s L ....Read More
Rating
Print Dialogbox without using Common Dialogbox ActiveX control
Total Hit (4850) This code will show you use of PrintDialog API to show print dialogbox. «b»Step-By-Step Example«/b» - Create a standard exe project - Add one class module - Rename it to clsPrnDlg - Add one command button on form1 - Place the following code in form1 «code LangId=1»Private Sub Command1_C ....Read More
Rating
Encrypt/Decrypt file using Microsoft Crypto APIs (With User specific crypto key option)
Total Hit (23940) In our previous article «b»«a href='CodeDetail.aspx?CodeId=3765'»Working with Crypto API to encrypt/decrypt text«/a»«/b» we saw that how to use Microsoft Crypto apis to encrypt/decrypt the data using userdefined secret password. In this code we will see how to encrypt file content eventhough passwor ....Read More
Rating
Rotate graphics (Plygon, line, ellipse, image...) using world transformation technique
Total Hit (5950) 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 (4002) 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 display balloon style tooltip (Updated)
Total Hit (16544) 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 (4803) 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 (1693) 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 Using GetDiskFreeSpaceEx on 32-bit Windows
Total Hit (1328) This page presents four key wrapper routines for the data returned by the GetDiskFreeSpaceEx API. It works on both Win95 and Win95 OSR2, as well as Win98, NT4 Windows 2000 and Windows XP. By checking for the proc address of the GetDiskFreeSpaceExA API in kernel32.dll, which will only return a valid ....Read More
Rating
This is a link to a different site Browsing in Win32/NT4 - An Overview
Total Hit (1586) Details on the ITEMIDLIST, SHITEMID, BROWSEINFO structures, and the SHGetSpecialFolderLocation, SHGetPathFromIDList and SHBrowseForFolder APIs.
Rating
This is a link to a different site Colour Depth Control
Total Hit (624) In VB, you cannot change the colour depth of a bitmap. This article presents classes allowing you to reduce or increase the colour depth using a number of different methods and also to save the resulting image to disk as a bitmap with the specified colour depth. ....Read More
Rating
This is a link to a different site Getting the Correct Filename for a Shortcut
Total Hit (2328) If your application creates or otherwise manipulates shortcuts then you should use the Operating System to determine what the filename for the shortcut should be, as the extension is subject to i18n. This article demonstrates how to use the SHGetNewLinkInfo API call to do this, and also provides a h ....Read More
Rating
This is a link to a different site Tutorial : Retrieving FTP directory listing
Total Hit (2224) 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 38 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.