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

 

Faster your recordset searching
Total Hit (2474)
Rating
Protect the form unloading in accidently
Total Hit (1451) When you want ot protect the form unload in accidently you can use this following code. In this code, the action is When a form is prepared to unload The unload event was automatically raised. on that event there is an parameter named "Cancel" which in the data type integer. When the unload ev ....Read More
Rating
URLDecodeEx - Decodes an encoded URL
Total Hit (2770)
Rating
MaxSystemColors - The number of screen colors
Total Hit (1995)
Rating
ActiveDesktop - Check whether Active Desktop is enabled or not
Total Hit (1909)
Rating
CConsole - A class for creating console applications
Total Hit (2273)
Rating
RotatePicture - Rotate a 256-color bitmap by any angle (super-optimized version)
Total Hit (3450)
Rating
GetSelectedText - The highlighted string in the code window
Total Hit (2366)
Rating
GetODBCDriverInfo - Get information about a specific ODBC driver
Total Hit (2987)
Rating
GetTreeViewSelNodeHandle - The handle of a TrewView's selected node
Total Hit (2853) «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 TVGN_CARET = 9 ....Read More
Rating
GetAllPictureFiles - The list of all image files in a directory tree
Total Hit (3186) «Code LangId=1»' Returns a collection with the names of all the image ' files in a directory or a directory tree ' this includes all the image types that can be loaded into a PictureBox control ' ' NOTE: Uses the GetFiles, GetDirectories, and GetAllFiles routines Function GetAllPictureFiles( ....Read More
Rating
ConvertCamelCase - Convert from a string in camel case
Total Hit (3368) «Code LangId=1»' change a sentence in CamelCase to a sentence with spaces ' for example ConvertCamelCase("FileExchange") => "File Exchange" Public Function ConvertCamelCase(ByVal Value As String) As String Dim i As Long For i = 1 To Len(Trim$(Value)) ' If the character is up ....Read More
Rating
NormRand - Produce random numbers with normal distribution
Total Hit (2309) «Code LangId=1»' VBA's intrinsic Rnd function returns numbers evenly ' distributed between 0 and 1. Each number in that ' interval has equal probability of being returned ' for any given function call. ' This function NormRand returns a random number between ' -infinity and +infinity distib ....Read More
Rating
Never use New to create MTS/COM+ objects
Total Hit (1815) A common question among VB developers is: Why is it dangerous the use of the New keyword in VB to create COM objects registered under MTS/COM+? The New keyword is the only way to go when you want to create objects that are defined as PublicNotCreatable or Private (CreateObject doesn't work) insid ....Read More
Rating
Connect a stand-alone Recordset to a database using XML
Total Hit (3349) If you are familiar with the ADO capability to create stand-alone Recordsets from the thin air, that is by adding items to their Fields collection, you're also probably aware that this feature has a serious shortcoming: you can't then connect to a database and perform any batch updates. The problem ....Read More
Rating
Combine Default attribute with other attributes
Total Hit (3250) When building an ActiveX control, you can set a default property or method using the Procedure Attributes dialog box, after clicking on the Advanced button. However, if your default property also happens to require another special attribute - as is the case with Caption and Text properties-you're in ....Read More
Rating
Detect whether a field on a form has been edited
Total Hit (1960) Many tip & trick collections report that you can learn if the contents of a text box has been modified by sending a EM_GETMODIFY message to the control. Actually, getting this information is much more simple. Just test the DataChange property: if non zero the field has been modified since the form w ....Read More
Rating
Hide and Show a control's scrollbars
Total Hit (3232) Most VB controls don't let you determine whether they should display a scrollbar or not. For example, a VB ListBox control displays a vertical scrollbar only when the number of its items is larger than the number of visible items. If you want to directly control individual scrollbars, you can use th ....Read More
Rating
Use function name as a local variable
Total Hit (3225) Many programmers don't realize that it is perfectly legal to use the name of a function inside the Function itself, as if it were a local variable. This trick often lets you avoid the declaration of a temporary variable, and sometimes can speed up the code. Take for example the following code: « ....Read More
Rating
Tip: Simple way to add delay without blocking your thread (Pure VB).
Total Hit (2302) Sometimes you might need to add delay into your application. You can use Sleep API but it blocks execution of current thread so your application becomes non responsive. But here is the simple trick to solve that problem and its easy to use. «code LangId=1»Sub Delay(nMiliSec As Single) Dim t1 ....Read More
Rating
How to Add/Remove NT group programatically
Total Hit (4036) This article will show you use of NetGroupAdd and NetGroupDel API to add/remove NT user group. Windows NT and Windows 2000 exposes LanMan 32-bit Application Programming Interfaces (APIs) to provide network services. These APIs are called only from 32-bit programs running on a Windows NT or Window ....Read More
Rating
Monitor folder activities using ReadDirectoryChangesW API(Win9x/Me not supported)
Total Hit (15792) This code wraps up the Win32 API function ReadDirectoryChangesW so that your application only has to worry about responding to the events that take place when a file or directory is added, removed, modified, or renamed. «b»Step-By-Step Example«/b» - Create a standard exe project - Add one tim ....Read More
Rating
Handling NTFS Permissions Part-2 (handling user object permissions)
Total Hit (11226) The Win32 Application Programming Interface (API) provides two sets of APIs for working with security descriptors and access control lists (ACLs): low-level and high-level. This series of articles provide a complete set of Microsoft Visual Basic code samples that use low-level access control APIs to ....Read More
Rating
This is a link to a different site HOWTO: Use the Spreadsheet Web Component with Visual Basic
Total Hit (2240) You can add the Office Web Components to a form in Visual Basic in the same way that you add any other ActiveX control. The Spreadsheet control included with the Office Web Components is a more robust option than the DataGrid control that ships with Visual Basic. Use the spreadsheet data to display ....Read More
Rating
This is a link to a different site Determining a ListView's Visible Item Count
Total Hit (1622) This shows a quick call you can add to any ListView code to determine the number of currently-visible ListItems in the control when in Report mode. By calling SendMessage with the LVM_GETCOUNTPERPAGE message, the call returns the number of items that can be completely contained in the visible area o ....Read More
Rating
This is a link to a different site Enumerating Windows Fonts by Type
Total Hit (883) This page shows the code required to add to a listbox only the specifictypes of fonts desired. Windows supports four font type - Vector (such as Modern), Raster (MS Sans Serif), Device-Specific (such as PostScript), and TrueType
Rating
This is a link to a different site Saving Pictures to JPG Files Using GDI+
Total Hit (723) Although unfortunately Intel have discontinued support of their IJL library, Microsoft's GDI+ redistributable provides a way for VB coders to work with other file formats fully legitimately; and as a bonus you can also support PNG, TIF and GIF files too. This link redirects you to the new GDI+ file ....Read More
Rating
This is a link to a different site Creating drop-down tool windows
Total Hit (1939) One feature I've been trying to achieve since I first discovered you could write API declares in VB3 (oops, showing my age here...) is a drop-down tool window you can show in response to a button or tool bar button click. These windows have been increasing in number in the Office series of tools and ....Read More
Rating
This is a link to a different site WinZip UI Style Sample
Total Hit (1379) This sample demonstrates using the CommandBar controls to create a WinZip-style user interface. It shows how to set up an Image List to read images from a resource-only DLL and picking icons with the correct colour depth for the host system. It also demonstrates using a context menu to customise the ....Read More
Rating
This is a link to a different site Using RC.EXE
Total Hit (1553) This article provides a short look at how to use the Resource Compiler (RC.EXE) to create resource files (.RES) for Visual Basic applications. Using RC.EXE directly is often better than using the wizards provided with VB5 and 6 as you have more control over including arbitrary data; in addition the ....Read More
Rating


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