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

 

...and how to change the name of your computer...
Total Hit (2847) API Declarations «Code LangId=1» Private Declare Function SetComputerName Lib "kernel32.dll" Alias "SetComputerNameA" (ByVal lpComputerName As String) As Long «/Code» Module «Code LangId=1» Public Function SetComputerName(Name as String) as Boolean Dim res As Long res=SetCo ....Read More
Rating
GetNumLockKey - Get the state of the NumLock key
Total Hit (3385)
Rating
SetDoubleClickInfo - Set the double-click rectangle and timeout
Total Hit (3287)
Rating
ClearIEHistory - Clear Internet Explorer history
Total Hit (1976)
Rating
GetBitmapInfo - Retrieve information on a bitmap
Total Hit (3334)
Rating
SetTreeViewFirstVisibleNode - Set the first visible node in a TreeView control
Total Hit (3749) «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 Private Const TV_FIRST = &H1100 Private Const TVM_GETNEXTITEM = (TV_FIRST + 10) Private Const TVM_SELECTITEM ....Read More
Rating
GetSelectedOption - Get the selected element in an OptionButton control array
Total Hit (1581) «Code LangId=1»' Determine which element of an option button control array was selected ' Returns -1 if no control has been selected ' Use : OptSelected = GetSelectedOption(Option1) Function GetSelectedOption(Opt As Object) As Integer Dim i As Integer GetSelectedOption = -1 ....Read More
Rating
GetFilePath - Extract the path portion of a file name
Total Hit (3822) «Code LangId=1» ' Retrieve a file's path ' ' Note: trailing backslashes are never included in the result Function GetFilePath(FileName As String) As String Dim i As Long For i = Len(FileName) To 1 Step -1 Select Case Mid$(FileName, i, 1) Case ":" ....Read More
Rating
SearchFileOnPath - Search a file on system path
Total Hit (1604) «Code LangId=1» Private Declare Function SearchPath Lib "kernel32" Alias "SearchPathA" (ByVal _ lpPath As String, ByVal lpFileName As String, ByVal lpExtension As String, _ ByVal nBufferLength As Long, ByVal lpBuffer As String, _ ByVal lpFilePart As String) As Long ' Search a fil ....Read More
Rating
CompareList - Compare an argument with a list of values
Total Hit (2374) «Code LangId=1» ' Return the position of the argument in a list of values ' or zero if the argument isn't included in the list ' It works for both regular values and for objects ' ' This handy function can often save you a lengthy Select Case ' statement or a complex series of If...ElseIf blo ....Read More
Rating
Record a WAV file
Total Hit (3652) You can use MCI functions if you want to record a WAV file. The main MCI function is mciSendString, that sends command strings to the system and execute them. «Code LangId=1» Declare Function mciSendString Lib "winmm" Alias "mciSendStringA" (ByVal _ lpstrCommand As String, ByVal lpstrReturn ....Read More
Rating
Suppress Max and Min buttons in MDI forms
Total Hit (2108) Unlike regular forms, forms don't expose the MinButton and MaxButton properties and these buttons are always displayed. You can suppress these buttons using the following code:
Rating
Undo changes in a TextBox control
Total Hit (3814) The TextBox control supports the capability to undo changes, but there is no property or method that exposes this feature. You can achieve the same goal with a a set of messages. «Code LangId=1» Private Declare Function SendMessage Lib "user32" Alias "SendMessageA" (ByVal _ hwnd As Long, ....Read More
Rating
Determine whether a control has a scrollbar
Total Hit (2778) There is no built-in VB function that lets you know whether a control - such as a ListBox - is currently displaying a vertical scrollbar. Here's a pair of functions that check the control's style bits and return a Boolean that tells if a vertical or horizontal scrollbar is visible: «Code LangId=1 ....Read More
Rating
Ensure that a form's TextBox and ComboBox controls have same height
Total Hit (3181) In general you don't have any control on a ComboBox's Height property, because it is determined automatically by VB depending on the font used for the ComboBox control. If you have a form that contains both TextBox and ComboBox controls, you should ensure that all your single-line TextBox controls a ....Read More
Rating
Change the ShowInTaskbar property at runtime
Total Hit (4345) The ShowInTaskbar property lets you decide whether a form is visible in Windows taskbar or not. However, this property is read-only at runtime, so it seems that you can't change this setting while the program is running. Luckly, you just need to change the window's style, using a pair of API functio ....Read More
Rating
Create a system timer using AddressOf and a callback function
Total Hit (4006) The Timer control is great when you want to periodically execute a piece of code while the program is doing something else. However, it also has a couple of shortcomings: (1) it requires a parent form, so you can't use it directly inside a BAS module, and (2) it's Interval property can't be higher t ....Read More
Rating
Guitar simulation using MIDI APIs
Total Hit (5813) «b»Step-By-Step Example«/b» - Create a standard exe project - Add one listbox, combobox and 2 command button controls - Add one class module and rename it to clsMIDI - Add the following code in form1 «b»Form1.frm«/b» «code LangId=1»Dim objMIDI As New clsMIDI Private Enum enumInstruments ....Read More
Rating
How to detect or block system wide keypress event (using subclassing)?
Total Hit (7950) Most of time KeyPress or KeyDown events of VB will be fine for your application requirement but what if you want to process the same event even your application is minimized or is not active or amy be you want to block certain key combination system wide.... This article will show you how to do that ....Read More
Rating
Working with ADSI (Active Directory Service Interface)
Total Hit (7449) Active Directory Services Interfaces (ADSI) is a set of open interfaces that abstract the capabilities of directory services from different network providers to present a single view for accessing and managing network resources. Administrators and developers can use ADSI services to enumerate and ma ....Read More
Rating
Working with Meta Files (EMF,WMF and APM)
Total Hit (11921) A metafile is a mechanism for storing a graphics device interface (GDI) "picture"—a series of GDI functions that are used to draw an image. A metafile consists of a series of records, each representing a GDI function. When the metafile is played back, each stored function is executed using its recor ....Read More
Rating
How to show/hide taskbar, desktop icons and start button ?
Total Hit (16300) This sample code will show you how to use FindWindow api to get handle to various window by window title. If you have window handle then you can use APIs like ShowWindow, SetWindowPos and many more to perform various operations (e.g. hide/show, resize etc.) to that window. «b»Step-By-Step Exampl ....Read More
Rating
How to display the Add Printer Dialog ?
Total Hit (2985)
Rating
This is a link to a different site Applying Special Effects to a TreeView
Total Hit (1000) The treeview is a special beast ... compared to the listview, in my opinion, a lot more complicated to manipulate via API. Instead of referring to items as simple indices based on order, each treeview item has an item handle, and it is this that is used when manipulating treeview items (see the cod ....Read More
Rating
This is a link to a different site ListView Demo 4 - Adding the Associated Icons
Total Hit (1130) By far the most complicated code yet, this page adds the code necessary to retrieve the Windows associated icon for a given file, assign it to an imagelist dynamically, and use it to display with the file in the listview. Among the features of the method detailed here is the reuse of an icon if it h ....Read More
Rating
This is a link to a different site Changing the Dropdown Width of a Combo Box
Total Hit (1121) This routine demonstrates using the API to change the width of the dropdown portion of a combo box. The combo list width is manually set in the accompanying text box.
Rating
This is a link to a different site Forcing a local or remote NT system to reboot
Total Hit (2814) Under Windows NT, you can force a timed system shutdown on either the local machine or a remote network machine. This code tip shows how to do it. You can specifiy how long it will be before the machine will be shutdown in seconds (a zero value shuts down immediately), how remorseless the shutdown p ....Read More
Rating
This is a link to a different site Create New GUIDs
Total Hit (2432) This sample, from Dion Wiggins (dionwiggins@hotmail.com) shows how to use the CoCreateGuid and StringFromGUID2 functions to create a GUID. The code is compiled into an ActiveX DLL which gives the interesting possibility of using the code from an ASP page, or from other ActiveX-enabled scripting ....Read More
Rating
This is a link to a different site Preventing Crashes at Shutdown
Total Hit (2070) Some versions of ComCtl32.DLL version 6.0 cause a crash at shutdown when you enable XP Visual Styles in an application. This particularly occurs when using VB User Controls. This article provides two solutions to the problem.
Rating
This is a link to a different site Zipping files using the free Info-Zip Zip DLL (now with encryption support)
Total Hit (1944) This article provides a class to enable you to simply add the ability to zip files to a VB application. With this class you can create zips which recurse subdirectories, store full or relative path names, add and delete files from zips, freshen zips - basically everything you would expect to be able ....Read More
Rating


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