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

 

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
InsertionSort - A simple routine with minimal overhead
Total Hit (2044)
Rating
Send Email using CDOSYS.
Total Hit (4121) This code snippet will show you how to send SMTP email using CDOSYS. CDONTS was old library for Win NT which is discontinued in XP and 2000. CDOSYS is more flexible than CDONTS. The follwoing code will work with VB6 and VB.net without any modification. From this code you will learn 1) How to a ....Read More
Rating
SaveRegToFile - Save a registry subkey to a .reg file
Total Hit (2359)
Rating
GetPowerInfo - Retrieve current settings for Power-off and Low-Power features
Total Hit (2282)
Rating
HTMLDecode - Convert an HTML string to a plain text
Total Hit (3320)
Rating
GetExternalHTMLEditor - Read name and path of the external HTML editor
Total Hit (2011)
Rating
SelectPrinter - Setting the application's default printer
Total Hit (2789)
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
ListViewVisibleItems - The number of visible elements in a ListView control
Total Hit (2970)
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
BusinessDateDiff - Evaluate the number of business days between two dates
Total Hit (2947) «Code LangId=1» ' Evaluate the number of business days between two dates ' ' Note that it doesn't take Christmas, Easter and ' other holidays into account Function BusinessDateDiff(ByVal StartDate As Date, ByVal EndDate As Date, _ Optional ByVal SaturdayIsHoliday As Boolean = True) As L ....Read More
Rating
ArrayShuffle - Randomize the order of elements in an array
Total Hit (3428) «Code LangId=1» ' Shuffle the elements of an array of any type ' (it doesn't work with arrays of objects or UDT) Sub ArrayShuffle(arr As Variant) Dim index As Long Dim newIndex As Long Dim firstIndex As Long Dim itemCount As Long Dim tmpValue As Variant firs ....Read More
Rating
Split2 - A Split variant that parses multiple lines of text
Total Hit (1707) «Code LangId=1» ' A Split variant that parses a string that contains ' row and column separators, and returns a 2-dimensional array ' ' the result String array has a number of columns equal ' to the highest number of fields in individual text lines Function Split2(ByVal Text As String, Opti ....Read More
Rating
Determine whether a program is 16- or 32-bit
Total Hit (3276) 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
Get the list of ODBC DSNs (Using ODBCTOOL.DLL)
Total Hit (7427) 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
Check a GUID
Total Hit (2884) The following routine quickly check that a string contains a valid GUID. Of course, it doesn't check that the GUID refers to a valid entity, but at least it lets you quickly reject invalid values: «Code LangId=1» Function CheckGUID(Value As String) As Boolean Const PatternGUID = "{####### ....Read More
Rating
Let the user insert OLE objects in a RichTextBox control
Total Hit (2536) 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
Suppress TreeView's tooltips
Total Hit (3476) By default, all TreeView controls whose version number is 4.70 or higher display the text of the node under the cursor if the node itself isn't completely visible. You can turn off and on this feature by resetting a bit in the control's style, using the following code: «Code LangId=1» Private ....Read More
Rating
Implement a MaxLength property for the ComboBox control
Total Hit (2136) Unlike the TextBox control, the ComboBox control doesn't expose any MaxLength property, so you have no means of limiting the numbers of characters typed by the end user in the edit area. However you can set this value by sending a CB_LIMITTEXT message to the control, passing the maximum number of ch ....Read More
Rating
Load a text file in one operation
Total Hit (2826) The fastest way to read a text file is using the Input$ function, as shown in this reusable procedure: «Code LangId=1» Function FileText (filename$) As String Dim handle As Integer handle = FreeFile Open filename$ For Input As #handle FileText = Input$(LOF(handle), handle) ....Read More
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 resize window accurately to get desired client area ?
Total Hit (7431) Sometimes you might get unexpected window size when you resize or assign different height or width. To resize or change window height/width accurately based on required client area you can use AdjustWindowRect or AdjustWindowRectEx api. You can pass required client area as a RECT parameter to Adjus ....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
How to Cancel Printing job sent to Printer.
Total Hit (3027) 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
This is a link to a different site Determining Free Disk Space in Win95/Win98 with GetDiskFreeSpace
Total Hit (813) 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 Creating a Ledger-Style Listview Report Background
Total Hit (1111) This page takes a different approach based on the Picture property of the VB5 and VB6 listviews. With this demo, picture box properties are set to match the size and font of the listview. The demo then draws two filled rectangles inside the picture box corresponding to ledger colours specified, and, ....Read More
Rating
This is a link to a different site Text Box control - adding Cut, Copy, Paste, Undo and Delete command support
Total Hit (2286) This tip demonstrates how to simply add Cut/Copy/Paste and Undo support to a Visual Basic TextBox.
Rating
This is a link to a different site vbAccelerator Toolbar and CoolMenu Control v3.5
Total Hit (2184) This control allows you to create modern UIs like Internet Explorer or Word with full colour-depth toolbars, CoolMenus, resizable and movable toolbar bands, controls in the toolbar and much more. It works with standard forms and MDI forms and also allows you to create Outlook-style MDI applications ....Read More
Rating


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