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

 

SortBase - Support sorting routines
Total Hit (2299)
Rating
SaveRegToFile - Save a registry subkey to a .reg file
Total Hit (2358)
Rating
GetPowerInfo - Retrieve current settings for Power-off and Low-Power features
Total Hit (2282)
Rating
GetExternalHTMLEditor - Read name and path of the external HTML editor
Total Hit (2011)
Rating
GetMP3Info - Get info in the standard ID3 tag of the specified MP3 file
Total Hit (2703)
Rating
GetTreeViewFirstVisibleNode - Retrieve the first visible node in a TreeView
Total Hit (3479) «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 Const TV_FIRST = &H1100 Private Const TVM_GETNEXTITEM = (TV_FIRST + 10) Private Const TVM_SELECTITE ....Read More
Rating
SetListItemHeight - Change the height of items in a ListBox or ComboBox control
Total Hit (1802) «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 LB_SETITEMHEIGHT = &H1A0 Const CB_SETITEMHEIGHT = &H153 ' Set the height in pixels of each entry in a ....Read More
Rating
ArrayToListbox - Add an array of strings to a ListBox or ComboBox
Total Hit (4300) «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 Function LockWindowUpdate Lib "user32" Alias "LockWindowUpdate" _ (ByVal hwndLock As Long) A ....Read More
Rating
ASinH, ACosH, ATanH, ACotH, ASecH, ACscH - Hyperbolic inverse trig functions
Total Hit (3728) «Code LangId=1» ' hyperbolic arc sine Function ASinH(value As Double) As Double ASinH = Log(value + Sqr(value * value + 1)) End Function ' hyperbolic arc cosine ' error if NUMBER is inside the range [-1,1] Function ACosH(value As Double) As Double ACosH = Log(value + Sqr(value ....Read More
Rating
Determine whether a program is 16- or 32-bit
Total Hit (3274) Even if we're living in a 32-bit world, and closer and closer to the 64-bit day, 16-bit programs are still running out there. Knowing whether a given EXE is 32-bit or not can be useful when you have to arrange version checking routine, for example to detect which version of a product is installed. ....Read More
Rating
Create a simple Windows inspector
Total Hit (4188) It takes only a handful of lines of code to create Windows inspector program, that is, an utility that lets you display the handle, the class name and the contents (Text or Caption) of the window under the mouse cursor. To create such a program, create a small form, add a Label1 control and a Tim ....Read More
Rating
Get the list of ODBC DSNs (Using ODBCTOOL.DLL)
Total Hit (7425) 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
Use Objptr function to quickly locate an object in a Collection
Total Hit (3116) One of the simplest and most effective uses of the ObjPtr function is to provide a key for quickly locating an object in a Collection. Let's suppose you have a collection of objects that don't have a property that can be used as a key to retrieve them in a collection. You can work around this by usi ....Read More
Rating
Let the user insert OLE objects in a RichTextBox control
Total Hit (2535) A little-known feature of the RichTextBox control allows you to insert an OLE object in the text being edited. However, you can do so only programmatically, by adding an element to the OleObjects collection. An easy way to let the user select the object to be embedded in the control is using the Ins ....Read More
Rating
Provide better visual feedback for disabled TextBox and ComboBox controls
Total Hit (1717) When you disable a control, VB grays its contents. However, often this action goes unnoticed by the end users. Here's a routine that changes the control's BackColor property in addition to changing its Enabled property:
Rating
Testing a key in a PropertyBag without raising an error
Total Hit (3027) When you pass a non-existing key to the WriteProperty method of the PropertyBag object you get an error 327 "Data value named 'namekey' not found". This is more or less the same error - albeit with a different error code - that you receive when you pass an non-existing key to the Item method of a Co ....Read More
Rating
How to read image Width and Height in Pixel (Works in VB, ASP, VBScript)?
Total Hit (3469) You can use the following code to read image height and width in pixels. If you want to use this code in ASP or VB Script then you have to compile the code in to DLL and then you can call CreateObject Method. <b>Steps if you are using in ASP/VBScript</b> - Create an ActiveX DLL project - R ....Read More
Rating
Rotating Image using PlgBlt API (Win 9x/ME not supported)
Total Hit (8276) - Create a standard exe project - Place two picture box and one timer control onth form1 - Assign some image (relatively small image would do betetr) to Picture1. - Add the following code in form1 «code LangId=1»Private Declare Function PlgBlt Lib "GDI32.dll" (ByVal hDCDest As Long, _ ....Read More
Rating
Working with AVI Files - Part 3 (Working With Frames, AVI to BMP)
Total Hit (25477) In my previous 2 articles «a href='CodeDetail.aspx?CodeId=3612'»«b»Part-1 (Opening and Closing AVI file)«/b»«/a» and «a href='CodeDetail.aspx?CodeId=3613'»«b»Part-2 (Working with AVI Streams)«/b»«/a» you learned that how to open and close AVI file and Stream we also learned how to get basic informat ....Read More
Rating
How to bring window to the front in Windows 2000/ME ?
Total Hit (4332) Have you ever tried to use SetForegroundWindow function in Windows 2000/ME ? In windows 9x its very easy to set foreground window, just pass window handle to SetForegroundWindow and done... But in Windows 2000 and ME microsoft has changed the process for setting foreground window. In windows 2000 an ....Read More
Rating
How To Start a Process as Another User from Visual Basic
Total Hit (6826) This article shows you how to programmatically start a process as another user from Microsoft Visual Basic. To do this, you can use the LogonUser and CreateProcessAsUser Win32 APIs on a computer that is running Microsoft Windows NT 4.0, or you can use the CreateProcessWithLogonW Win32 API on a compu ....Read More
Rating
Working with AVI Files - Part 1 (Opening and Closing AVI file)
Total Hit (21859) This series of articles will show you step by step approach for working with AVI files in VB using Win32 API. In this article series we will go through following tutorials. Other articles in this series «b»«a href='CodeDetail.aspx?CodeId=3612'»Working with AVI Files - Part 1 (Opening and Closi ....Read More
Rating
How to Cancel Printing job sent to Printer.
Total Hit (3026) To learn more about Printing Using API click on the folloing link «a href='http://msdn.microsoft.com/library/en-us/gdi/prntspol_0r1j.asp'»http://msdn.microsoft.com/library/en-us/gdi/prntspol_0r1j.asp«/a»
Rating
Working with the PivotTable Component's Object Model
Total Hit (2250) The PivotTable List control is represented in the object model by the PivotTable object. You use the DataSource property to specify the source of the data to be displayed in the control. Typically, this property setting will consist of an ADO data source or another one of the Office Web Component co ....Read More
Rating
How to quick sort data in MS Flex Grid
Total Hit (3054)
Rating
Getting Multiple Files back from the CommonDialog Control
Total Hit (2626)
Rating
This is a link to a different site Socket's transport protocol and other options : Winsock API Test Bench sample application
Total Hit (3496) In the previous article we have learned how to create and close sockets. All we know about the socket, at this moment, is only its handle - integer value that is used by the Winsock service and our application just to recognize it. But the socket is not just an integer value - some memory, system re ....Read More
Rating
This is a link to a different site Determining Free Disk Space in Win95/Win98 with GetDiskFreeSpace
Total Hit (812) The routine presented here to determine a drive's available disk space will return incorrect results on volumes over 2 gigabytes, as supported by the FAT32 partitions implemented in Windows95 OEM Service Pack 2, Windows 98 (without FAT32 conversion) and NT4. See the comments section following the co ....Read More
Rating
This is a link to a different site Using the cNewMenu DLL to Create Start Menu/ICQ Style Pop-up Menus
Total Hit (1717) The PopupMenu ActiveX DLL let's you create an unlimited number of cool-looking pop-up menus in your application, but what to do in the unlikely event that even that's not cool enough for you? The new version gives you this control too. The OwnerDraw property, which applies to each menu item allows y ....Read More
Rating
This is a link to a different site Using CBT Hooks to Centre API Dialogs
Total Hit (2095) Windows sometimes places Common Dialogs and Message Boxes at the "wrong" position on the screen. Whilst there are some ways of working around this for Common Dialogs, a more general solution which applies to any Windows dialog is to use a CBT (Computer-Based Training) Windows Hook. These Hooks provi ....Read More
Rating


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