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 1 of 5) 122 Result(s) found 

 

(Screen Saver) diffuseGravity
Total Hit (2854) This screen saver simulates 4 particles with gravity, and draws color changing lines between them. Gravity, refresh, and number of color bars are fully configurable, and you end up with some VERY neat pictures. I used the screen saver template at vbhelper.com as a starting point. ....Read More
Rating
Animated form icons
Total Hit (3944) You can add a professional touch to your apps by showing an animated icon when the main form is minimized. To achieve this effect, prepare an array of Image controls, each one containing the icons that make up the animation, then add a Timer control, with the Enabled property set to True and the Int ....Read More
Rating
Build a simple browser for icons
Total Hit (2958) Winodws uses a special browser to show all icons contained in a file and offers the end user the possibility to choose an icon from it. You can add this functionallity to your applications through an undocumented API function, SHChangeIconDialog. Its Declare is: «Code LangId=1» Declare Function ....Read More
Rating
Convert a color value to a gray scale
Total Hit (3226) When you have a 32-bit color value, you can convert it to a grey-scale - that is, you can determine how it would appear on a monochromatic display (more or less) using the following function: «Code LangId=1» Function GetGreyScale(ByVal lColor As Long) lColor = 0.33 * (lColor Mod 256) + 0.59 ....Read More
Rating
Copy the contents of the screen or the active window
Total Hit (5391) The standard way to copy the contents of the screen or a window to a picture box requires you to use a lot of API functions, such as BitBlt. A simpler approach is possible, though: you just have to simulate the typing of the Print Screen key (or Alt+Print Screen if you want to copy the contents of t ....Read More
Rating
Display an animated GIF using the WebBrowser control
Total Hit (4199) The standard PictureBox control doesn't support the Animated GIF graphic format. However, you can display these images by using a WebBrowser control: «Code LangId=1» WebBrowser1.Navigate "c:\Images\Animated.Gif" «/Code» The only problem of this technique is that the WebBrowser control also di ....Read More
Rating
Extract Red,Green,Blue components of a color
Total Hit (2907) If you have a 32-bit color value in RGB format, you can extract its Red, Green and Blue components using the following routines: «Code LangId=1» Function GetRed(ByVal lColor As Long) As Long GetRed = lColor Mod 256 End Function Function GetGreen(ByVal lColor As Long) As Long GetGre ....Read More
Rating
Extract RGB components from a Long value
Total Hit (2994) You can extract RGB values out of a 32-bit color value by using the integer division and the MOD operators, but there is a much more effective way, based on the LSet. You can convert from a long to rgb bytes and vice versa with the following code: «Code LangId=1» Private Type RGBWrapper Red ....Read More
Rating
Getting a pixel color
Total Hit (3857) The Point method returns the color value of a given pixel, but is rather slow because it has to convert its argument from twips (or whatever ScaleMode is currently active) to pixels, and also because its argument are treated as Single quantities, and must therefore converted. When you have to retrie ....Read More
Rating
Retrieving Bitmap properties
Total Hit (4068) The Picture box control does not directly expose any property that returns information on the bitmap currently loaded. You can retrieve this information by calling the GetObject API function, passing it the handle of the bitmap. This value is the Handle property of the IPictureDisp object (which is ....Read More
Rating
Setting a pixel color
Total Hit (3512) The PSet method is much slower than it should actually be, and in most cases you will find it convenient to substitute it with direct calls to the SetPixel API functions. This function is about twelve times faster than the VB's method, at least when you can set the form's ScaleMode to Pixels, for mo ....Read More
Rating
AreaFill - Fill an area with a solid color
Total Hit (3883)
Rating
BackgroundCircularGradient - Paint a circular background gradient
Total Hit (3416)
Rating
BackgroundHorizontalGradient - Paint an horizontal gradient background
Total Hit (2827)
Rating
BackgroundVerticalGradient - Paint a vertical gradient background
Total Hit (3707)
Rating
ChangeScreenResolution - Change the current screen resolution
Total Hit (4143)
Rating
CheckFont - Test whether a font is installed
Total Hit (2936)
Rating
CreateEmf - creating an Enhanced Metafile (EMF) from a bitmap image
Total Hit (6415)
Rating
Drawing Polygon with ALTERNATE and WINDING style
Total Hit (3834)
Rating
DrawSystemIcon - Draw a system icon on any device context
Total Hit (3195)
Rating
GetBitmapInfo - Retrieve information on a bitmap
Total Hit (3334)
Rating
GetBitmapInfo - Retrieve width, height and colors in a bitmap
Total Hit (2890)
Rating
GetDisplaySettings - Retrieve information about available display modes
Total Hit (3465)
Rating
GetScreenSnapshot - Capture a window or the entire screen
Total Hit (5413)
Rating
GetSystemIcon - Get a Windows standard icon as a StdPicture object
Total Hit (4351)
Rating
IconToPicture - Convert an icon handle to a Picture object
Total Hit (4129)
Rating
Print3D - Display text with 3D effect
Total Hit (2847)
Rating
RotateBitmap - Rotate a 256-color bitmap by any angle
Total Hit (5998)
Rating
RotatePicture - Rotate a 256-color bitmap by any angle (super-optimized version)
Total Hit (3447)
Rating
Rotator - A class for printing rotated text to screen or the printer
Total Hit (4619)
Rating


(Page 1 of 5) 122 Result(s) found  1 2 3 4 5

Recommanded Links

 

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

© 2008 BinaryWorld LLC. All rights reserved.