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 29 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 (1739)
Rating
TileBitmap - Tile a bitmap using the PaintPicture method
Total Hit (3045)
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
ShowPrinterProperties - Display printer's Properties dialog
Total Hit (8184)
Rating
MoveProgressBarIntoPanel - Move a ProgressBar inside a StatusBar's panel
Total Hit (2309) «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
ComboBoxExtendedMatching - Extended Matching mode for ComboBox controls
Total Hit (1628) «Code LangId=1»' Enable extended matching to any type combobox control ' ' Extended matching means that as soon as you type in the edit area ' of the ComboBox control, the routine searches for a partial match ' in the list area and highlights the characters left to be typed. ' ' To enable thi ....Read More
Rating
DuplicateComboBox - Fast copy of the contents of a ComboBox control
Total Hit (3149) «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 Declare Function LockWindowUpdate Lib "user32" (ByVal hwndLock As Long) _ As Long Const CB_R ....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
CheckUSState - Validate a US state initial
Total Hit (2621) «Code LangId=1»Public Function CheckUSState(ByVal State As String) As Boolean If Len(State) = 2 And InStr(",AL,AK,AZ,AR,CA,CO,CT,DE,DC,FL,GA,HI,ID,IL,IN,I" _ & "A,KS,KY,LA,ME,MD,MA,MI,MN,MS,MO,MT,NE,NV,NH,NJ,NM,NY,NC,ND,OH,OK,OR,P" _ & "A,RI,SC,SD,TN,TX,UT,VT,VA,WA,WV,WI,WY,", ....Read More
Rating
Get login information the easy way (without any API call)
Total Hit (2812) 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 (2952) 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
Caution when moving or resizing forms
Total Hit (2721) 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
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
Use ActiveControl to stop a loop
Total Hit (3025) Often your user interface includes fields whose contents mutually depends on other fields. A typical example is when you deal with conversions from one measurement unit to another. Let's say that you want to let your users enter a temperature either in Celsius or Fahrenheit degrees, so you provide t ....Read More
Rating
Never use the End statement
Total Hit (3512) 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 format file/folder size into KB, MB or GB using StrFormatByteSize API
Total Hit (2637) Many functions (VB and API) return file/folder/drive size in bytes. To show this size user-friendly, you need to format it in KB, MB or GB. It's easy to do this with a simple math: 1KB = 1024 B, 1MB = 1024 KB etc. and many apps I've seen have a special function to perform this task. But there is a b ....Read More
Rating
How to retrive TCP Statistics for local machine using GetTcpStatistics API
Total Hit (3314) «b»Step-By-Step Example«/b» - Create a standard exe project - Add one timer and one listbox control on the form1 - Add the following code in form1 «code LangId=1»'user defined type required by GetTcpStatistics API call Private Type MIB_TCPSTATS dwRtoAlgorithm As Long '// timeout algor ....Read More
Rating
How to use CopyImage API to create a resized monochrome image from the color image ?
Total Hit (8681) 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
Working with Arc API (Arc, ArcTo, AngleArc)
Total Hit (4940) In this article we will explore 3 APIs (Arc, ArcTo and AngleArc). An arc is a portion or segment of an ellipse, meaning an arc is a non-complete ellipse. Because an arc must confirm to the shape of an ellipse, it is defined as it fits in a rectangle and can be illustrated as follows: «BR»«P Al ....Read More
Rating
How to Print a Multiline TextBox with Alignment!
Total Hit (4905) 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
This is a link to a different site Connection strings for various OLEDB Data Providers
Total Hit (2631) OLE DB Providers for Active Directory Service, Advantage, AS/400 (from IBM), AS/400 and VSAM (from Microsoft), Commerce Server, DB2, DTS Packages, Exchange, Excel, Internet Publishing, Index Server, Microsoft Jet, Microsoft Project, MySQL, ODBC Databases, OLAP Services, Oracle (from Microsoft), Orac ....Read More
Rating
This is a link to a different site How to Show SubItem Icons in the ListView
Total Hit (789) In perhaps the strangest (and most useless) of extended example, this code adds to each subitem the same icon displayed as the main item icon. I have yet to determine how (or if) a subitem-specific icon can be shown instead of duplicating the main item icon, or frankly, why one would ever want this ....Read More
Rating
This is a link to a different site Enumerating Windows Fonts - Callback vs. VB
Total Hit (1318) Enumerating Windows Fonts - Callback vs. VB
Rating
This is a link to a different site Tutorial : Using DLLs and The Windows API
Total Hit (2313) 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 Softening, Blurring, Sharpening and Embossing images
Total Hit (1992) Describes the fundamental concepts behind producing many of the standard image processing operations: softening, blurring, sharpening and embossing images.
Rating
This is a link to a different site vbAccelerator CommandBar Control
Total Hit (1978) The vbAccelerator CommandBar control is a full toolbar/menu control which currently offers configurable styles, colours and a full-object model for configuring the buttons and menus. The control can draw in Office 2003, Office XP, MS Money and System styles, supports icons with alpha-channels and ru ....Read More
Rating
This is a link to a different site Mixing Assembly with VB for super fast operations
Total Hit (2675) This tutorial will guide you how to use assembly language with VB.
Rating


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