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

 

MSD RadixSort - An algorithm that can achieve O(N) behavior
Total Hit (2331)
Rating
ShowProgramsInTaskbar - Show or hide all programs in the taskbar
Total Hit (3126)
Rating
SetDesktopVisible - Decide whether the desktop is visible
Total Hit (1737)
Rating
GetProcessModules - The list of DLLs and OCXes a process uses
Total Hit (3617)
Rating
GetServicesInfo - Enumerate Windows NT services
Total Hit (2615)
Rating
GetBatteryTime - Get the life time of a notebook's battery
Total Hit (1953)
Rating
TileBitmap - Tile a bitmap using the PaintPicture method
Total Hit (3044)
Rating
Keeping a Window On Top
Total Hit (2999) «Code LangId=1»'Place this into your Module: Declare Function SetWindowPos Lib "user32" (ByVal hwnd As Long, _ ByVal hWndInsertAfter As Long, ByVal x As Long, ByVal y As Long, _ ByVal cx As Long, ByVal cy As Long, ByVal wFlags As Long) As Long Global Const SWP_NOMOVE = 2 Global Const SWP_NO ....Read More
Rating
MoveProgressBarIntoPanel - Move a ProgressBar inside a StatusBar's panel
Total Hit (2308) «Code LangId=1» ' Move and resize a ProgressBar control so that it fits inside ' a StatusBar's Panel. ' ' The last argument is the panel index (one-based). Sub MoveProgressBarIntoPanel(pb As ProgressBar, sb As StatusBar, _ pnlIndex As Integer) Dim deltaY As Single, pnl As Panel, y A ....Read More
Rating
SetWindowShape - Create elliptical or rounded forms
Total Hit (3474) «Code LangId=1»Private Type POINTAPI X As Long Y As Long End Type Private Type RECT Left As Long Top As Long Right As Long Bottom As Long End Type ' Region API functins Private Declare Function CreateEllipticRgn Lib "gdi32" (ByVal X1 As Long, _ ByVal Y1 As L ....Read More
Rating
FormatDateTimeEx - Extended formatting for date and time values
Total Hit (2958) «Code LangId=1» Enum DateTimeFormat dtGeneralDate dtLongDate dtMediumDate dtShortDate dtLongTime dtMediumTime dtShortTime dtCustom End Enum ' Enhanced VB FormatDateTime function Function FormatDateTimeEx(newDate, Optional ByVal dtFormat As ....Read More
Rating
PerformanceTimer - A class module for high-resolution time measurement
Total Hit (3528) «Code LangId=1» '------------------------------------------- ' PerformanceTimer class module '------------------------------------------- ' Use this class to profile your code and any other operation ' typically with a precision greater than 1 millionth of a second ' ' As soon as you creat ....Read More
Rating
SplitQuoted - A split variant that deals correctly with quoted elements
Total Hit (1780) «Code LangId=1» ' split a string, dealing correctly with quoted items ' ' TEXT is the string to be split ' SEPARATOR is the separator char (default is comma) ' QUOTES is the character used to quote strings (default is """", ' the double quote) ' you can also use a character pair (eg "{}" ....Read More
Rating
The best setting for the RunAs option in a server package
Total Hit (1720) When you deploy COM objects in DLLs no security issues arise since DLLs run in the process of the caller. On the contrary, when you deploy your COM objects into an .EXE, you have to deal with such issues. - (D)COM needs to know under what security principal (read identity) the process, where you ....Read More
Rating
Determine the number of mouse buttons
Total Hit (3113) Sometimes is useful to know how many buttons the user's mouse has. This value can be obtained by calling GetSystemMetrics. The constant to pass as parameter is SM_ CMOUSEBUTTONS. Here's an example: «Code LangId=1» Const SM_CMOUSEBUTTONS = 43 Private Declare Function GetSystemMetrics Lib "user3 ....Read More
Rating
Get login information the easy way (without any API call)
Total Hit (2810) While you can use many different API function to get user and domain information, if you're running under Windows NT or 2000 Server there is a shortest path, based on the fact that the operating system loads many piece of data into environment variables: «Code LangId=1» ' this code works only un ....Read More
Rating
Correct usage for binary compatibility settings
Total Hit (2949) When working on an updated version of a COM component, you should always enforce Binary Compatibility in the Component tab of the Project Properties dialog box. When enforcing binary compatibility there are a number of common mistakes that you should stay clear of: Always use the last EXE or DLL ....Read More
Rating
Make a Checkbox control read-only
Total Hit (2948) By default, VB's CheckBox controls automatically toggle their Value property when the user clicks on them. This is usually the desired behavior, but at times you may want to be able to change their value only programmatically. Unfortunately, you can't achieve this result by simply setting the CheckB ....Read More
Rating
Caution when moving or resizing forms
Total Hit (2720) Any action that affects a form's size or position should be inhibited when the form is minimized or maximized, because this causes a runtime error 384. Always double check your code to ensure that when a form is moved or resized – using a Move method or acting on a form's Left, Top, Width or Height ....Read More
Rating
Search a file in a directory tree using the Imagehlp DLL
Total Hit (3663) You can search a file in all the subdirectories of a given drive in VB using a recursive routine based on the Dir$ function, the FileSystemObject component, or the FindFirstFile/FindNextFile API functions. There is a fourth way you might want to try out, based on the SearchTreeForFile function embed ....Read More
Rating
Undocumented trick to speed up functions that return array
Total Hit (2603) VB6 functions can return an array. Unlike regular functions that return scalar values or objects, however, you can't use the name of the function as a local variable where to store intermediate result, and you are forced to work with a temporary local array, and then assign this array to the Functio ....Read More
Rating
Fixed-length strings allocate and deallocate faster
Total Hit (2822) Fixed-length strings are generally slower than conventional strings, because all VB string functions and operators only recognize conventional strings, thus all fixed-length strings must be transparently converted to and from conventional strings. However, arrays of fixed-length strings occupy a ....Read More
Rating
Never use the End statement
Total Hit (3511) There are a lot of risks involved in using End in VB programs: your databases might not be correctly closed, your objects are not correctly terminated, etc. You should always terminate a program by unloading all the forms. You can do this using the following routine: «Code LangId=1» For index = F ....Read More
Rating
How to Print a Multiline TextBox with Alignment!
Total Hit (4902) API Declarations «Code LangId=1» 'Add this to your Declarations Section: Public Declare Function SetTextAlign Lib "gdi32.dll" (ByVal hdc As Long, ByVal wFlags As Long) As Long Public Declare Function SendMessage Lib "user32.dll" Alias "SendMessageA" (ByVal hwnd As Long, ByVal wmsg As Long, ByV ....Read More
Rating
How to start/stop and enum services using ADSI
Total Hit (4096) This article will show you sample code to use ADSI to manage services. «b»Step-By-Step Example«/b» - Create a new standard exe project - Add reference to "Active Ds Type Library" (Project->Add Reference) - Add windows common control 6.0 (Project->Controls) - Add one listview, five command b ....Read More
Rating
Enumerate local/global groups, Enumerate users and user membership in all groups
Total Hit (7883) In this article you will learn couple of LAN Manager APIs to list groups and users. This demo uses the following APIs «code LangId=0»NetAPIBufferFree : Frees memory allocated by the NetApiBufferAllocate function and other network management functions. NetGroupEnum : Lists all global groups on a se ....Read More
Rating
How to use CopyImage API to create a resized monochrome image from the color image ?
Total Hit (8677) In some situation you can find CopyImage API very useful. CopyImage can create a new resized monochrome bitmap using single API call. «b»Step-By-Step Example«/b» - Create a standard exe project - Place two picturebox controls and two command buttons - Place the following code in form1 «cod ....Read More
Rating
This is a link to a different site Obtaining Logical Disk Information using WMI
Total Hit (1221) Windows Script Host is built into Microsoft Windows 98, 2000, ME and XP. If you are running Windows 95 or NT4, you can download Windows Script Host from the Microsoft Windows Script Technologies Web site at http://msdn.microsoft.com/scripting/. Some information is not returned on non-NT-based system ....Read More
Rating
This is a link to a different site Tutorial : Using DLLs and The Windows API
Total Hit (2310) Windows provides a number of function calls, in the form of DLLs, that are useful to VB programmers. You can also co-opt DLLs from other programs to do work for you. We'll concentrate on using the Windows DLLs here, but what we learn is widely applicable ....Read More
Rating
This is a link to a different site Thumbnail Extraction Using the Shell
Total Hit (2136) Since Windows Me/2000, the Windows Shell has included a mechanism for extracting a small thumbnail image for any item in the namespace. This sample demonstrates how to use this function to get thumbnail images for web pages, images, Office documents - in fact anything that supports thumbnailing in E ....Read More
Rating


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