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

 

Appending One File to Another File
Total Hit (3863) The following example demonstrates opening and closing files, reading and writing files, and locking and unlocking files. The application appends one file to the end of another file. The application opens the file having the new data appended with permissions that allow only this application to writ ....Read More
Rating
How to sort string Array using CompareString API
Total Hit (3065) CompareString compares two strings and determines which one would come first in an alphabetic sort. Although this function can use a number of different comparisons, by default it conducts a case-sensitive word sort. In a word sort, all symbols except hyphens and apostrophes come before the letter " ....Read More
Rating
Create your own cursor at runtime
Total Hit (3246) Sometimes you might need to create your own cursor at runtime without using any image or resource. You can achive this functionality using CreateCursor API. Here is the basic guidelines for creating your own cursor. When you call CreateCursor you have to pass Application handle, Cursor Width, Curso ....Read More
Rating
How to change system Date/Time settings ?
Total Hit (3688) This example will show you how to Get/Set current system time. For Quick demo Copy/Paste following code into form1 general declaration
Rating
Windows Socket Programming tutorial : Part-1 (Implementing Winsock Server)
Total Hit (43848) In this article we will explore power of winsock api. We will implement very simple Asynchronous client and server using API without using Winsock Active-X control. Before we go into more detail let me clear why one more article on the earth for winsock API ... «b»Why This Article ???«/b» You ....Read More
Rating
SetRegistryValue - Write a value in the Registry
Total Hit (2739)
Rating
DriveType - Determine the type of a drive
Total Hit (3007)
Rating
CheckFont - Test whether a font is installed
Total Hit (2936)
Rating
Load string to byte array with very simple way without any API.
Total Hit (2220)
Rating
CQueue - a class module to implement First-In-First-Out (queue) structures
Total Hit (3163)
Rating
TransposeMatrix - Rotate a bi-dimensional array
Total Hit (2249) «Code LangId=1» ' evaluate the transposed matrix ' ' a transposed matrix is the array you get when ' you "rotate" a bi-dimensional array Function TransposeMatrix(arr() As Double) As Double() Dim startRow As Long, startCol As Long Dim endRow As Long, endCol As Long Dim r As Lon ....Read More
Rating
ArraySum - The sum of all the items in an array of any type
Total Hit (2419) «Code LangId=1» ' Return the sum of the values in an array of any type ' (for string arrays, it concatenates all its elements) ' ' FIRST and LAST indicate which portion of the array ' should be considered; they default to the first ' and last element, respectively Function ArraySum(arr As ....Read More
Rating
IsCharType - Check whether a character is alphabetic, a digit, a space, etc.
Total Hit (1902) «Code LangId=1» ' Return True if a character belongs to a given catagory ' ' CHARTYPE can be the sum of one or more of the following values ' 1 = Uppercase alpha char [A-Z] ' 2 = Lowercase alpha char [a-z] ' 3 = Alpha char [A-Z,a-z] ' 4 = decimal digit [0-9] ' 7 = alphanu ....Read More
Rating
Get the local IP address using the Internet Transfer Control
Total Hit (2518) The easiest way to retrieve the IP address assigned to the local machine during an Internet session is by means of the LocalIP property of the Internet Transfer Control: «Code LangId=1» MsgBox "IP address= " & Winsock1.LocalIp «/Code» Note that getting the same information through API calls ....Read More
Rating
Retrieve CPU information the simple way (NT/2000 only)
Total Hit (1530) The Windows API includes all the functions you need to retrieve and display information about the CPU the machine is equipped with. However, if you're running under Windows NT or Windows 2000, you don't need to make complicated API calls, because this information is already available in several envi ....Read More
Rating
Track changes in system time and display resolution
Total Hit (3429) Whenever the system time or the display resolution changes, Windows sends all the top-level windows (forms, in VB jargon) the WM_TIMECHANGE or WM_DISPLAYCHANGE message, respectively. Therefore, you can easily determine when these system-wide settings change by subclassing any form in your applicatio ....Read More
Rating
Download and save an HTML page with the Internet Transfer control
Total Hit (2802) You can easily download an HTML page by using the Internet Transfer Control (INet). Here's a reusable routine that uses this control to download the HTML page at the specified URL and optionally save it to a local file. In either case the routine returns the contents of the page as a string: «Co ....Read More
Rating
Create colorful Command Buttons
Total Hit (4165) The VB CommandButton control supports neither the ForeColor nor the BackColor properties. If you want to create colorful buttons without resorting to 3rd party controls, you can use an OptionButton control with the Style property set to 1-Graphical. Such OptionButton controls appear to be very simil ....Read More
Rating
Quickly initialize Variant and String arrays
Total Hit (3390) Visual Basic doesn't provide any way to declare an array and initialize its elements at the same time. In most cases you end up with setting individual elements one by one, as in: «Code LangId=1» Dim strArray(0 To 3) As String strArray(0) = "Spring" strArray(1) = "Summer" strArray(2) = "Fall" ....Read More
Rating
Functions to find if file exists...
Total Hit (1536) «Code LangId=1»Public Function FileExists(filename As String) As Boolean FileExists = (Dir(filename, vbNormal Or vbReadOnly Or vbHidden Or vbSystem Or vbArchive) <> "") End Function «/Code» Usage «Code LangId=1» 'Usage: Private Sub Command1_Click() If FileExists("C:\Config.sys" ....Read More
Rating
This is a link to a different site How to use WinInet FTPCommand function from Visual Basic
Total Hit (3621) This article includes some background information on the Microsoft Win32 Internet Application Programming Interface (WinInet for short) and the File Transfer Protocol (FTP) and then moves into the use of FTPCommand function.
Rating
This is a link to a different site INFO: Using Analysis Server Format Properties with the Office XP PivotTable Component
Total Hit (2128) The Microsoft Office XP PivotTable component supports two undocumented properties: UseProviderFormatting and DisplayCellColor. These properties allow you to use server formatting for cells and totals in a PivotTable view.
Rating
This is a link to a different site Changing the Dropdown Width of a Combo Box, Advanced
Total Hit (665) Like the routine in Changing the Dropdown Width of a Combo Box, this routine performs the same functionality but adds the ability to resize the list at runtime. By calculating the average width of a character in the listbox based on the current font, the dropdown width can change to accommodate the ....Read More
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 Colourisation
Total Hit (1556) Image colourisation is a widely-used technique in image processing which can be used to create sepia-toned effects as well as adjusting images so they can be used as watermarks and in the creation of layered background images. This article demonstrates how to use the Hue, Luminance and Saturation mo ....Read More
Rating
This is a link to a different site Media Progress Bar Renderer
Total Hit (1785) Windows Media Player has a neat progress bar showing how its getting on whilst burning files to CD or other long operations. This article presents a reusable class which draws a progress bar in a similar presentation. The resulting bar can be drawn to anything that exposes an hDC, and therefore can ....Read More
Rating
This is a link to a different site PopupMenu DLL - Create Unlimited Popup Menus
Total Hit (2318) The PopupMenu (cNewMenu.dll) ActiveX DLL is allows you to create completely new popup menus with icons for your application. Menus created using this control either can be used as normal Windows Context menus or can be attached to a vbAccelerator CoolMenu and ToolBar control to be used as a form men ....Read More
Rating
This is a link to a different site Keep Form Titlebars in Focus when ToolWindows are Shown
Total Hit (2102) The ToolWindow style, introduced with VB4, allowing you to easily create pop-up tool windows with small captions. However, there is (and has always been) a problem with them: whenever the form or a control on it gets the focus, it appears that the main form of your application looses focus. Whilst m ....Read More
Rating
This is a link to a different site Creating Window Shapes from Bitmaps
Total Hit (2746) The Windows Shape article shows how to use the SetWindowRgn function to apply a geometric region to a window using the GDI region creation functions. However, beyond using a simple geometric region, things get difficult. How do you specify the exact shape you want? This article demonstrates how t ....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 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.