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 41 of 54) 1607 Result(s) found 

 

How to Calculate the Amount of Free Disk Space Available...
Total Hit (1792) API Declarations «Code LangId=1» 'API Declarations Private Declare Function GetDiskFreeSpace Lib "kernel32.dll" Alias "GetDiskFreeSpaceA" (ByVal lpRootPathName As String, lpSectorsPerCluster As Long, lpBytesPerSector As Long, lpNumberOfFreeClusters As Long, lpTotalNumberOfClusters As Long) As L ....Read More
Rating
PokeB, PokeI, PokeL - Write a byte, integer or long value into memory
Total Hit (3641)
Rating
WindowDescription - Get a textual description of a window given its hWnd
Total Hit (1934)
Rating
SetIEFileNewEnabled - Decide whether IE File-New menu is enabled
Total Hit (1491)
Rating
GetCapsLockKey - Get the state of the CapsLock key
Total Hit (3655)
Rating
MouseX, MouseY - Get mouse coordinates, relative to the screen or a window
Total Hit (4777)
Rating
DeleteFileAssociation - Unregister a file extension
Total Hit (2192)
Rating
GetFileFromCLSID - The file that implements a COM component with given CLSID
Total Hit (2263)
Rating
GetFilesInfo - Read all the information about all the files or subdires in a given path
Total Hit (2785) «Code LangId=1»Option Explicit Private Declare Function FindFirstFile Lib "kernel32" Alias "FindFirstFileA" _ (ByVal lpFileName As String, lpFindFileData As WIN32_FIND_DATA) As Long Private Declare Function FindNextFile Lib "kernel32" Alias "FindNextFileA" _ (ByVal hFindFile As Long, ....Read More
Rating
MakeDirPath - Create a path, including intermediate directories
Total Hit (1553) «Code LangId=1»' Create a nested directory ' ' This is similar to the MkDir command, but it creates any ' intermediate directory if necessary Sub MakeDirPath(dirname As String) Dim i As Long, path As String Do i = InStr(i + 1, dirname & "\", "\") path = Left$ ....Read More
Rating
CompareFiles - Check whether two files contain the same data
Total Hit (3064) «Code LangId=1»' compare two files ' return True if they're equal Function CompareFiles(ByVal file1 As String, ByVal file2 As String) As Boolean Dim fnum1 As Integer, isOpen1 As Boolean Dim fnum2 As Integer, isopen2 As Boolean Dim buffer1 As String, buffer2 As String Dim byt ....Read More
Rating
TriangleArea - Evaluate the area of any triangle given its sides
Total Hit (1477) «Code LangId=1»' evaluate the area of a triangle ' given its three sides Function TriangleArea(side1 As Double, side2 As Double, _ side3 As Double) As Double ' this function uses the Heron formula Dim halfP As Double ' evaluate half of the perimeter halfP = (side1 + side ....Read More
Rating
InstrRev - Backward Instr for VB4 and VB5
Total Hit (1712) «Code LangId=1»' A clone of VB6's InstrRev function (including its quirks) ' that works under VB4 and VB5 Function InstrRev(StringCheck As String, StringMatch As String, _ Optional Start As Long = -1, Optional Compare As VbCompareMethod = _ vbBinaryCompare) As Long Dim index As ....Read More
Rating
DecToFrac - Converts a decimal number into a fraction
Total Hit (1734) «Code LangId=1»' Converts a decimal value into fractional parts as integers ' (based on the concept of Continued Fractions) ' Examples of usage: ' Call DeclToFrac(0.125, a, b) ' 1 and 8 are returned in a & b ' Call DecToFrac(5/40, a, b) ' 1 and 8 are also returned ' Call DecToFrac(2/3 ....Read More
Rating
Reduce activation delays by sorting DCOM protocol list properly
Total Hit (1884) When the client and the server machine have different communication protocol lists you can experience serious delays when the client tries to instantiate an object on the server, and you can even get an error if the two protocol lists don't have any protocol in common. For best response times, us ....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
Display the Connect To Printer dialog
Total Hit (4944) Under Windows NT you can programmatically display the Connect To Printer dialog using one simple API function: «Code LangId=1» ' This works only under Windows NT and 2000 Private Declare Function ConnectToPrinterDlg Lib "winspool.drv" (ByVal hWnd As _ Long, ByVal flags As Long) As Long ....Read More
Rating
Where on Earth is an Add-ins's Description
Total Hit (2146) Every now and then someone asks me "How can I modify the default description that is associated to an add-in I have written and that appears in the Add-In Manager? I tried to modify the Project's Description attribute, but it didn't work". The answer is simple, even though this detail is not doc ....Read More
Rating
Enum constants that include spaces
Total Hit (2783) If you're writing an ActiveX control, you can create properties that return an enumerated value, as in: «Code LangId=1» Public Enum SizeConstants SizSmall = 1 SizMedium SizLarge End Enum Public Size As SizeConstants «/Code» When another developer is using your control, an enu ....Read More
Rating
Use Enums to restrict parameter values in Classes, ActiveX Controls and DLLs
Total Hit (2931) By defining a Public Enum and using it as a parameter type to your property or function, client applications are presented with a drop down list of values to use. Unfortunately, VB doesn't restrict the client from passing something other than one of your enumerated values, since all Enums are Longs. ....Read More
Rating
Check whether a form is loaded
Total Hit (2754) You can load several instances of the same form, but VB doesn't let you determine how many forms of a given class are currently loaded. You can work around this flaw by iterating over the Forms collection: «Code LangId=1» ' Return the number of instances of a form ' that are currently loaded ....Read More
Rating
Remove collection items from the beginning
Total Hit (3243) There are many different ways to delete all the items in a collection, but some of them are much faster than the others. Let's start with a collection that holds 10,000 items: «Code LangId=1» Dim col As New Collection, i As Long For i = 1 To 10000 col.Add i, CStr(i) Next «/Code» You can d ....Read More
Rating
How to Autosize ListView columns ?
Total Hit (10252) This demo will show you how to auto fit all ListView items. «b»Step-By-Step Example«/b» - Create a standard exe project - Add ListView control on the form1. To add ListView control you need to add reference to Microsoft Windows Common Control 5.0 (Click Project->Components) - Place the follo ....Read More
Rating
How to load the default mail client or the default browser and go to a specified page!
Total Hit (2579) 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
This is a link to a different site Fading Out Selected Areas Using UpdatedLayeredWindow
Total Hit (2112) In Windows 2000 and XP, when you click a Start Menu item, such as "Run" an after image of the item you've clicked remains on screen and fades out whilst the Run box starts up. This article provides a reusable form-class you can use to provide this effect in your application. ....Read More
Rating
This is a link to a different site How To Transfer Data from ADO Data Source to Excel with ADO
Total Hit (1135) Because Microsoft Excel is such a powerful data analysis tool, Visual Basic and VBA application developers often want to bring data into an Excel worksheet for analysis purposes. This article describes the ActiveX Data Objects (ADO) approach to this programming task, using Microsoft Jet-specific syn ....Read More
Rating
This is a link to a different site Enumrate Local or Remote Disks
Total Hit (1657) VB example of using the NetServerDiskEnum API call from within VB. It returns a list of disk drives on a machine (local or remote). Author: Michael S. Jones
Rating
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 256 Colour DIBSections
Total Hit (2233) The Image Processing using DIBSections sample provided on this site shows you how to implement a True-Colour DIBSection in VB. This is great for code which needs an effectively unlimited number of colours to perform effectively (such as blurring, sharpening, resampling and so on) but if you are inte ....Read More
Rating
This is a link to a different site Subclassing and Hooking with Machine Code Thunks
Total Hit (2039) VB's AddressOf is limited in that it can only provide an address to a function within a module, and not one in a class. This makes doing many things with it harder. However, there is a way of getting a callback to a class function, although you need to know a little assembler to do it. Don't worry i ....Read More
Rating


(Page 41 of 54) 1607 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

Recommanded Links

 

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

© 2008 BinaryWorld LLC. All rights reserved.