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

 

PeekB, PeekI, PeekL - Read a byte, integer or long from memory
Total Hit (4121)
Rating
ShutDownWindows - Shut down and reboot the operating system
Total Hit (2995)
Rating
GetWindowSize - Get a window's dimension in pixels
Total Hit (3771)
Rating
GetDefaultDriverName - Retrieving the default printer Driver name
Total Hit (6970)
Rating
GetMemberType - Check whether an object exposes a property, method, event
Total Hit (1582)
Rating
LinkedList - a class module to store list of values
Total Hit (2946)
Rating
ComboBoxGetDroppedControlRect - Get the size of a ComboBox dropped rectangle
Total Hit (2415) «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 Type RECT Left As Long Top As Long Right As Long Bottom As Long End Type Cons ....Read More
Rating
GetFileOwner - Get the owner of an NTFS file
Total Hit (5174) «Code LangId=1»Private Declare Function GetFileSecurity Lib "advapi32.dll" Alias _ "GetFileSecurityA" (ByVal lpFileName As String, ByVal RequestedInformation _ As Long, pSecurityDescriptor As Byte, ByVal nLength As Long, _ lpnLengthNeeded As Long) As Long Private Declare Function Ge ....Read More
Rating
WriteToStdOutput - Write to standard output stream
Total Hit (2425) «Code LangId=1» Option Explicit Private Declare Function GetStdHandle Lib "kernel32" (ByVal nStdHandle As Long) _ As Long Private Declare Function WriteFile Lib "kernel32" (ByVal hFile As Long, _ lpBuffer As Any, ByVal nNumberOfBytesToWrite As Long, _ lpNumberOfBytesWritten As L ....Read More
Rating
EvalFileName - Ensure that the basename of a file or directory is valid
Total Hit (2599) «Code LangId=1»' EvalFileName ensures that the basename of a file or directory ' conforms to the Microsoft file naming guidelines (see MSDN webpage) ' http://msdn.microsoft.com/library/default.asp?url=/library/en-us/fileio/base/ ' naming_a_file.asp ' ' Return value: ' True = Valid basename ....Read More
Rating
ReplaceChar - A faster version of VB6's Replace function, for single-char replacements
Total Hit (2403) «Code LangId=1»Private Declare Sub CopyMemory Lib "kernel32" Alias "RtlMoveMemory" (pDst As _ Any, pSrc As Any, ByVal ByteLen As Long) ' This is a replacement for the "Replace" function provided by VB6, ' though for single character replacements only. The speed difference varies, ' depe ....Read More
Rating
ShiftLeft - Shift a Long to the left
Total Hit (1547) «Code LangId=1»' Shift to the left of the specified number of times ' ' NOTE: requires Power2() Function ShiftLeft(ByVal value As Long, ByVal times As Long) As Long ' we need to create a mask of 1's corresponding to the ' times in VALUE that will be retained in the result Dim mas ....Read More
Rating
Determine memory usage
Total Hit (3979) The GlobalMemoryStatus API function returns detailed information about the current load on the physical and virtual memory. You can use the following code to display the current amount of free memory: «Code LangId=1» Dim ms As MEMORYSTATUS Dim msg As String ' query for memory ....Read More
Rating
Export DAO databases to any ISAM format
Total Hit (3036) Everyone tells you how to import, but even MS-VB techs start coughing when you ask how to export with DAO! In fact, their own documentation clearly states that it can not be done (see the note on page 314 of Jet Database Engine Programmer's Guide's "Creating an External Table"). To that statemen ....Read More
Rating
Determine whether the IDE is in design, break, or run mode
Total Hit (2192) The VBIDE object model doesn't offer any native property or method to determine whether the IDE is in design-time mode, run-time mode, or debug (break) mode. However, it's easy to deduct this information by looking at the Enabled property of the menu commands in the Run top-level menu: «Code Lang ....Read More
Rating
Never mix SingleUse and MultiUse classes
Total Hit (2758) ActiveX components written in VB can contain both SingleUse and MultiUse classes at the same time. It usually isn't a good idea to use both types of classes in the same project, however. When a client creates an instance of a SingleUse class, COM always runs a new instance of the EXE file that ex ....Read More
Rating
Friend Procedures are faster than Public ones
Total Hit (2957) It might surprise you to learn that Friend procedures are sensibly faster than Public ones. You can prove this yourself by creating an ActiveX EXE project with one Private class and one Public class (Instancing = MultiUse), and then add the following code in both class modules: «Code LangId=1» P ....Read More
Rating
Read and modify a TextBox control's formatting rectangle
Total Hit (3397) By sending appropriate messages to a multi-line TextBox control you can read and modify its formatting rectangle - that is, the inner portion of the control where the user can type. Modifying the size and position of this area can be useful, for example, to leave a left margin where you can add line ....Read More
Rating
Enable and Disable all or part of a scrollbar
Total Hit (3460) The new FlatScrollbar controls expose the ability to selectively disable their arrows. This is useful, for example, when the thumb indicator is at its minimum or maximum: «Code LangId=1» Private Sub FlatScrollBar1_Change() If FlatScrollBar1.Value = FlatScrollBar1.Min Then FlatScrol ....Read More
Rating
How to get all links (i.e. href value of < A > tag) from HTML Page using Regular Expression.
Total Hit (8894) Regular expression is avery powerful tool to solve any complex problem related to text processing. In this article I will show you a technique to parse only <A> tags from HTML file and retrive href value of <A> tag. You can use the same technique to parse any tag from HTML file. You can get value of ....Read More
Rating
Enumerating all available Clipboard formats
Total Hit (7772) Sometimes in your application you might want to check if any Clipboard data available and if available then in which format. You can check format of clipboard data and you can enable/disable menu options based on available clipboard data formats. For example in timer event you can check for CF_BITMA ....Read More
Rating
How to take ownership of a file/folder ?
Total Hit (14980) This sample article will show you how to get owner of a file/folder and how to take ownership of a file/folder? «b»Step-By-Step Example«/b» - Create a standard exe project - Add one module - Add one textbox and one command button on the form1 - Add one ListView control on the form1. To add ....Read More
Rating
How to find Time Zone information on current system ?
Total Hit (3288) The following code will extract the timezone information from your system. It includes three functions. One returns the current date/time in UTC (or ZULU or GMT) time, the next returns the offset of your time zone from GMT in minutes (divide by 60 to get hours), and the last returns the name of the ....Read More
Rating
How to Kill a Program Process
Total Hit (3829)
Rating
This is a link to a different site End points of the connection
Total Hit (3375) This part of the tutorial series is about how to use the getpeername and getsockname Winsock API functions in Visual Basic in order to determine parameters of the TCP connection's end-points.
Rating
This is a link to a different site Standard format of e-mail message describes the parts of e-mail message.
Total Hit (2813)
Rating
This is a link to a different site How to extract graphics from VB binary property files (*.frx, *.ctx, *.dox, *.dsx)
Total Hit (1889) The VB FRX binary files that have been around since the early days (< VB3?) are use to hold large property information assigned in designtime to Forms, and all controls contained with the Form, a property overflow bag if you will. Now we also have even more binary files that provide the same service ....Read More
Rating
This is a link to a different site ListView Demo 3 - Adding Sorting Functionality
Total Hit (979) This page adds a popup menu and the routines necessary to sort and change list views. When the demo is completed, the final app will retrieve the users selection and populate the listview with selected files from that folder, complete with associated icons, file name, file type, file size and cre ....Read More
Rating
This is a link to a different site An example of how to read the Windows NT event viewer on local and remote machine. Author: Gianluigi Cosari
Total Hit (964)
Rating
This is a link to a different site Convert a Character Code to a string describing the Keyboard Keys which must be pressed
Total Hit (2210) Different keyboard layouts use different virtual key codes and shift combinations to represent character codes. This tip demonstrates how to convert a key code into the equivalent virtual key code and shift state, as well as how to provide the name of a virtual key on the keyboard. ....Read More
Rating


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