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

 

MergeSort - A stable sort
Total Hit (3066)
Rating
NetworkUserName - The user name used to establish a network connection
Total Hit (2766)
Rating
UserName - The name of the interactive user
Total Hit (2079)
Rating
SetIEFavoritesEnabled - Decide whether IE Favorites menu is enabled
Total Hit (1583)
Rating
ChangeScreenResolution - Change the current screen resolution
Total Hit (4138)
Rating
SetVBASetting - Modify one of the VBA code editor settings
Total Hit (2586)
Rating
GetClassesByMember - Retrieve the list of classes that expose a given property or method
Total Hit (1747)
Rating
AddIn for Mouse Wheel Support to the VB IDE
Total Hit (2545) Little piece of code which adds MouseWheel functionality to your VB IDE
Rating
SetRichTextBoxWordWrap - Set the WordWrap style of a RichTextBox control
Total Hit (2582)
Rating
LoadImageList - Reload the images in an ImageList control
Total Hit (2481)
Rating
GetFiles - Returns all the files in a directory
Total Hit (1664) «Code LangId=1»' Returns a collection holding all the filenames that ' match a given filespec and search attributes. Function GetFiles(filespec As String, Optional Attributes As VbFileAttribute) _ As Collection Dim filename As String Set GetFiles = New Collection ....Read More
Rating
CompareDirectories - Find different files in two directories
Total Hit (2960) «Code LangId=1» Enum CompareDirectoryEnum cdeSourceDirOnly = -2 ' file is present only in the source directory cdeDestDirOnly = -1 ' file is present only in the dest directory cdeEqual = 0 ' file is present in both directories, ' with s ....Read More
Rating
Dec2Any - Convert a decimal number to any other base
Total Hit (3155) «Code LangId=1»' convert a number to any base ' BASE can be in the range 2-36 Function Dec2Any(ByVal number As Long, ByVal base As Integer) As String Dim index As Long Dim digits As String Dim digitValue As Long ' check base If base < 2 Or base > 36 Then Err.Raise ....Read More
Rating
Setting the off-line mode
Total Hit (3795) You can programmatically set the Internet Explorer off-line mode with the InternetSetOption API, as this code snippet demonstrates: «Code LangId=1» Const INTERNET_OPTION_CONNECTED_STATE = 50 Const INTERNET_STATE_CONNECTED = 1 Const INTERNET_STATE_DISCONNECTED = 2 Const INTERNET_STATE_DISCONNE ....Read More
Rating
Always ensure that a printer is installed
Total Hit (2834) Many developers incorrectly assume that a printer is always installed on their customers' machines, and therefore omit to check that this is actually the case. The following function, deceiptively trivial, returns False and displays an error message if no printer has been installed: «Code LangId= ....Read More
Rating
Don't pass Private objects to client applications
Total Hit (2811) Under some circumstances, an ActiveX DLL can pass private objects to its client application, for example a reference to a control that belongs to a form in the DLL. While this approach can be useful, and can work under some circumstances, you should absolutely avoid avoid to do so, because it might ....Read More
Rating
Better type checking in Variant properties that can accept objects
Total Hit (2805) As explained in the Mistake Bank you need all three flavors of Property procedures to correctly implement a Variant property that can take either an object or a non-object value. Surprisingly enough, in this case you don't need that the argument of the Property Set procedure be declared As Variant. ....Read More
Rating
Change the width of the dropdown portion of a ComboBox
Total Hit (3266) The ComboBox control doesn't expose any property that lets you to control the width of its list area, but this can be easily accomplished by sending it the CB_SETDROPPEDWIDTH message, and passing the new length in pixel in wParam: «Code LangId=1» Private Declare Function SendMessage Lib "user32" ....Read More
Rating
REMark out a group of lines
Total Hit (4263) VB5 and VB6 environments include a pair hidden commands that let you remark and unremark a group of statements. These commands are hidden in the sense that they can be found on the secondary Edit toolbar that isn't displayed by default. To make these commands available, right-click anywhere on the m ....Read More
Rating
How to determine whether your application is running under Terminal Server?
Total Hit (3331) I most of time use terminal client to connect my server and run most of my stuff like that. You might be have the same situation. This simple code will tell you whether you are running in terminal server or not. «b»Step-By-Step Example«/b» - Create a standard exe and copy/paste the following c ....Read More
Rating
How to produce mirror effect using World transform technique (Win9x/Me not supported)
Total Hit (6854) World transformation technique is a very useful technique in some cases for example if you want to rotate graphics/text or produce mirror effect then you can use this technique. «b»Step-By-Step Example«/b» - Create a standard exe project - Add one picturebox on the form1 - Add the following ....Read More
Rating
How To Print Using Custom Page Sizes on Windows NT and Windows 2000
Total Hit (6560) Have you ever tried to set custom paper size using VB inbuilt Printer object ??? You can set custom papersize by setting Printer.PaperSize = 256 and then Printer.Height = 4500 , Printer.Width = 7500 but unfortunately this wont work under NT/2000 because in NT each paper size is considered as a "Form ....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 Obtain the Serial Number of a Drive...
Total Hit (1630) API Declarations «Code LangId=1» 'API Declarations Private Declare Function GetVolumeSerialNumber Lib "kernel32.dll" Alias "GetVolumeInformationA" (ByVal lpRootPathName As String, ByVal lpVolumeNameBuffer As String, ByVal nVolumeNameSize As Long, lpVolumeSerialNumber As Long, lpMaximumComponent ....Read More
Rating
This is a link to a different site Tutorial : How to resume broken file transfer operations
Total Hit (1072) Using the FtpClient source code library tutorials
Rating
This is a link to a different site Creation of an Access database from an XML file
Total Hit (1094) This class was originally part of a larger project to extract data from a mainframe and present it to Crystal Reports. I selected XML as the data format because it is so flexible and yet easy to generate from COBOL. The code to transport the data from the mainframe and generate the reports has been ....Read More
Rating
This is a link to a different site Obtaining AVI File Information via API
Total Hit (2342) This routine shows a couple of things. First and foremost, it details how to retrieve AVI file information from the AVI file using the AVIFileOpen the AVIGetFileInfo APIs. It also shows how to populate a ListView with this information, how to determine the Time Scale for the AVI, and how to use this ....Read More
Rating
This is a link to a different site Force an area of a Window to Repaint
Total Hit (2159) This sample shows how to force an area of a window to repaint. Sometimes this is necessary, particularly when you're experimenting with owner draw control techniques, or when using the LockWindowUpdate API call to improve the speed at which a control fills with data. ....Read More
Rating
This is a link to a different site vbAccelerator Office Docking Bar Control
Total Hit (1923) This control provides a new container for the vbAccelerator Toolbar and CoolMenu control which allows controls to be docked and undocked to the side of any form. It emulates the style of the Office XP toolbars and provides full support for saving and restoring the layout of the toolbars. It can also ....Read More
Rating
This is a link to a different site Detecting when another application is activated
Total Hit (1014) In a form, there is a Deactivate event. Exactly what this method is for is hard to determine, because it hardly ever seems to fire. Ok, that's perhaps a little unfair - it never fires. One thing you certainly can't detect without a bit of additional work is when the user Alt-Tabs to another applicat ....Read More
Rating


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