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

 

ListFileExtensions - Retrieve information about all registered file extensions
Total Hit (1829)
Rating
Print3D - Display text with 3D effect
Total Hit (2847)
Rating
GetIDESetting - Retrieve a setting for the Visual Basic IDE
Total Hit (2100)
Rating
How to read value from remote registry ?
Total Hit (3585) This article explains how to use a Visual Basic application to access the registry on a remote computer in conjunction with the Windows application programming interface (API). «B»Requirements«/B» You need the following hardware and software to perform the procedures in this article: A Micro ....Read More
Rating
ShowNetworkPrinterConnectionDialog - Connect or disconnect a printer
Total Hit (3881)
Rating
CenterCaptionInAdodc - Center a caption on an ADODC Data control
Total Hit (1688) «Code LangId=1» ' Center caption in Adodc control ' ' Input: frmForm - Form Adodc contol in on ' datAdodc - Adodc control ' sCaption - Caption text ' ' Output: Padded Caption text Sub CenterCaptionInAdodc(ctrl As Adodc, ByVal sCaption As String) Dim lTextWidth As Long ....Read More
Rating
ConcatenateFiles - Merge multiple text files in one
Total Hit (3027) «Code LangId=1» ' Concatenate a variable number of text files into a single result file ' ' Params: ' - ResultFile: the complete path of the result file you want to create ' - Separator: a string that is written when a file is added to the result ' file. ' Note: this string can conta ....Read More
Rating
Atn2 - Arc tangent of Y/X
Total Hit (3380) «Code LangId=1»' arc tangent of Y/X - returns values in all four quadrants Function Atn2(x As Double, y As Double) As Double If x = 0 Then Atn2 = Sgn(y) * 1.5707963267949 ElseIf x > 0 Then Atn2 = Atn(y / x) Else Atn2 = Atn(y / x) + 3.14159265358979 * Sgn ....Read More
Rating
Check whether RAS is installed
Total Hit (3114) When you work with RAS APIs, you should have to make sure if RAS library is installed on the system. A simple way is to verify the existence of the Rasapi32.dll file in the windows system directory; the same thing can be obtained with a call to the InternetGetConnectedState API, as the following cod ....Read More
Rating
Create a System Tray icon
Total Hit (4895) Sometimes is useful to add an icon in the Window taskbar's status area (a.k.a. System Tray), to gain a better interaction between the user and your application. The only API you have to use is Shell_NotifyIcon: Declare Function Shell_NotifyIcon Lib "shell32" Alias "Shell_NotifyIconA" _ (ByV ....Read More
Rating
Read and write File ODBC data sources
Total Hit (4283) A file DSN is nothing but a text file that contains all the parameters for an ODBC connection. To prove this, just go to the default directory that holds all File DSNs (this is the \Program Files\Common Files\ODBC\Data Sources directory on Windows's boot drive) and load any .dsn file into a text edi ....Read More
Rating
Understanding interface marshaling
Total Hit (3589) There is quite a lot of misunderstanding among COM newbies about what really happens when a COM interface is passed as a method parameter. As in most of the cases, VB programmers are protected from a lot of details on the COM run-time, but you do have to know such details if you want to assemble som ....Read More
Rating
Use ObjPtr to test whether two object variables point to the same object
Total Hit (2722) The standard way to test whether two object variables point to the same object is through the Is operator, as in: «Code LangId=1» If obj1 Is obj2 Then ... «/Code» However, when both object are of the same type, or point to the same secondary interface, you can slightly optimize your code by t ....Read More
Rating
Fill a TreeView control with random data
Total Hit (2155) Every now and then you need to fill a TreeView control with some random data, for example when you want to test a routine and you don't want to write a lot of code just for this secondary task. Here is a recursive routine that does the work for you: «Code LangId=1» ' MaxChildren is the max num ....Read More
Rating
Limit the length of an item in a ListView control
Total Hit (3721) The ListView control doesn't expose any property that lets you limit the amount of text users can type when editing an item's label. However, you can do the trick with a couple of SendMessage API calls from within the BeforeLabelEdit event: with the LVM_GETEDITCONTROL message you retrieve the handle ....Read More
Rating
The "Assume No Aliasing" compiler option
Total Hit (2888) A procedure is said to contain aliased values if it can refer to the same memory addresses in two or more distinct ways. A typical example is the following procedure: «Code LangId=1» Dim g_GlobalVariable As Long ... Sub ProcWithAliases(x As Long) x = x + 1 g_GlobalVariable = g_GlobalV ....Read More
Rating
How to display choose color dialogbox with custom color added at runtime ?
Total Hit (3145) VB Common dialog box control does not support adding custom color programatically at runtime. You have to use ChooseColor API to get this functionality. Here is the example «b»Step-By-Step Example«/b» - Create a standard exe project - Add one commandbutton - Add the following code in form1 ....Read More
Rating
Working with NT EventLog - Part 1 (Introduction, Event Source, Message Files)
Total Hit (7325) «b»<< Previous Article«/b» | «b»«a href='CodeDetail.aspx?CodeId=3718'»Next Article >>«/a»«/b» In this series of articles you will learn everything you need to build VB class to handle EventLog. Unfortunately in VB6 there is no inbuilt functionality to get full power of EventLog. VB6 has 2 functio ....Read More
Rating
Working with AVI Files - Part 2 (Working with AVI streams)
Total Hit (16599) In previous Article «b»«a href='CodeDetail.aspx?Codeid=3612'»Working with AVI Files - Part 1 (Opening and Closing AVI file)«/a»«/b» We learned how to open and close AVI File. We also learned How to read AVI file information using AVIFileInfo api. In this article we will go one step further. Today we ....Read More
Rating
Use CopyMemory api for performance.
Total Hit (4454) This article will demonstrate that how CopyMemory can boost the performance of for some simple operations (e.g string append.). Here we will banchmark VB Mid function vs CopyMemory Api.
Rating
How to set NTFS permission programatically using Security APIs
Total Hit (5317) Using security APIs you can set NTFS permissions in more technical term you can change ACL (Access Control List) for a user. Here for demo purpose I have created a user called "tejuwala" and I have created a folder c:\test and two files c:\test\file_a.txt and c:\file_b.txt . User tejuwala dont ha ....Read More
Rating
How to Print a Report and open a Form contained in an Access Database
Total Hit (2633) API Declarations «Code LangId=1» Option Explicit 'API Declarations Private Declare Function ShowWindow Lib "user32.dll" (ByVal hWnd As Long, ByVal nCmdShow As Long) As Long Private Declare Function FindWindow Lib "user32.dll" Alias "FindWindowA" (ByVal lpClassName As String, ByVal lpWindowN ....Read More
Rating
This is a link to a different site Creating and closing a socket : Winsock API Test Bench sample application
Total Hit (3779) We continue to learn the Winsock API developing the Winsock API TestBench sample application. In this article you'll find out how to use the socket and closesocket Winsock API functions in order to create and close sockets.
Rating
This is a link to a different site Loading and Ejecting Removable Media Using DeviceIoControl
Total Hit (1446) This page builds on the demo listed above, to add a DeviceIoControl method to eject or load disks from removable devices
Rating
This is a link to a different site Using CopyFileEx and Callbacks as a File Backup Mechanism
Total Hit (1309) So that's how you do it!" This demo shows how to add a callback to the CopyFileEx API that returns the progress of a copying routine. But there is a catch ... CopyFileEx is only available on real operating systems - AKA Windows NT.
Rating
This is a link to a different site The best example of how to write to the NT eventlog. Done by VB/NT specialist L.J. Johnson. You will find his webpage on the link page. Author: L.J.Johnson
Total Hit (2234)
Rating
This is a link to a different site Hue Luminance and Saturation (HLS) Model and Manipulating Colours
Total Hit (671) Normally in computers colours are described in terms of their Red, Green and Blue components. Whilst you can specify all displayable colours this way, it leaves something to be desired when it comes to picking a colour. For example, most people find it very difficult to determine what RGB values you ....Read More
Rating
This is a link to a different site SGrid 2.0
Total Hit (3151) SGrid 2.0 is an updated version of the popular SGrid control which adds drag-drop hierarchical grouping, owner-draw cells and many other features. It has the same highly-optimised display code but is now further enhanced by much better sort, row insert and delete performance. It remains a great alte ....Read More
Rating
This is a link to a different site Panel Selector Control
Total Hit (2450) This article provides a regional selection control which can be floated over other controls to provide additional options for the selected item. The demonstration then shows how to use the control in conjunction with SGrid 2.0 in hot-tracking mode to provide an interface similar to the lists in the ....Read More
Rating
This is a link to a different site Using a Journal Record Hook to Capture Mouse and Key Events from any System Window
Total Hit (2141) Normally, a Windows hook used in Visual Basic can only act on Windows within the process in which it is running. The exception to this rule is the Windows Journal Hook, which allows capturing of mouse and keyboard events from any Window on the system. Many thanks to the coder known only by his email ....Read More
Rating


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