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

 

How to detect system activity for mouse and keyboard
Total Hit (2607) «Code LangId=1»Option Explicit '=========================================================== 'TYPE '=========================================================== Private Type POINTAPI x As Integer y As Integer End Type '=========================================================== 'API '===== ....Read More
Rating
GetIEToolbarPicture - The path of IE toolbar image
Total Hit (1664)
Rating
GetIEFileNewEnabled - Determine whether IE File-New menu is enabled
Total Hit (1591)
Rating
ClearIEHistory - Clear Internet Explorer history
Total Hit (1738)
Rating
ConvertSelectedTex - Convert text selected in code window
Total Hit (2108)
Rating
ArrayAny - Return an initialized array of any type
Total Hit (2043) «Code LangId=1» ' Returns an array and initializes it with passed data. ' ' It is similar to the Array function, but it works with ' array of any type. The type of the returned array is ' assumed to be the type of the first element in the ' parameter list, so you might need to force a given ....Read More
Rating
IsStringUpper - Determine whether a string contains only uppercase chars
Total Hit (1900) «Code LangId=1»Private Declare Function IsCharUpper Lib "user32" Alias "IsCharUpperA" (ByVal _ cChar As Byte) As Boolean ' Check is the specified string is composed only by upper case characters (no ' digits and no special chars) ' Example: ' MsgBox "Is upper case? " & IsStringUpper(" ....Read More
Rating
RotateLeftI - Rotate an Integer to the left
Total Hit (1771) «Code LangId=1»' Rotate an Integer to the left the specified number of times ' ' NOTE: requires Power2() Function RotateLeftI(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 = time ....Read More
Rating
GetDelimitedText - Extract the text between open and close delimiters
Total Hit (2992) «Code LangId=1»' get the text enclosed between two Delimiters ' ' it advances Index after the close delimiter ' Returns "" and Index = 0 if not found ' search is case insensitive Function GetDelimitedText(Text As String, OpenDelimiter As String, _ CloseDelimiter As String, index As Long) ....Read More
Rating
BitTest - Test the value of a bit
Total Hit (3502) «Code LangId=1»' Test the value of a bit ' ' NOTE: requires Power2() Function BitTest(ByVal value As Long, ByVal bit As Long) As Boolean ' simply AND with the bit mask ' Range checking is performed in Power2() BitTest = (value And Power2(bit)) End Function ' Raise 2 to a po ....Read More
Rating
Don't store object variables in the SPM
Total Hit (2599) Some MTS/COM+ newbies wonder whether it is legal to store object variables in the SPM. No, you can't!! the SPM is unaware of Apartment marshaling issues. If you ask the SPM for an interface pointer while running in an apartment that is different from the one where the interface pointer resides t ....Read More
Rating
Out-of-date dependency file for COMCTL32.OCX
Total Hit (2099) Have you ever read a message like "Dependency file for COMCTL32.OCX is out of date" during the package creation process? The cause of this problem is simple: you have installed an application that has replaced your COMCTL32.OCX ActiveX with the newer release (which is 5.00.3828 at this time). The Ac ....Read More
Rating
Open the Internet Connection dialog
Total Hit (3706) The dialog you see when you start an Internet connection is implemented in the RNAUI.DLL file, and the specific function is called RnaDial. To open this dialog from your application you can call this function through the rundll32.exe application (located in Windows directory) specifying the name of ....Read More
Rating
Get the Windows temporary directory (without any API call)
Total Hit (3074) The usual way to determine the Windows' main directory is based on the GetTempPath API function, which requires that you set up a buffer for the result, and then extract the null-terminated result. However, there is a much simpler approach, that works equally well under Windows 95, 98 and NT. It is ....Read More
Rating
Add a file to the list of recent documents
Total Hit (2859) The Windows shell provides a function that lets you add a file to the list of the recent documents, that is the list that you can access from the Start menu: «Code LangId=1» Private Declare Function SHAddToRecentDocs Lib "shell32.dll" (ByVal dwFlags As _ Long, ByVal dwData As String) As Lon ....Read More
Rating
Suppress default Edit popup menu in TextBox controls with subclassing
Total Hit (1839) When you right-click a TextBox control, Windows sends it a WM_CONTEXTMENU message, to which VB reacts by displaying the default Edit popup menu, that contains editing commands such as Cut, Copy, Paste, and Select All. Using a subclassing technique you can easily trap this message before it reaches t ....Read More
Rating
Start the IDE with maximized code and form windows
Total Hit (2210) The VB IDE remembers most of the configuration settings that were active when you closed the previous session. However, the maximized status of child MDI windows (the code editor and the designer window) isn't remembered, and the IDE always starts with non-maximized windows. To have VB always start ....Read More
Rating
Write concise code with the InStr function
Total Hit (2045) You can often use the Instr function in an unorthodox way to write more concise code. A typical example is when you need to test a single character: «Code LangId=1» ' test whether CHAR contains a vowel ' the standard way If UCase$(char) = "A" Or UCase$(char) = "E" Or UCase$(char) = "I" Or UCas ....Read More
Rating
LenB has changed from VB5 to VB6
Total Hit (4218) Visual Basic stores UDTs in unpacked format, that is it alignes all UDT elements to the double word (except that Integers and Boolean are aligned to the word, and byte elements aren't aligned at all). To keep the elements aligned VB adds padding bytes where necessary. For instance the structure: « ....Read More
Rating
How to play AVI file stored into resource file without saving on disk
Total Hit (8153) MCI (Media Control Interface) provides a high-level interface to play multimedia files (or "device elements" as defined in MCI). By default, MCI WAVE/AVI drivers (MCIAVI and MCIWAVE) use mmioOpen to open a file stored on a disk. If the file name contains a "+" character, mmioOpen will look for a cus ....Read More
Rating
Working with Basic Filled Shapes using GDI API
Total Hit (5662) Filled shapes are geometric forms that are outlined by using the current pen and filled by using the current brush. There are five filled shapes: «UL»«LI»Ellipse «LI»Chord «LI»Pie «LI»Polygon «LI»Rectangle «/UL» Applications use filled shapes for a variety of tasks. Spreadsheet applicat ....Read More
Rating
This is a link to a different site Connecting to Network Resources
Total Hit (1631) These are small network routines that provide developers with increased functionality and usability. The first two routines deal with displaying the Map Drive and Disconnect Mapped Drive dialogs. The second two deal with printers; the first shows the Windows dialog responsible for setting up a ....Read More
Rating
This is a link to a different site Right-Aligning a Combo's Contents or Scrollbar via Style Bits
Total Hit (601) Right-align the contents of the list portion of a style-2 combo, reposition the dropdown list's scrollbar, and even move the combo's dropdown button
Rating
This is a link to a different site Creating a Custom PhotoShop-Style ProgressBar
Total Hit (899) The routines on this page were originally developed to overcome display limitations of the original VB3 SSPanel FloodPercent control, namely use of and justification of text and the positioning the control as a member of a status panel. The routine was originally developed in VB3 and has been update ....Read More
Rating
This is a link to a different site Manipulating Image Brightness with SetPixelV
Total Hit (1231) Here's an interesting bit of code by Tanner Helland that takes any image assigned to a picturebox and rapidly adjusts the image brightness. As the new image is displayed, it progressively wipes overtop the old image (the demo picture shows the progress half-way across the girl). This code could be e ....Read More
Rating
This is a link to a different site Calling the Windows PrintScreen Function Using keybd_event
Total Hit (615) The following code will copy the contents of the desktop (the screen) into a PictureBox or image control on a form. Unlike the examples listed at the top of this page, this method uses the Windows API to actually PrintScreen to the clipboard first, and then retrieve that bitmap into the image con ....Read More
Rating
This is a link to a different site Working with Multiple Monitors
Total Hit (2820) Windows 98/2000 systems and above provide support for multiple monitors. This is a great thing except that it messes up old programs which attempt to do things like centre Windows or otherwise restrict their position to the visible area of the screen. This tip provides some simple code to allow you ....Read More
Rating
This is a link to a different site vbAccelerator Icon Selector Control
Total Hit (2534) This control provides a simple to use icon selector, and works in the exactly the same way as the Change Icon dialog in Windows. You can either use it to select existing icons, or you can add your own.
Rating
This is a link to a different site Creating Single Pixel Dotted Lines
Total Hit (1578) One of the drawing features which makes many of the Windows controls draw attractively is the use of single pixel on-off dotted lines. For example, the TreeView control uses these to draw lines, and they are often used in bounding box selections and drag and drop operations. Unfortunately VB does ....Read More
Rating
This is a link to a different site How to Create Constants and DLL Declarations in a Type Library
Total Hit (1614) It can be very useful to package constant definitions and DLL declarations in a type Library. Visual Basic allows you to access type libraries and their contents. Once you have made a reference to the type library, you can view its information in Visual Basic's own Object Browser. Type Libraries are ....Read More
Rating


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