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 40 of 133) 3985 Result(s) found 

 

This is a link to a different site Create a VB Picture from a GDI Picture Handle
Total Hit (2681) This tip shows you how create a VB Picture object from an GDI bitmap handle (hBitmap). This is useful if you are trying to provide VB users with a picture they can use from a GDI class.
Rating
This is a link to a different site Blend Two Colours Together Using Alpha
Total Hit (1479) If you're not using GDI+ for drawing, then there isn't an easy way to determine what colour you would get if you blended two colours together with a specified alpha amount. This article provides a routine that allows you to do it using straight VB code. ....Read More
Rating
This is a link to a different site Moving, Clicking and Tracking the MousePointer in Code
Total Hit (2651) VB doesn't provide any way to determine where the mouse is regardless of which control its over. Neither does it allow you to move the cursor or emulate mouse clicks on objects. This tip provides a simple class which uses API functions to add this functionality. ....Read More
Rating
This is a link to a different site Add File or URL AutoCompletion to TextBoxes and ComboBoxes
Total Hit (1971) Demonstrates how to add File System and/or URL AutoCompletion to a TextBox or Combo Box, using the same code used for the System Common Dialog file name, Start->Run dialog box and IE Address bar. Note that IE5 or above is required to use this function. ....Read More
Rating
This is a link to a different site Create New GUIDs
Total Hit (2433) This sample, from Dion Wiggins (dionwiggins@hotmail.com) shows how to use the CoCreateGuid and StringFromGUID2 functions to create a GUID. The code is compiled into an ActiveX DLL which gives the interesting possibility of using the code from an ASP page, or from other ActiveX-enabled scripting ....Read More
Rating
This is a link to a different site Copy the entire contents of a PictureBox to the clipboard
Total Hit (3128) VB does not allow you to copy the full picture of a Form, UserControl or PictureBox to the clipboard. If you use Clipboard.SetData, it only copies a bitmap loaded into these objects. You can get around this limitation and ensure the entire contents are copied, including any graphics you have drawn, ....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 (2287) 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 Detecting Windows Settings Changes
Total Hit (2398) This tip demonstrates how to detect windows settings changes in your application. You will need to have installed and registered the Subclassing and Timer Assistant (SSubTmr.DLL for VB5 and SSubTmr6.DLL for VB6), available from this site at Subclassing without the crashes to run this sample. ....Read More
Rating
This is a link to a different site System Internet Connection - Determining How and If Connected
Total Hit (2500) If you are designing a project which can use an Internet connection, it can be useful to know whether the system is connected or not. There are various methods of doing this, however the most informative and reliable method is to use the WinInet.DLL InternetGetConnectedStateEx API call. The only pro ....Read More
Rating
This is a link to a different site Create an API hFont from a VB StdFont object
Total Hit (2296) If you are working with API based controls you will find that to set fonts you need a GDI hFont handle to the font. The StdFont object does not directly supply you with this handle. Although it is possible to cast the StdFont object as an IFont object, which does have a hFont handle property, you st ....Read More
Rating
This is a link to a different site Compact a Long Path Name to fit a given space
Total Hit (1832) Often there is not enough room to display all of a long path name. A neat way to format a path name in a given space is to show some of the beginning of the path and the filename itself, whilst missing out some of the central folders and replacing them with ellipses (..) This method is used in many ....Read More
Rating
This is a link to a different site Set Left and Right Margin of Text Boxes and Combo Boxes
Total Hit (1712) This tip demonstrates how to modify the left and right margins of Drop-Down Combo Boxes and Text box controls.
Rating
This is a link to a different site Implementing Unsigned Right and Left Shift Operators
Total Hit (1273) When translating C code to VB, often you come across the Right Shift and Left Shift operators ( << and >> respectively ). There is no inbuilt support for Right and Left Shift in VB, so you have to code your own. One of the main problems with replacing these functions is that C code often uses them i ....Read More
Rating
This is a link to a different site HiWords and LoWords from Long Values
Total Hit (699) When translating C code to VB, you quite often come across the HiWord and LoWord operators, used to pack two integers into a long value. A simple translation of HiWord code will run into difficulties when unsigned integer arithmetic is being used in the C code and the highest bit of the long value c ....Read More
Rating
This is a link to a different site Determine whether a file is in the Internet Explorer cache
Total Hit (2212) If you are creating a shortcut to an Internet file, you will want to know whether it has been visited or not so you can colour it appropriately. This tip shows you how to determine whether a file is in the cache so you can do this.
Rating
This is a link to a different site Detect when a Combo Box Drops Down or Closes Up
Total Hit (1935) This tip demonstrates how to detect a Combo Box drop down or close up by using subclassing. You will need to have installed and registered the Subclassing and Timer Assistant, available from this site at Subclassing without the crashes to run this sample. ....Read More
Rating
This is a link to a different site Add a Check Box to the Left Hand Side of a Drop-Down Combo Box
Total Hit (1783) In Microsoft's Outlook Express, there is a find window which allows you to set a date range to search in. You turn this date range on and off by clicking a check box which is embedded in the left hand side of the combo box. The text of the combo box is moved to the left to accommodate the check box. ....Read More
Rating
This is a link to a different site Make a ComboBox drop down when you press the down arrow key
Total Hit (1776) Drop-down combo boxes by default drop down when you press the F4 key. However, not many users know this, and you can make a combo box easier to use by making it drop down in response to the down arrow key instead.
Rating
This is a link to a different site Create a VB Picture from an API Icon Handle
Total Hit (1883) This tip shows you how create a VB Picture object from an GDI icon handle. This is useful if you are dealing with real GDI icons.
Rating
This is a link to a different site Link Spoof
Total Hit (1496) LinkSpoof is a sample from Robert Heinig (rheinig@gmx.net) demonstrating one technique to take over the VB6 compile process in order to compile your own code into the finished executable.
Rating
This is a link to a different site Storing Objects Against ItemData and Tag properties
Total Hit (1880) ListBox and Combo boxes have an ItemData property to allow you to store an additional long value against each ListItem. Similarly, ListView items and TreeView nodes have a Tag property which can be used to store a string. But what if you want to associate more data along with an item? Clearly you ca ....Read More
Rating
This is a link to a different site SendKeys using the API
Total Hit (3413) VB provides the SendKeys command which is supposed to create key events in the focus control. However, in practice SendKeys sometimes doesn't work correctly, it is missing some keys and doesn't offer much flexibility in controlling the sequence of key strokes that gets sent. This article demonstrate ....Read More
Rating
This is a link to a different site Responding to AppCommands
Total Hit (1707) The WM_APPCOMMAND message was added to Windows 2000 and ME to provide a mechanism to send the events from extended keys on newer keyboards to applications on the system. Extended keys are things like the back, forward and search button. This tip demonstrates how to intercept events from these keys i ....Read More
Rating
This is a link to a different site Change The Width of Items in a Listbox
Total Hit (2378) Normally in a VB ListBox, if a ListItem is too long to fit, it is clipped by the display. This tip demonstrates how to modify a ListBox so it displays a longer items with a horizontal scroll bar.
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 Providing a proper VB Application Icon, Including Large Icons and 32-Bit Alpha Images
Total Hit (2166) If you set your application's icon using the built-in facilities of VB, you will find there's a few things that go wrong. 48x48 icons are not supported; neither are 32-bit colour depth icons. In addition, you can't provide an application icon which includes multiple colour depths and sizes so it wil ....Read More
Rating
This is a link to a different site Detecting Mouse XButton Clicks
Total Hit (2085) Recently I discovered that my mouse had two strange buttons on the left-hand side (until then I'd thought that the mouse's case just wasn't very well put together). Turns out these are the 'X Buttons' and can be used for moving backwards and forwards in Explorer and IE. This sample demonstrates how ....Read More
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 (2209) 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
This is a link to a different site Text Box Balloon tip support in XP
Total Hit (937) This tip demonstrates how to to use the new Balloon Tip support provided for TextBoxes under XP. Cue Banners may also work, but only if you don't have multiple language support installed.
Rating
This is a link to a different site Creating a new GDI Bitmap from a VB Picture or DC
Total Hit (3183) If you're creating some code which works with VB but draws with the more powerful GDI functions, it's often very handy to be able to create a new bitmap handle from a VB StdPicture object or from an area of a DC. This article demonstrates how to do this with a few lines of GDI code. ....Read More
Rating


(Page 40 of 133) 3985 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 55 56 57 58 59 60 ...

Recommanded Links

 

Home   |  Comment   |  Contact Us   |  Privacy Policy   |  Terms & Conditions   |  BlogsZappySys

© 2008 BinaryWorld LLC. All rights reserved.