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

Submitted By : Nayan Patel  (Member Since : 5/26/2004 12:23:06 PM)

Job Description : He is the moderator of this site and currently working as an independent consultant. He works with VB.net/ASP.net, SQL Server and other MS technologies. He is MCSD.net, MCDBA and MCSE. In his free time he likes to watch funny movies and doing oil painting.
View all (893) submissions by this author  (Birth Date : 7/14/1981 )

This is a link to a different site Displaying Bitmaps as Icons in Windows' Explorer View
Total Hit (638) As the Visual Basic developer designs more and more apps that utilize tiny bitmaps for toolbars and other things, it quickly becomes apparent that keeping track of exactly what each bitmap looks like is a task in itself.
Rating
This is a link to a different site Filling Polygonal Regions Using ExtFloodFill
Total Hit (1451) Here's a quickie one-form demo that shows how to use the ExtFloodFill API to construct a child's drawing canvas that can save and reload a picture. When the left mouse is pressed, lines are drawn on the picturebox in response to a drag. When the right mouse is pressed, a random colour fills the in ....Read More
Rating
This is a link to a different site Manipulating Image Brightness with SetPixelV
Total Hit (1230) 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 Obtaining Bitmap Info Without APIs
Total Hit (1300) Using binary file access, read the BITMAPFILEHEADER and BITMAPINFOHEADER structures of a file to obtain the image details.
Rating
This is a link to a different site Adding Radio Buttons to Replace the Default Checkmarks
Total Hit (983) When you offer several choices in a menu, you may want to implement a radio button-style selection. This routine handles menus on any form or position on the menu bar.
Rating
This is a link to a different site Mimicking the PrintScreen Function Using OLE
Total Hit (594) This code makes use of the OLE standard interface in Windows95/Windows98 to copy the contents of the desktop (the screen) into a PictureBox and save it to disk. To use this code, you must assure that the Standard OLE Types Reference to file \Windows\System\OLEPRO32.DLL is included in the project's r ....Read More
Rating
This is a link to a different site Mimicking the PrintScreen Function Using BitBlt
Total Hit (578) The following code will copy the contents of the desktop (the screen) into a PictureBox on a form
Rating
This is a link to a different site Variations on Mimicking the PrintScreen Function Using BitBlt
Total Hit (623) Extending the PrintScreen code to add Print Form and Print Any Window capabilities.
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 Presenting a Non-Selectable 'No Data' Picture in a ListBox
Total Hit (1590) The VBnet page Customizing the ListView's Appearance via API showed how to use SendMessage with the LVBKIMAGE structure to display images in the data window of a listview control. Although Windows' normal list box does not support such functionality, we can still fake this functionality using the B ....Read More
Rating
This is a link to a different site Tiling an Image Across a Form
Total Hit (805) 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 Browsing in Win32/NT4 - An Overview
Total Hit (1585) Details on the ITEMIDLIST, SHITEMID, BROWSEINFO structures, and the SHGetSpecialFolderLocation, SHGetPathFromIDList and SHBrowseForFolder APIs.
Rating
This is a link to a different site Implementing the Browse For Folders Dialog
Total Hit (1145) Code to implement the Browse For Folders dialog in Win32/NT4. See the page above for commented descriptions of the function.
Rating
This is a link to a different site Advanced Browse For Folders Dialog Features
Total Hit (1045) Take advantage of some new IE4 and IE5 shell enhancements to the Browse dialog.
Rating
This is a link to a different site Using the Browse For Folders Dialog to Obtain Network Machines or Shares
Total Hit (951) How to return a share or remote computer using the familiar Browse dialog.
Rating
This is a link to a different site Browse for Folders Callback Overview
Total Hit (1433) Windows' Browse for Folders dialog provides the means to retrieve from a user their selection of the Shell's file system and special folders. The following and related code page discuss adding callback functionality to a VB5 application to provide the ability to pre-select a folder on the dialog's d ....Read More
Rating
How to check NULL value in .net ?
Total Hit (2863) IsNull() function of VB6 is not supported in VB.net to check NULL value but there is alternate way to do that «Code LangId=2» If rs("Myfield") IS System.DBNull.Value Then Msgbox("It is NULL") Else Msgbox("It is not NULL") End if«/Code»
Rating
This is a link to a different site SQL LiteSpeed 3.0 -- The Smarter DBA's Backup
Total Hit (819) For almost two years, DBassociatesIT has produced SQL LiteSpeed, an alternative to SQL Server's native backup and restore commands, offering greater security, faster backup and restore speed, and smaller backup files resulting in significantly reduced storage costs. With the introduction of SQL Lite ....Read More
Rating
This is a link to a different site Pre-selecting a Folder using the Browse Callback
Total Hit (1394) Add a callback routine to your VB5/6 code to allow pre-selecting of a file system object when displaying the Browse for Folders dialog. Added version-detecting code and necessary changes to allow the String method to function on NT
Rating
This is a link to a different site Enumerating the Available Display Resolutions
Total Hit (1615) This routine uses Windows' EnumDisplaySettings API to retrieve all the available screen resolutions supported by the display. The results are populated to a ListView showing colour depths, resolutions and frequencies supported. In addition, the current system resolution is determined and flagged. ....Read More
Rating
This is a link to a different site Changing the Display Resolution from Visual Basic
Total Hit (1154) This routine, like the ListView method in Enumerating the Available Display Resolutions, uses Windows' EnumDisplaySettings API to retrieve all the available screen resolutions supported by the display. Here, the results are used to create a "QuickRes-style menu", replete with the option of displayin ....Read More
Rating
This is a link to a different site Using CopyFileEx and Callbacks as a File Backup Mechanism
Total Hit (1308) So that's how you do it!" This demo shows how to add a callback to the CopyFileEx API that returns the progress of a copying routine. But there is a catch ... CopyFileEx is only available on real operating systems - AKA Windows NT.
Rating
This is a link to a different site Enumerating Windows Fonts - Callback vs. VB
Total Hit (1321) Enumerating Windows Fonts - Callback vs. VB
Rating
This is a link to a different site Enumerating Windows Fonts by Type
Total Hit (883) This page shows the code required to add to a listbox only the specifictypes of fonts desired. Windows supports four font type - Vector (such as Modern), Raster (MS Sans Serif), Device-Specific (such as PostScript), and TrueType
Rating
This is a link to a different site Enumerating Windows Fonts with Preview
Total Hit (1225) This is the code required to enumerate the system fonts into a listbox using a callback routine, and provide a sizeable preview of the font selected.
Rating
Simple ASP to display files in a directory with a webview
Total Hit (5571) This is a «b»Really«/b» cool page. I use this for my test site. «LI»Have lots of ASP Pages? «LI»Hate updating links manually? Let this page do the work for you!
Rating
This is a link to a different site Obtaining AVI File Information via API
Total Hit (2349) This routine shows a couple of things. First and foremost, it details how to retrieve AVI file information from the AVI file using the AVIFileOpen the AVIGetFileInfo APIs. It also shows how to populate a ListView with this information, how to determine the Time Scale for the AVI, and how to use this ....Read More
Rating
This is a link to a different site Mulltiple File Upload - Hotmail Style
Total Hit (972) Demonstrates how to upload multiple files using one HttpInputFile control - Hotmail style! The Input type=file allows a user to select only one file at a time thereby forcing a developer to use multiple Input type=file on a page.
Rating
This is a link to a different site VB Programmer's AVIFile Function Help Pages
Total Hit (1164) Windows contains a powerful set of video file functions called the AVIFile API ('Application Programming Interface'). The AVIFile API set of functions is part of an even larger API called the Video For Windows API. It is possible to use the AVIFile functions from Visual Basic. However, the lack o ....Read More
Rating
This is a link to a different site Creating a Transparent Bitmap
Total Hit (1453) Start a new project, and to the form add two controls - a single command button and a single PictureBox containing the picture to make transparent (Source), as shown in the illustration. The 'Transparent Result' in this example is displayed on the form's hdc, not in another picture or image control. ....Read More
Rating


(Page 42 of 133) 3968 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 ...

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

© 2008 BinaryWorld LLC. All rights reserved.