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

 

Print an Image contained in a Picture Box or a Form
Total Hit (2357) Module «Code LangId=1» 'Print the Picture contained in a PictureBox or a Form Public Sub PrintImage(p As IPictureDisp, Optional ByVal x, Optional ByVal y, Optional ByVal resize) If IsMissing(x) Then x = Printer.CurrentX If IsMissing(y) Then y = Printer.CurrentY If IsMissing(resiz ....Read More
Rating
How to Print a Multiline TextBox with Alignment!
Total Hit (4905) API Declarations «Code LangId=1» 'Add this to your Declarations Section: Public Declare Function SetTextAlign Lib "gdi32.dll" (ByVal hdc As Long, ByVal wFlags As Long) As Long Public Declare Function SendMessage Lib "user32.dll" Alias "SendMessageA" (ByVal hwnd As Long, ByVal wmsg As Long, ByV ....Read More
Rating
How to Print Full Justified Text
Total Hit (3033) Module «Code LangId=1» Option Explicit Public Sub PrintLine(Text As String, SpaceWidth As Single, Target As Object) 'Print a justified line to the Target object Dim i As Integer Dim cx As Single Dim OldBold As Boolean Dim OldUnderLine As Boolean Dim OldItalic As ....Read More
Rating
Print a Picture to Fit a Page!
Total Hit (2881) Module «Code LangId=1» Option Explicit Public Sub PrintPictureToFitPage(Pic As Picture) Dim PicRatio As Double Dim printerWidth As Double Dim printerHeight As Double Dim printerRatio As Double Dim printerPicWidth As Double Dim printerPicHeight As Double ' ....Read More
Rating
How to run an AVI inside a PictureBox control
Total Hit (3507) API Declarations «Code LangId=1» Const WS_CHILD = &H40000000 Private Declare Function mciSendString Lib "winmm.dll" Alias _ "mciSendStringA" (ByVal lpstrCommand As String, _ ByVal lpstrReturnString As String, ByVal uReturnLength As Long, _ ByVal hwndCallback As Long) As Lon ....Read More
Rating
Tunnel graphical effect
Total Hit (1735) Usage «Code LangId=1» 'Create a Form and place this code inside 'Sorry but the comments are in german :(( Option Explicit Dim offx% ' x-offset zur mitte Dim offy% ' y-offset zur mitte Dim anz% ' anzahl sterne Dim bahnx%(100, 180) ....Read More
Rating
Get Time and Date of a Network machine Server or Workstation
Total Hit (3157) «b»Step-By-Step Example«/b» - Create a standard exe project - Add the following code in form1 «code LangId=1»'API Structures Private Type TIME_OF_DAY_INFO tod_elapsed As Long tod_msecs As Long tod_hours As Long tod_mins As Long tod_secs As Long tod_hunds As Long ....Read More
Rating
How to load the default mail client or the default browser and go to a specified page!
Total Hit (2577) API Declarations «Code LangId=1» Option Explicit Private Declare Function ShellExecute Lib "shell32.dll" Alias "ShellExecuteA" (ByVal hwnd As Long, _ ByVal lpOperation As String, ByVal lpFile As String, ByVal lpParameters As String, _ ByVal lpDirectory As String, ByVal nShowCmd As L ....Read More
Rating
How to Print a Report and open a Form contained in an Access Database
Total Hit (2632) API Declarations «Code LangId=1» Option Explicit 'API Declarations Private Declare Function ShowWindow Lib "user32.dll" (ByVal hWnd As Long, ByVal nCmdShow As Long) As Long Private Declare Function FindWindow Lib "user32.dll" Alias "FindWindowA" (ByVal lpClassName As String, ByVal lpWindowN ....Read More
Rating
Run a Stored Procedure Asynchrous with ADO
Total Hit (2270)
Rating
Faster your recordset searching
Total Hit (2471)
Rating
Read Excel and Text Files Using ADO
Total Hit (4659)
Rating
Sort data in MS Flex grid by clicking the column
Total Hit (3084)
Rating
How to quick sort data in MS Flex Grid
Total Hit (3054)
Rating
How to handle the Mouse Wheel events in your projects (improved)
Total Hit (3086) API Declarations «Code LangId=1» '==============inside a MODULE Option Explicit '************************************************************ 'API '************************************************************ Private Declare Function CallWindowProc Lib "user32.dll" Alias "CallWindowProcA" ....Read More
Rating
This is a link to a different site Receive clipboard change notifications and get full control over reading, writing and adding formats
Total Hit (2393) The VB Clipboard object gives you quick and easy access to simple clipboard functions. But the Win32 API clipboard object offers a lot more flexibility and functionality. This article presents classes to use custom clipboard formats and receive notifications when the clipboard contents change. ....Read More
Rating
This is a link to a different site File Clipboard Enhancer
Total Hit (1778) Windows Explorer allows you to cut, copy and paste files. However, whilst it uses the clipboard to do this, the file information is not made generally accessible as a custom clipboard is used. Often it's useful to be able to paste a file name as text: for example, into a file name field in an applic ....Read More
Rating
This is a link to a different site Clipboard Ring Sample
Total Hit (1015) This sample uses the cClipboardViewer class to hook into clipboard change notifications, and then displays them in a pinnable ListBar in a similar manner to the Clipboard Ring functionality provided in Visual Studio.
Rating
This is a link to a different site Using the Find and Replace Common Dialogs
Total Hit (2670) VB has never provided direct support for the Find/Replace common dialogs. This may have been because these dialogs are non-modal, and it is more difficult to use these from an ActiveX control container, or that it is fairly simple to knock up your own Find/Replace form in VB without bothering with t ....Read More
Rating
This is a link to a different site CommonDialog/Direct
Total Hit (2973) Common Dialog/Direct is a new DLL or class library which shows how to completely replace COMDLG32.OCX through Visual Basic code. The main advantage of this is you no longer need to put a control on a form to use common dialogs - just declare an instance of the class and you have a straight replaceme ....Read More
Rating
This is a link to a different site Common Dialog Templates - Create a WinZip Style File Add Dialog
Total Hit (1068) This sample, from Cayce Cochran (cayce@fastlane.net), demonstrates how to use a dialog template with a File Open or Save CommonDialog. It takes advantage of the CommonDialog/Direct DLL component which now (versions dated 1 November 1999 and higher) includes the relevant support for templates. ....Read More
Rating
This is a link to a different site Common Dialog Hooks - Create a VB Style Open Project Dialog
Total Hit (1244) This sample, completely rewritten from an original sample at this site by Mark Grimes (kapag@tir.com), demonstrates how to create a full VB-style Open project dialog by taking advantage of the Hook support provided in the CommonDialog/Direct DLL component. ....Read More
Rating
This is a link to a different site Browsing For Folders
Total Hit (2019) The Folder Browse Dialog is the missing dialog in VB - it can't be called from a run-time function and it is missing from the Common Dialog OCX as well. Whilst a number of code samples demonstrate that calling this dialog is simple, many ignore the most important feature: the ability to initialise t ....Read More
Rating
This is a link to a different site Two code only solutions for displaying Common/Dialogs
Total Hit (1004) The Common Dialog/Direct component provides you with a more functional version of the Common Dialog control which also means you no longer need a form to create Common Dialogs. These samples show how you can go one further with your app and remove the need to ship any DLLs at all! ....Read More
Rating
This is a link to a different site Introduction to the freeware Info-ZIP libraries
Total Hit (1881) This project started when I was trying to build up the indexes for the vbAccelerator site. I had a program to search through all the HTML files which make up the site, and this could pick out the ZIP files linked to by the pages. But how to determine which projects these ZIP files contained? You nee ....Read More
Rating
This is a link to a different site Zipping files using the free Info-Zip Zip DLL (now with encryption support)
Total Hit (1944) This article provides a class to enable you to simply add the ability to zip files to a VB application. With this class you can create zips which recurse subdirectories, store full or relative path names, add and delete files from zips, freshen zips - basically everything you would expect to be able ....Read More
Rating
This is a link to a different site Unzipping files using the free Info-Zip Unzip DLL with VB
Total Hit (1817) This article provides a fully featured unzip application written in VB, using the capabilities of the Info-ZIP Unzip DLL. The zip application demonstrates the abilities of the unzip DLL to handle all aspects of unzip operations - password protection, directory listing, including directories whilst u ....Read More
Rating
This is a link to a different site Compressing and Expanding with the Freeware zLib.DLL
Total Hit (1100) This project from Benjamin Dowse (bendowse@dingoblue.net.au) provides a reusable DLL which allows you to compress and decompress byte arrays and strings. You can compress data in memory, or using file IO in Visual Basic you can also compress files.
Rating
This is a link to a different site High Resolution Multimedia Timer
Total Hit (2805) The standard timer supplied with VB is great for most tasks, but the frequency it updates at isn't acceptable for high-performance multimedia. In audio applications the system must be capable of firing audio events with a 1ms resolution, otherwise the ear will be able to discern the timing inaccurac ....Read More
Rating
This is a link to a different site Drawing With Textures
Total Hit (1701) This article provides an extension to the technique demonstrated in Creating Single Pixel Dotted Lines to show how you can easily create a brush for drawing shapes from any bitmap, picture or device context.
Rating


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