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

 

Working with ADSI (Active Directory Service Interface)
Total Hit (7448) Active Directory Services Interfaces (ADSI) is a set of open interfaces that abstract the capabilities of directory services from different network providers to present a single view for accessing and managing network resources. Administrators and developers can use ADSI services to enumerate and ma ....Read More
Rating
How to get/set list of files copied in to clipboard using API
Total Hit (6005) «b»Step-By-Step Example«/b» - Create a standard exe project - Add one drive control, one dir control, one file control, three command button controls and one timer control. Set MultiSelect=True for File control - Add the following code in form1 «code LangId=1»Option Explicit ' Required data ....Read More
Rating
Scale, Translate, Shear, Reflect and Rotate graphics using World Transformation technique
Total Hit (6010) «b»Step-By-Step Example«/b» - Create a standard exe project - Add six commandbutton controls on form1 - Add one picturebox controls on the form1 - Add the following code in form1 «code LangId=1»Private Declare Function SetWorldTransform Lib "gdi32" ( _ ByVal hDC As Long, ByRef lpXf ....Read More
Rating
How to display Advanced document property of a selected printer ?
Total Hit (3542) This demo will show you how to use AdvancedDocumentProperties function to displays a printer-configuration dialog box for the specified printer, allowing the user to configure that printer. «b»Step-By-Step Example«/b» - Create a standard exe project - Place following code in form1 code windo ....Read More
Rating
How to modify (Add/Remove) System Menu using API ?
Total Hit (12075) In this article you will learn how to modify system menu (control menu). You will also learn how to handle event of newly added menu item. To modify system menu first you have to call GetSystemMenu api to get handle of system menu and then you can all other menu APIs (i.e. GetMenuItemCount, Appen ....Read More
Rating
Poke - Write a value of any type into memory
Total Hit (3403)
Rating
OpenWindowsHelp - Bring up the Windows Help system
Total Hit (2204)
Rating
DiscardMouseMessages - Prevent queud mouse actions from being processed
Total Hit (3148)
Rating
CreateFileAssociation - Associate a file extension to a program
Total Hit (3486)
Rating
InstallPrinter - Install a new printer on the system
Total Hit (5589)
Rating
GetObjectGUID - Retrieve the GUID of a COM object
Total Hit (2717)
Rating
ObjFromPtr - Return an object from its pointer
Total Hit (3787)
Rating
ComboBoxSetHeight - Set a new height for the list portion of a ComboBox control
Total Hit (2366) «Code LangId=1» Private Type RECT Left As Long Top As Long Right As Long Bottom As Long End Type Private Declare Function GetWindowRect Lib "user32" (ByVal hWnd As Long, _ lpRect As RECT) As Long Private Declare Function ScreenToClientAny Lib "user32" Alias "ScreenToClient" ....Read More
Rating
ReplaceLast - Replace the last occurrence of a substring
Total Hit (2126) «Code LangId=1»' Replace the last occurrence of a string Function ReplaceLast(Expression As String, Find As String, ReplaceStr As String, _ Optional Compare As VbCompareMethod) As String Dim i As Long i = InStrRev(Expression, Find, , Compare) If i Then ' the search s ....Read More
Rating
ShiftRight - Shift a Long to the right
Total Hit (2434) «Code LangId=1»' Shift to the right of the specified number of times ' ' NOTE: requires Power2() Function ShiftRight(ByVal value As Long, ByVal times As Long) As Long ' we need to create a mask of 1's corresponding to the ' digits in VALUE that will be retained in the result Dim ....Read More
Rating
InstrLast - Find the last occurrence of a substring
Total Hit (2775) «Code LangId=1» ' returns the last occurrence of a substring ' The syntax is similar to InStr Function InstrLast(ByVal Start As Long, Source As String, search As String, _ Optional CompareMethod As VbCompareMethod = vbBinaryCompare) As Long Do ' search the next occurrence ....Read More
Rating
Unrecognized Database Format Error Message with Access 2000 Databases
Total Hit (2566) The standard DAO Data control is designed to work with the Jet 3.5 Engine, whereas Access 2000 database can be accessed only by the more recent Jet 3.6 engine. For this reason, any attempt to access an Access 2000 database using the standard DAO Data control, as well as regular DAO commands, is doom ....Read More
Rating
Pass the hidden Global object to an ActiveX DLL
Total Hit (3104) An ActiveX DLL doesn't have direct access to the environment of the calling EXE. For example, the App and Printer objects in the DLL don't correspond to the objects with the same name in the main application, therefore if you want to print something from the DLL using the same settings as the main a ....Read More
Rating
References to form and controls prevent complete form unloading
Total Hit (1745) When you assign a reference to a form (or one of its controls) to an object variable which is stored outside the form module, you must set the variable to Nothing or the form won't be completely unloaded. In other words, it will become invisible but will continue to take memory. Note that this i ....Read More
Rating
Check whether a string array contains an item (without a loop)
Total Hit (2557) To determine whether a String array contains a given item it seems that you can't avoid writing a loop. However, you can do it with just one line of code, using the new VB6 Join function: «Code LangId=1» ' ARR is an array of string, SEARCH is the value to be searched Found = InStr(1, vbNullChar ....Read More
Rating
This is a link to a different site Tutorial - Image List Control Introduction
Total Hit (2125) The Image List control allows you to add images to your program, which you can use in the other Common Controls (Toolbar, TreeView, ListView etc). To add the ImageList control to your VB project, click Project|Components, and check the box next to Microsoft Windows Common Controls x.x where x is the ....Read More
Rating
This is a link to a different site ListView Demo 4 - Adding the Associated Icons
Total Hit (1128) By far the most complicated code yet, this page adds the code necessary to retrieve the Windows associated icon for a given file, assign it to an imagelist dynamically, and use it to display with the file in the listview. Among the features of the method detailed here is the reuse of an icon if it h ....Read More
Rating
This is a link to a different site Simulating 'MaxLength' in a Combo's Edit Box
Total Hit (1288) Here is a simple method to limit user input into a Style-0 or Style-1 combo box, using SendMessage and CB_LIMITTEXT.
Rating
This is a link to a different site Implementing the Browse For Folders Dialog
Total Hit (1141) Code to implement the Browse For Folders dialog in Win32/NT4. See the page above for commented descriptions of the function.
Rating
This is a link to a different site Text Box Balloon tip support in XP
Total Hit (935) This tip demonstrates how to to use the new Balloon Tip support provided for TextBoxes under XP. Cue Banners may also work, but only if you don't have multiple language support installed.
Rating
This is a link to a different site Texturising Images
Total Hit (1924) This sample provides a simple image processing application which applies a texture to an image by modifying the lightness of the image according to the lightness of a texture image. The texture image is tiled across the surface of the processed image. ....Read More
Rating
This is a link to a different site True Colour DIBSection
Total Hit (2704) This article describes in detail the DIB Section techniques used in the vbAccelerator Image Processor. It describes what DIB Sections are, how to use them and provides True Colour DIBSection class I wrote to wrap up the DIB Section.
Rating
This is a link to a different site Connecting to the remote host : Winsock API Test Bench sample application
Total Hit (3994) Most of the Internet application protocols used today (HTTP, FTP, SMTP, POP3, NNTP and so on) use connection oriented sockets in order to exchange data. That means that two hosts must establish connection before any chunk of data will be sent. As a rule, the initiator of the establishing of the conn ....Read More
Rating
This is a link to a different site Mail Checker Sample Application
Total Hit (2451) the tutorial that shows you all the steps of creating of the simple application for receiving e-mail.
Rating
This is a link to a different site Tutorial : Tracking FTP session state
Total Hit (1998) The CFtpClient class has a number of helper properties and events that allow us to find out what is going on inside the class and what data is transferred on the wire at any moment of the FTP session. Today we’ll examine two events of the class: OnStateChange and SessionProtocolMessage. We’ll modify ....Read More
Rating


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