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 )

How To Call CLSID And ProgID Related COM APIs in Visual Basic
Total Hit (5489) This article demonstrates how to use a set of related Component Object Model (COM) APIs that retrieve and manipulate CLSIDs and ProgIDs. The following APIs are discussed: «UL»«LI»CLSIDFromProgID: To retrieve the CLSID of a COM object with a given ProgID. «LI»StringFromCLSID: To convert a CLSID s ....Read More
Rating
How to find out available ports on Local System or Remote System using EnumPorts API ?
Total Hit (3024) You can use EnumPorts API to find out available ports in a specified machine. «b»Step-By-Step Example«/b» - Create a standard exe project, form1 is added by default - Add one textbox, one command button and one listbox on the form1 - Place the following code in form code window «code LangId ....Read More
Rating
How to deal with multi-language input and keyboard layout using API ?
Total Hit (8955) Sometimes application requires multi-language input functionality so user can choose his own language. You can change keyboard layout by Adding and selecting new layout in Control Panel -> Regional Options but how to do the same thing programatically. To change keyboard layout for a specific languag ....Read More
Rating
Transparent form (glass effect)
Total Hit (2502) This example will show you how to create a transparent form. «b»Step-By-step example«/b» - Create a standard exe project - Add the following code in form1 «code LangId=1»Option Explicit Private Declare Function CreateRectRgn Lib "gdi32" ( _ ByVal X1 As Long, ByVal Y1 As Long, ByVal ....Read More
Rating
How to create pattern brush from bitmap or picture object ?
Total Hit (6459) In this article we will learn how to use CreatePatternBrush along with CreateBitmap API. CreateBitmap can be used to create a memory bitmap of specified width, height and Bits/Pixel. CreatePatternBrush can create a pattern brush based of Bitmap. You can also use VB Picture object as a bitmap handle. ....Read More
Rating
How to resize window accurately to get desired client area ?
Total Hit (7430) Sometimes you might get unexpected window size when you resize or assign different height or width. To resize or change window height/width accurately based on required client area you can use AdjustWindowRect or AdjustWindowRectEx api. You can pass required client area as a RECT parameter to Adjus ....Read More
Rating
How to use CopyImage API to create a resized monochrome image from the color image ?
Total Hit (8681) In some situation you can find CopyImage API very useful. CopyImage can create a new resized monochrome bitmap using single API call. «b»Step-By-Step Example«/b» - Create a standard exe project - Place two picturebox controls and two command buttons - Place the following code in form1 «cod ....Read More
Rating
Retrive and set Auxiliary devices volume info.
Total Hit (3675) This code will loop through all Aux devices and set volume to 50%. You might have problem under NT/Win 2000 using auxXXXXXX APIs. Microsft recommands to use mixerXXXXX APIs. auxXXXXXX APIs are old school APIs. But for example purpose we have used auxXXXXXX APIs here. «code LangId=1»Private Const ....Read More
Rating
How to create XP-Style Balloon Tooltip in VB.net (Updated)
Total Hit (36509) Using api you can create ballon style tooltip. You can also set various parameters for tooltip i.e. Delay, Visible Time, Style, Title, Description , Font, TextColor, BackColor etc... Note: If tooltip is OnDemand ToolTip then VisibleTime and Delay Properties have no effect. To set VisibleTime and ....Read More
Rating
Working with AVI Files - Part 3 (Working With Frames, AVI to BMP)
Total Hit (25477) In my previous 2 articles «a href='CodeDetail.aspx?CodeId=3612'»«b»Part-1 (Opening and Closing AVI file)«/b»«/a» and «a href='CodeDetail.aspx?CodeId=3613'»«b»Part-2 (Working with AVI Streams)«/b»«/a» you learned that how to open and close AVI file and Stream we also learned how to get basic informat ....Read More
Rating
Implementing Balloon ToolTip with sound, System Tray Icon and Context menu
Total Hit (30227) In this article we will learn how to implement Balloon ToolTip with Sound notification and System Tray with Context menu in VB.net Since there is no inbuilt classes in .net to implement Balloon ToolTip so we have to do this using API. This code contains 2 important classes «b»CToolTipNotif ....Read More
Rating
How to load BMP file into memory and perform rotation on it ?
Total Hit (8734) Bitmap rotation is a graphic effect that Visual Basic does not natively offer. This article shows how to rotate a given image in 90-degree increments. It allows you to rotate any image 0, 90, 180 or 270 degrees. With a little work, the code can be modified to rotate to any angle, but that is beyond ....Read More
Rating
How to set default printer programatically on Win 9x/NT ?
Total Hit (4436) This article shows how to programmatically set which printer is the system default printer. Not all applications or components can select a specific printer to use. This often makes it necessary to change the default printer for the system so that the application or component will use the desired pr ....Read More
Rating
Get CPU name using low level machine instructions (Assembly!) in VB!
Total Hit (4029) Here is the most advanced technique probably you have ever seen in VB. Haven't you been told by the "experts" that you can't do low level programming stuff in VB which you can do in C/C++/ASM ? But here I shall prove them wrong. This little code will demonstrate how to execute low level Machine inst ....Read More
Rating
This is a link to a different site Mixing Assembly with VB for super fast operations
Total Hit (2675) This tutorial will guide you how to use assembly language with VB.
Rating
FillFlexGrid - Routine to fill flexgrid from ADO recordset
Total Hit (3585) The following routine takes 2 arguments, ADO recordset and flexgrid which you want to fill. «code LangId=1» Sub FillFlexgrid(rst As ADODB.Recordset, msfGrid As MSFlexGrid) Dim cln As Field With msfGrid .Rows = 2 .Cols = rst.Fields.Count 'get the number of gri ....Read More
Rating
Optimize Parametrized Queries With ADO Objects
Total Hit (3066) When you write Insert statements, it can be difficult to accommodate the possible values end users might enter into a textbox. The most common task is replacing single quotes with double quotes. However, parameterized queries provide two benefits: You do not have to parse data entered by users—excep ....Read More
Rating
How to load bitmap data into array from file to perform image operation?
Total Hit (5203) To modift RGB value of bitmap Load the image using LoadPicture() then call GetDIBits() on it's handle to extract the image data and perform the edits you want, then finally SetDIBits() the data back and display where you wish: In our next article I will show you how to get pointer to 2D pixel array ....Read More
Rating
Load, Modify and Save 1, 4, 8, 15 (Bit-fields), 16, 24 and 32-bit Bitmaps using GDI Apis.
Total Hit (5078) This sample code will show you how to load 1, 4, 8, 15 (Bit-fields), 16, 24 and 32-bit images from disk and modify them into memory and save back to disk. Just copy/paste the following code into form1 code window. Before you run this example make sure that you modify the ImgPath and SavePath. ....Read More
Rating
Dynamically Add Controls to a Form with Visual Basic 6.0
Total Hit (28437) Visual Basic 6.0 allows you to dynamically add control to a form at run- time using the new Add method of the Controls collection. This article shows how to dynamically add intrinsic and ActiveX controls. «pre»«b»Control«/b» «b»ProgID«/b» ========================================== CheckB ....Read More
Rating
Dream Night Part-1
Total Hit (1888) «BR»«P Align=center»«img src='/Main/Articles/Lang8/Cat254/Code3683/image3683_1.JPG'/»«/P»«BR» «BR»«P Align=center»«img src='/Main/Articles/Lang8/Cat254/Code3683/image3683_2.JPG'/»«/P»«BR» «BR»«P Align=center»«img src='/Main/Articles/Lang8/Cat254/Code3683/image3683_3.JPG'/»«/P»«BR» «BR»«P Align=ce ....Read More
Rating
Chattanooga trip with masi Part-1
Total Hit (2082) «BR»«P Align=center»«img src='/Main/Articles/Lang8/Cat254/Code3684/image3684_1.JPG'/»«/P»«BR» «BR»«P Align=center»«img src='/Main/Articles/Lang8/Cat254/Code3684/image3684_2.JPG'/»«/P»«BR» «BR»«P Align=center»«img src='/Main/Articles/Lang8/Cat254/Code3684/image3684_3.JPG'/»«/P»«BR» «BR»«P Align=ce ....Read More
Rating
Working with Bitmap and DIB
Total Hit (15652) In this article we will learn basic concept to work with Bitmap and DIB. We will wrap all functionality in a handy class which can give you ability to work with 2D Pixel array of Bitmap loaded into the memory. Before we implement DIB and BMP class lets understand BMP file format which is DIB (Dev ....Read More
Rating
How to create memory DC and bitmap using CreateCompatibleDC and CreateCompatibleBitmap API?
Total Hit (18328) In this article you will learn how to create a DC in memory and create a bitmap for that DC with a specified height and width. To create memory bitmap you have to do the following steps «OL»«LI»CreateCompatibleDC to create the memory DC. «LI»CreateCompatibleBitmap (potential pitfall - use the Us ....Read More
Rating
How to use BeginPath and EndPath to fill open shapes.
Total Hit (4312) Have you ever tried to fill shapes which are drawn by Polyline or PolyBezier which doesn't draw closed figures. The problem is its not closed figure so you cannot fill using regular fill method which works very well with closed figures. The solution to this problem is BeginPath and EndPath apis Y ....Read More
Rating
A Complete guide to .net Framework
Total Hit (1658) The Microsoft .NET Framework is a platform for building, deploying, and running XML Web services and applications. It provides a highly productive, standards-based, multiple-language environment for integrating existing investments with next-generation applications and services, as well as the agili ....Read More
Rating
Handling NTFS Permissions Part-4 (handling registry key permissions)
Total Hit (7812) The Win32 Application Programming Interface (API) provides two sets of APIs for working with security descriptors and access control lists (ACLs): low-level and high-level. This series of articles provide a complete set of Microsoft Visual Basic code samples that use low-level access control APIs to ....Read More
Rating
Handling NTFS Permissions Part-5 (handling printer permissions)
Total Hit (11029) The Win32 Application Programming Interface (API) provides two sets of APIs for working with security descriptors and access control lists (ACLs): low-level and high-level. This series of articles provide a complete set of Microsoft Visual Basic code samples that use low-level access control APIs to ....Read More
Rating
How to use Named Pipes in a Visual Basic 32-bit Program ?
Total Hit (11481) Visual Basic can create applications that communicate to other processes by means of Named Pipes. The Named Pipe must be created on Windows 2000 or Windows NT; however, you can read from and write to that pipe from any 32-bit platform. This article demonstrates Client/Server communication using a ....Read More
Rating
How to force a window to be a ForeGround Window on Win 9x/NT both ?
Total Hit (8834) Microsoft changed the rules with Win98 and Windows 2000 . The SetForegroundWindow API can no longer be used directly to take focus away from another application. Here is the code to implement ForceForeGround window functionality. Here I have used VB function that uses AttachThreadInput together w ....Read More
Rating


(Page 14 of 133) 3968 Result(s) found  1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 ...

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

© 2008 BinaryWorld LLC. All rights reserved.