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

 

ShowWindowsInTreeView - Display a windows hierarchy in a treeview control
Total Hit (1979)
Rating
GetWindowClientSize - Get the size of a window's internal area
Total Hit (1959)
Rating
RecycleBinItems - Get info on the items in the Recycle Bin
Total Hit (2014)
Rating
CLSIDToProgID - Convert a CLSID into a ProgID
Total Hit (3778)
Rating
HashTable - a class module for storing (key,value) pairs
Total Hit (3544)
Rating
GetDriveTypeEx - Detect drive type, including CD or DVD driver
Total Hit (7361) «code LangId=1»Private Type DEVICE_MEDIA_INFO Cylinders As Double MediaType As STORAGE_MEDIA_TYPE TracksPerCylinder As Long SectorsPerTrack As Long BytesPerSector As Long NumberMediaSides As Long MediaCharacteristics As Long End Type Private Type GET_MEDIA_TYPES ....Read More
Rating
GetFileIcon - Retrieve the icon associated to a file
Total Hit (4965) «Code LangId=1»Private Const MAX_PATH = 260 Private Type SHFILEINFO hIcon As Long iIcon As Long dwAttributes As Long szDisplayName As String * MAX_PATH szTypeName As String * 80 End Type Private Declare Function SHGetFileInfo Lib "Shell32" Alias "SHGetFileInfoA" _ ....Read More
Rating
SecondsToTime - Convert a number of seconds to a Date value
Total Hit (2827) «Code LangId=1»' Converts a numeric value in seconds to a time value ' Example: ' MsgBox SecondsToTime(11120) --> 3.5.20 AM Function SecondsToTime(ByVal Seconds As Long) As Date SecondsToTime = CDate(Seconds / 86400) End Function «/Code» ....Read More
Rating
ArrayMax - The value and index of highest element in an array of any type
Total Hit (2085) «Code LangId=1»' Return the maximum 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 MAXINDEX is passed, it receives the index of the ' maximum element in the array F ....Read More
Rating
RotateRightI - Rotate an Integer to the right
Total Hit (1563) «Code LangId=1»' Rotate an Integer to the right the specified number of times ' ' NOTE: requires Power2() Function RotateRightI(ByVal value As Integer, ByVal times As Long) As Integer Dim i As Long, signBits As Integer ' no need to rotate more times than required times = ti ....Read More
Rating
Reduce COM+ context overhead: use non configured classes
Total Hit (1597) In another item in this Tip Bank (see link below), we mention that you can co-locate secondary instances within the context of the caller. If you don't need any services at all for your secondary components, then you don't have to configure them as COM+ components either. You lose the deployment and ....Read More
Rating
Create stand-alone type libraries
Total Hit (3115) Many VB programmers assume that Visual Basic 5.0 is not capable of creating stand-alone Type Libraries, because the documentation states that when an ActiveX component or control is created, the companion Type Library is embedded in the main executable file. This is correct, but if you own the E ....Read More
Rating
Hide the Automation Manager
Total Hit (3324) If you haven't switched to DCOM yet, and still use Remote OLE Automation, you must launch the Automation Manager program on the server machine, in order to let the server respond to requests coming from client workstations. The Automation Manager displays a visible window at launch time, which t ....Read More
Rating
Dragging caption-less forms
Total Hit (2879)
Rating
Highlight current word and line in a TextBox control
Total Hit (2993) 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
Append a string to a textbox quickly and without flickering
Total Hit (2867) The usual way to append text to a TextBox or a RichTextBox control is to concatenate the current contents with the new string: «Code LangId=1» Text1.Text = Text1.Text & newString «/Code» Here is a different approach, which is slightly faster and causes less flickering: «Code LangId=1» Text1 ....Read More
Rating
Get the canonical name of a file
Total Hit (3364) In many cases you may need the canonical (or absolute) name of a file, for example when you need to compare two relative file names (relative to the current directory or drive, that is) and decide whether they point to the same or different files. You can obtain the canonical path of a file usin ....Read More
Rating
Use integer division operator
Total Hit (2876) Use "\" instead of "/" when performing divisions between Integers. The "/" operator returns a Single value, therefore the seemingly efficient line «Code LangId=1» C% = A% / B% «/Code» actually requires three implicit conversions, two for converting the operands from Integer to Single (to pre ....Read More
Rating
Property Procedures in BAS modules
Total Hit (3503) Visual Basic supports Property procedures to implement properties in your own CLS and FRM modules. However, it turns out that you can use Property procedures even within BAS code modules. How can this improve your programming skills? In many a way, as I will demonstrate. Say your program include ....Read More
Rating
How to generate Table Create script for all or one MS Access table using VBA
Total Hit (3847) Many times I have been asked that is there any easy way to generate script of one or all MS Access tables so when you want to create new table with same structure you dont have to click and type thousnd times. Here is the solution for your problem. «b»Step-By-Step Example«/b» - Create a form i ....Read More
Rating
Working with Crypto API to encrypt/decrypt text
Total Hit (25651) This article uses the CRYPTOAPI sample application to demonstrate how to decrypt or encrypt data. For more information check MSDN article «b»«a href='http://msdn.microsoft.com/library/default.asp?url=/library/en-us/dncapi/html/msdn_cryptapi.asp'»MSDN Article : The Cryptography API, or How to ....Read More
Rating
Send Raw Data to a Printer (Bypass Printer Driver) Using the Win32 API from Visual Basic.
Total Hit (13754) The Visual Basic Printer object allows for printing through printer drivers, but there may be times when it is desirable to use the Win32 API to send information more directly to the printer. The code sample to follow shows how to achieve this by using API functions that bypass printer drivers to co ....Read More
Rating
Remove Extra Spaces in between words
Total Hit (1573)
Rating
How to get a listview control to sort numbers correctly...
Total Hit (2347) This is one I discovered after banging my head against the wall for a few hours trying to get a list view control to sort numbers correctly. When trying to create a list view control in report mode that would allow a user to quickly sort by a text listing (in this case a column of state abbreviation ....Read More
Rating
This is a link to a different site How to track the download progress
Total Hit (2434) The Internet Transfer Control (ITC) provides us with a very easy way to retrieve web resources. But unfortunately the control doesn't have any means to track the progress of data transfer. It could be nice if the control ...
Rating
This is a link to a different site An API 'DriveExists' Routine
Total Hit (1236) For the API purest, here's a tiny function that simply returns True if a specified drive exists, or False if not. Using GetLogicalDriveStrings, its a simple matter of retrieving all the available drives, then performing a case-insensitive Instr() against the result to determine if the passed drive ....Read More
Rating
This is a link to a different site Tiling an Image Across a Form
Total Hit (807) How to tile an image across the background of any form (except MDI parents). No APIs needed.
Rating
This is a link to a different site GetLastErr
Total Hit (942) This code snippet returns any error codes from net related functions and system related functions. Author: Elvio Serrao
Rating
This is a link to a different site Image Processing Using DIB Sections
Total Hit (819) This sample demonstrates a new 24 bit image processor using the DIB Section GDI object, allowing you to perform a whole raft of standard Image Processing functions, including blurring, sharpening, colourising, resampling and image arithmetic.
Rating
This is a link to a different site QuickStart - Creating an IE Toolbar
Total Hit (1942) Describes how to use the vbAccelerator CommandBar control by demonstrating how to create a toolbar which looks like the Internet Explorer main toolbar.
Rating


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