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

 

ShowExplorerFileMenu - Hide or show Windows Explorer File menu
Total Hit (1626)
Rating
EnumRegistryValues - Retrieve all values under a Registry key
Total Hit (3927)
Rating
CloneFieldStructure - Create a new Recordset with same field structure
Total Hit (2746)
Rating
ArrayAvg - The average of an array of any type
Total Hit (2091) «Code LangId=1» ' The average of an array of any type ' ' FIRST and LAST indicate which portion of the array ' should be considered; they default to the first ' and last element, respectively ' if IGNOREEMPTY argument is True or omitted, ' Empty values aren't accounted for Function ArrayA ....Read More
Rating
IsValidCreditCardNumber - Check whether a credit card number is valid
Total Hit (1700) «Code LangId=1»' Validate a credit card numbers ' Returns True if valid, False if invalid ' ' Example: ' If IsValidCreditCardNumber(Value:="1234-123456-12345", IsRequired:=True) Function IsValidCreditCardNumber(Value As Variant, Optional ByVal IsRequired As _ Boolean = True) As Boolean ....Read More
Rating
Bin - Convert from decimal to binary
Total Hit (2705) «Code LangId=1»' convert from decimal to binary ' if you pass the Digits argument, the result is truncated ' to that number of digits ' Function Bin(ByVal value As Long, Optional digits As Long = -1) As String Dim result As String, exponent As Integer ' this is faster than creating t ....Read More
Rating
BitToggle - Invert a bit in a value
Total Hit (2880) «Code LangId=1»' Toggle a bit in a value ' ' NOTE: requires Power2() Function BitToggle(ByVal value As Long, ByVal bit As Long) As Long ' simply XOR with the negation of the bit mask ' Range checking is performed in Power2() BitToggle = (value Xor Power2(bit)) End Function ....Read More
Rating
Programs using the WebBrowser require that IE is installed
Total Hit (1870) If your program uses the WebBrowser control or any Microsoft Internet Control, you must ensure (and clearly specify in your app's documentation) that the program can only work on systems that have Internet Explorer installed. In fact, the WebBrowser control is embedded in the ShDocVw.Dll file, which ....Read More
Rating
Don't use global variables in MTS/COM+ projects
Total Hit (2635) Public variables at module level are thread specific. Each new thread starts get a new fresh & uninitialized copy of such variables. All the activities that are born from the same object context always run in the same apartment (You can confirm this by checking the thread ID) as if the object contex ....Read More
Rating
Create an Internet shortcut
Total Hit (2762) Unlike regular LNK shortcut, which contain data in binary file, Internet shortcut files are just text files in this format: [InternetShortcut] URL=www.domain.com Thus it is simple to programmatically create an Internet shortcut that, when double-clicked, will load the default browser and hav ....Read More
Rating
Determine the total playing time of an Audio CD
Total Hit (2623) The Microsoft Multimedia Control lets you easily determine the total playing time of an Audio CD: you only need to correctly initialize the control and then decipher the value returned by its Length property. Use the following code as a guideline for your routines: «Code LangId=1» Private Sub cm ....Read More
Rating
Let the user add tab characters to a RichTextBox control
Total Hit (3019) Here's a simple method to programmatically insert an image into a RichTextBox control, by copying it into the clipboard and then pasting it into the control: «Code LangId=1» Private Declare Function SendMessage Lib "user32" Alias "SendMessageA" (ByVal _ hwnd As Long, ByVal wMsg As Long, ByV ....Read More
Rating
Create a owner form with API functions
Total Hit (2980) Starting with VB5, the Show method supports a second optional argument, that lets you specify which form owns the form that is about to be displayed: «Code LangId=1» Form2.Show , Me «/Code» A owned form is always displayed in front of its owner, and when the owner is unloaded, VB automatical ....Read More
Rating
Checking if a Floppy Drive is ready using FileSystemObject library
Total Hit (3430) The Microsoft Scripting Runtime Library offers a FileSystemObject and a Drive object that allow you to check if a Floppy drive is ready. Before writing the code you have to add this library to your project using the References dialog window. If the library isn't contained in the list, you can downlo ....Read More
Rating
Hidden Variant variables
Total Hit (3434) Variants are the default type of variables that are declared without an As clause, as in: «Code LangId=1» Dim name ' this is a variant «/Code» or are not declared at all (which is only possible if the current module does not include any Option Explicit statement). If you are recycling progra ....Read More
Rating
Simple VB Script to check Registry Key
Total Hit (6517) «code LangId=1»Const HKEY_LOCAL_MACHINE = &H80000002 strComputer = "." Set objRegistry = GetObject("winmgmts:\\" & _ strComputer & "\root\default:StdRegProv") strKeyPath = "SOFTWARE\CCleaner" strValueName = "UpdateCheck" objRegistry.GetStringValue HKEY_LOCAL_MACHINE,strKeyPath,strVal ....Read More
Rating
Enumerate the Ports available in the Local System or in a Remote PC using the EnumPorts API call
Total Hit (3342) API Declarations «Code LangId=1» Option Explicit 'API calls Private Declare Function EnumPorts Lib "winspool.drv" Alias "EnumPortsA" (ByVal pName As String, ByVal Level As Long, ByVal lpbPorts As Long, ByVal cbBuf As Long, pcbNeeded As Long, pcReturned As Long) As Long Private Declare Funct ....Read More
Rating
Print a Text with a specific alignment (left, Right or Center)
Total Hit (2908) Module «Code LangId=1»Public Sub PrintAlignedText(s As String, Alignment As AlignmentConstants) Select Case Alignment Case vbCenter Printer.CurrentX = (Printer.ScaleWidth - Printer.TextWidth(s)) \ 2 Case vbLeftJustify Printer.CurrentX = 0 Case vbRightJustif ....Read More
Rating
Capture Screen or any Active Window and print it to fit in one page
Total Hit (4133) «b»Step-By-Step Example«/b» - Create a standard exe project - Add 2 command button controls, one picturebox and one timer control on the form1 - Add the following code in form1 «code LangId=1»Option Explicit Private Const INVERSE = 6 Private Const SOLID = 0 Private Const DOT = 2 Priva ....Read More
Rating
How to Subclass a Form
Total Hit (3649) «Code LangId=1»'==============inside a MODULE Option Explicit '************************************************************ 'API '************************************************************ Private Declare Function CallWindowProc Lib "user32.dll" Alias "CallWindowProcA" ( _ ByVal lpPrev ....Read More
Rating
This is a link to a different site HTTP with MS Winsock Control - Part IV - Retrieving secured resources from the Web
Total Hit (2308) In this tutorial I'll show you how to access protected resources on the Web using the Basic Authentication scheme. Also you find out how to work with a proxy server that requires authorization of the client.
Rating
This is a link to a different site Your First TAPI Program
Total Hit (2639) This sample application shows you how you can use the TAPI 3.0 functions to create a TAPI application of your own. This application uses the Windows Phone Dialer utility that comes with Windows and can be found under the Accessories group. That program will act as the call manager and will handle th ....Read More
Rating
This is a link to a different site Enumerating Shared Resources on Remote Machines
Total Hit (1564) NetShareEnum retrieves information about each shared resource on a server. It's security requirements are the same as those outlined in Obtaining Workstation User Logon Information. WNetEnumResource can also be used to retrieve resource information, however, it does not enumerate hidden shares or ....Read More
Rating
This is a link to a different site Creating the Common Control Initialization Module
Total Hit (919) This file will be required to be added to the existing project for all common control API methods detailed here that use the API to actually create the common control (as opposed to using the Visual Basic Common Control). The BAS module will provide the mechanism to initialize the comctl32.dll, rega ....Read More
Rating
This is a link to a different site Obtaining Bitmap Info Without APIs
Total Hit (1308) 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 Sorting ListView ListItems Using Callbacks
Total Hit (1412) Sorting numeric values with the ListView control's built-in sort mechanism has always left much to be desired. Because the ListView stores the item and SubItem data as strings, the default sorting algorithm sorted numbers in string format. This meant that instead of a sort of 1, 2, 3, 20, 35, the Li ....Read More
Rating
This is a link to a different site Link Spoof
Total Hit (1499) LinkSpoof is a sample from Robert Heinig (rheinig@gmx.net) demonstrating one technique to take over the VB6 compile process in order to compile your own code into the finished executable.
Rating
This is a link to a different site Totalistic Cellular Automata
Total Hit (1694) Continuing this short series on the use of cellular automata for creation of algorithmic images, this sample demonstrates using the Totalistic form. A Totalistic cellular automata differs from other the other forms of the algorithm by summing the contribution from surrounding cells, and using modula ....Read More
Rating
This is a link to a different site vbAccelerator Explorer Bar Control
Total Hit (1858) The vbAccelerator Explorer Bar control is a new control entirely written in VB which provides a user interface like the one in Windows Explorer under XP. You can use it to create handy lists of shortcuts and informational panels, or you can incorporate controls into the panels to provide flexible an ....Read More
Rating
This is a link to a different site vbAccelerator Icon Editor Control
Total Hit (892) The vbAccelerator Icon Editor control is an all-VB control which allows Icon Editing facilities, with the aim of providing a similar level of facilities to the Icon Editor provided in Visual Studio. The control builds upon the cFileIcon Class to allow writing as well as reading icons, and adds full ....Read More
Rating


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