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

 

ShowOpenWithDialog- Display the "Open with" dialog
Total Hit (1659)
Rating
SetIESaveAsEnabled - Decide whether IE SaveAs command is enabled
Total Hit (1601)
Rating
GetIETitle - Read the title used for Internet Explorer
Total Hit (1616)
Rating
ButtonDown, ButtonUp, MouseClick, MouseDblClick - Simulate mouse activity
Total Hit (4204)
Rating
ChildWindows - Get all the child windows of another window
Total Hit (2649)
Rating
SwapColorsArray - Swap all the colors in a 256-color bitmap
Total Hit (2242)
Rating
A simple doublely linked list class
Total Hit (2157)
Rating
GetListBoxSelectRange - Retrieve the index of all the selected items in a ListBox
Total Hit (2221) «Code LangId=1» Private Declare Function SendMessage Lib "user32" Alias "SendMessageA" (ByVal _ hwnd As Long, ByVal wMsg As Long, ByVal wParam As Long, _ lParam As Any) As Long Const LB_GETSELITEMS = &H191 ' Return an array with the indexes of all the selected items in a ListBox ' c ....Read More
Rating
SynchronizeDirectoryTrees - Synchronize files in two directory trees
Total Hit (2038) «Code LangId=1»' Synchronize two directory subtrees ' ' This routine compares source and dest directory trees and copies files ' from source that are newer than (or are missing in) the destination directory ' if TWOWAYSYNC is True, files are synchronized in both ways ' NOTE: requires the C ....Read More
Rating
ShellSort - Sort Arrays using the ShellSort Algorithm
Total Hit (1590) «Code LangId=1» ' ShellSort an array of any type ' ' ShellSort behaves pretty well with arrays of any size, even ' if the array is already "nearly-sorted", even though in ' particular cases BubbleSort or QuickSort can be more efficient. ' ' LASTEL is the index of the last item to be sorted, ....Read More
Rating
ReplaceArgs - Replace numbered placeholders in a string
Total Hit (1585) «Code LangId=1»' Replace placeholders in the form @@1, @@2, etc. ' with arguments passed after the first one. ' For example, calling this function with ' res = ReplaceArgs("File @@1 not found on drive @@2", "README.TXT", "C:") ' it returns the string ' "File README.TXT not found in drive ....Read More
Rating
BitSet - Set a bit in a number
Total Hit (2802) «Code LangId=1»' Set a bit in a value ' ' NOTE: requires Power2() Function BitSet(ByVal value As Long, ByVal bit As Long) As Long ' simply OR with the bit mask ' Range checking is performed in Power2() BitSet = (value Or Power2(bit)) End Function ' Raise 2 to a power ' the e ....Read More
Rating
Combinations - The number of combinations of N objects in groups of N
Total Hit (2498) «Code LangId=1»' number of Combinations of N objects in groups of M ' ' Note: requires the FACTORIAL routine Function Combinations(ByVal Objects As Long, ByVal GroupSize As Long) As Double Combinations = (Factorial(Objects) / Factorial(Objects - GroupSize)) / _ Factorial(GroupSize ....Read More
Rating
RotateLeft - Rotate a Long to the left
Total Hit (1738) «Code LangId=1»' Rotate a Long to the left the specified number of times ' ' NOTE: requires Power2() Function RotateLeft(ByVal value As Long, ByVal times As Long) As Long Dim i As Long, signBits As Long ' no need to rotate more times than required times = times Mod 32 ....Read More
Rating
KeepInRange - Ensure that a value is in a given range
Total Hit (1557) «Code LangId=1»' Keep the first argument in the range [lowLimit, highLimit] ' If the value is adjusted, the fourth (optional) argument is set to True ' ' Note that value and limit arguments are variant, so you can use ' this routine with any type of data. Function KeepInRange(value As Varian ....Read More
Rating
Manage the SQL Server date format with SQL DMO
Total Hit (3079) If you haven't localized SQL Server for your language, the default date format is the American one: DD/MM/YY. You may need to display a date in different formats, and you can solve this problem with the help of SQL DMO. A possible solution is using the T-SQL CONVERT() function to show the date with ....Read More
Rating
Be careful in using CreateObject with two arguments
Total Hit (2995) If you install a COM+ application proxy on a client and open its Properties dialog, you'll see that the field "Remote Server Name" is set to the server where you created and exported the application. Before you export the component, you can also change the server name by setting the "Application Pro ....Read More
Rating
Open the default program for sending email messages
Total Hit (2542) The ShellExecute API function recognizes email addresses if they are prefixed by the "mailto:" prefix, and correctly run the default program for sending email messages (e.g. Outlook). This lets you open a window for sending an email and automatically fill the address field. Here's a wrapper routine ....Read More
Rating
Get the Windows main directories (without any API call)
Total Hit (3159) The usual way to determine the Windows' main directory is based on the GetWindowsDirectory API function, which requires that you set up a buffer for the result, and then extract the null-terminated result. However, there is a much simpler approach, that works equally well under Windows 95, 98 and NT ....Read More
Rating
Build a simple browser for icons
Total Hit (2956) Winodws uses a special browser to show all icons contained in a file and offers the end user the possibility to choose an icon from it. You can add this functionallity to your applications through an undocumented API function, SHChangeIconDialog. Its Declare is: «Code LangId=1» Declare Function ....Read More
Rating
Check whether a sound card exists
Total Hit (3316) If you are developing a game in VB or an application that plays sounds, you probably want to check that a sound card actually exists. There is an API function that does this, and returns the number of sound cards installed in the system. Therefore, a return value of zero means that no devices are pr ....Read More
Rating
Performing FTP operation using WinInet APIs
Total Hit (12597) «b»Step-By-Step Demo«/b» - Create a standard exe project. - Add one module to the project. - Add six textbox controls and nine command button controls on the form1. Set MultiLine=True and Scrollbar=Both for Text6. - add two frame controls and add two radio button controls to each frame. «b» ....Read More
Rating
Example of rectangle APIs
Total Hit (2451) This sample code will show you how to work with basic Rectangle manipulation APIs to do some math operations with Rectangles. «b»Step-By-Step Example«/b» - Create a standard exe project - Add one timer control on the form1 - Add the following code in form1 «code LangId=1»Option Explicit ....Read More
Rating
This is a link to a different site Fixing the IE5/MsComCtrl 5 Toolbar Problem
Total Hit (1120) After the introduction of IE5, users began complaining that their code, which had previously created flat toolbars, failed on systems with IE5 installed. In addition, whenever the text (caption) for a button was changed through code, and the new caption text length differed from that being replaced, ....Read More
Rating
This is a link to a different site Displaying Modal Form Activity on a Parent Form 'PhotoShop' Progress Bar
Total Hit (1154) Like its sister example, this shows how to call a progress bar housed on a parent form (SDI or MDI) to track activity being performed in another form, even when that form is modal. Unlike the VB progress bar demo however, this demo is for those preferring to use the 'PhotoShop' style progress bar th ....Read More
Rating
This is a link to a different site Alpha Image Creator
Total Hit (2031) As described in the Alpha DIBSection article, if you want to draw an image which has per-pixel-alpha using the AlphaBlend call, then you need a bitmap with an alpha channel and R,G,B components which have been pre-multiplied. These bitmaps are hard to come across in the wild, hence this utility to a ....Read More
Rating
This is a link to a different site Transparent AVI Player Control
Total Hit (3553) The Animation control supplied with VB (and from various other VB websites) is derived from the implementation within COMCTL32.DLL. However, this implementation only allows you to play AVIs with no audio stream. Also, its idea of transparency isn't quite what you might expect: setting an AVI to tran ....Read More
Rating
This is a link to a different site Splitting Aligned Controls on MDI Forms
Total Hit (2019) This article provides an easy to use class which allows resizing of any aligned control on an MDI form. The code is also available packaged as a DLL for ease of debugging, as it uses a subclass which can make things awkward in the IDE.
Rating
This is a link to a different site Simple Text Animation effects using Kerning
Total Hit (1579) This article demonstrates how to create an basic text animation by modifying the character spacing using Kerning.
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


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

Recommanded Links

 

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

© 2008 BinaryWorld LLC. All rights reserved.