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

 

QuickSort - Exploiting the principle of exchanging keys
Total Hit (2130)
Rating
Ternary QuickSort - A modification of QuickSort
Total Hit (2509)
Rating
URLPathEncode - Convert a string for using on a URL path
Total Hit (3957)
Rating
GetWindowClass - The class name of a window
Total Hit (4216)
Rating
SetExplorerToolbarPicture - Change Explorer toolbar image
Total Hit (1749)
Rating
GetBiosInfo - Retrieve information about the bios
Total Hit (2523)
Rating
PlayAVIAudioOFF - Play an AVI file without the audio track
Total Hit (3731)
Rating
LOG Files
Total Hit (2682) «Code LangId=1»'Just place this in a Module and you can call it from anywhere in your program! Sub SetLog(Message As String) 'This Sub writes to a LOG file. Dim theFile As String, theMessage As String theFile = App.Path & "\PRGMLOG.TXT" theMessage = Message & vbCrLf Open theFile For Append A ....Read More
Rating
NodeNestingLevel - The nesting level of a TreeView's node
Total Hit (2292) «Code LangId=1»' Returns the nesting level of a TreeView's Node object ' (returns zero for root nodes.) Function NodeNestingLevel(ByVal Node As Node) As Integer Do Until (Node.Parent Is Nothing) NodeNestingLevel = NodeNestingLevel + 1 Set Node = Node.Parent Loop End ....Read More
Rating
GetDirectorySize - Evaluate disk space used by files and subdirectories
Total Hit (2908) «Code LangId=1»' Retrieve the number of bytes by all the files in a directory ' (it doesn't account for slack space, that is unused space in disk sectors) ' ' If INCLUDESUBDIRS is true, it recursively parses all subdirectories. ' ' supports only up to 2G directories. Function GetDirectorySi ....Read More
Rating
SecondsToString - Convert a number of seconds into a formatted time string
Total Hit (2720) «Code LangId=1» ' Converts a numeric value in seconds to a string ' Example: ' MsgBox SecondsToString(3920) --> 1h.5m.20s Function SecondsToString(ByVal Seconds As Long) As String SecondsToString = (Seconds \ 3600) & "h." & ((Seconds \ 60) Mod 60) & "m." _ & (Seconds Mod ....Read More
Rating
RotateRight - Rotate a Long to the right
Total Hit (1792) «Code LangId=1»' Rotate a Long to the right the specified number of times ' ' NOTE: requires Power2() Function RotateRight(ByVal value As Long, ByVal times As Long) As Long Dim i As Long, signBits As Long ' no need to rotate more times than required times = times Mod 32 ....Read More
Rating
Create a GUID
Total Hit (3860) When you build your ActiveX controls and components, Visual Basic automatically creates all the GUIDs as necessary. The same also happens in other cases, without you even realizing it: for instance when you make a MDB database replicable, the Jet Engine adds new fields and uses GUIDs to mark their c ....Read More
Rating
Default Properties tend to hide programming mistakes
Total Hit (2763) Visual Basic lets you create a default property or method by simply selecting the "(Default)" item in the combo box that appear if you click the Advanced button in the Procedure Attributes dialog box. (You can display this dialog from the Tools menu, or by right-clicking on a property name in the ri ....Read More
Rating
Add multiple child controls to a Coolbar
Total Hit (2206) The Coolbar control consists of a collection of Band objects, and each Band object exposes a Child property. To move a control inside the Coolbar you just have to assign it to the Child property of a Band object. A minor problem is that you can't directly assign multiple controls to one Band. The ....Read More
Rating
Open the list portion of a ComboBox control
Total Hit (2981) To programmatically open and close the list portion of a ComboBox control, all you need is sending the CB_SHOWDROPDOWN message to the control. Here is a routine that encapsulate the SendMessage API function: «Code LangId=1» Private Declare Function SendMessage Lib "user32" Alias "SendMessageA" ....Read More
Rating
Add size grips to a form
Total Hit (2777) There are two simple ways to add the so-called size-grips to the bottom-right corner of a form. The first method is to add a StatusBar control, which includes a size-grip of its own. The second method is to add a multiline TextBox control, set its ScrollBars property to 3-Both and add some resizing ....Read More
Rating
Change a CheckBox or OptionButton style at runtime
Total Hit (4215) Visual Basic doesn't let you change the Style property of a CheckBox or an OptionButton control at runtime. However, you can easily do it by manipulating the control's style bit, with the SetWindowLong API function. Here's a routine that does the trick: Using the routine is straightforward. For ....Read More
Rating
Non obvious uses for the LIKE operator
Total Hit (2992) LIKE is probably the VB operator is most underutilized if compared to its potential. The most immediate use for this operator is to check that a string begins or ends with a given pattern. For example, it is simple to check that a Product ID is made up by a alphabetic character followed by three dig ....Read More
Rating
Persistent breakpoints
Total Hit (3278) When you close a VB IDE session, VB saves the code but doesn't save the current set of breakpoints. If you need (non-conditional) breakpoints to persist among sessions, don't use the F9 key. Instead, use the following statement «Code LangId=1» Debug.Assert False «/Code» The above code will alwa ....Read More
Rating
WindowPicker - Pick any window using mouse and highlight window region
Total Hit (4037) In this sample code you will learn several techniques using APIs. Here is the summary «UL»«LI»Capture mouse input to the current application window using SetCapture and ReleaseCapture «LI»Obtain window handle from a point using WindowFromPoint «LI»Get window region from the window handle using Ge ....Read More
Rating
How to send message over network with specified machinename/username/domainname ?
Total Hit (3639) «code LangId=1»'Description: Send to msg to a machine on a Windows NT domain ' similar to that of the notification msg from printer spooler 'Note: Use with care to avoid a broadcasting to all workstations on the domain ' if you do not want to Declare Function NetMessageBufferSend L ....Read More
Rating
How to Print Full Justified Text
Total Hit (3033) Module «Code LangId=1» Option Explicit Public Sub PrintLine(Text As String, SpaceWidth As Single, Target As Object) 'Print a justified line to the Target object Dim i As Integer Dim cx As Single Dim OldBold As Boolean Dim OldUnderLine As Boolean Dim OldItalic As ....Read More
Rating
This is a link to a different site Another way to launch a Control Panel Extension...
Total Hit (2031) Private Sub Command1_Click() StartCPLApp "DESK.CPL" End Sub
Rating
This is a link to a different site Build an OLAP Reporting App in ASP.NET Using SQL Server 2000 Analysis Services and Office XP
Total Hit (2066) Many organizations analyze their business-critical data using Online Analytical Processing (OLAP) technology. OLAP-based data mining provides a way to query multidimensional data sets and drill down into the data to find patterns. ASP.NET and the Microsoft Office Web Components (OWC) enable Web-base ....Read More
Rating
This is a link to a different site Using DeviceIoControl to Obtain Physical Drive Information
Total Hit (1771) Win NT/Win2000 developers have access to a unique API that provides low-level system information - DeviceIoControl. This example succeeds only when it runs on Windows NT/Windows 2000/Windows XP, for two reasons: «LI»The standard device input/output control codes are available only on Windows N ....Read More
Rating
This is a link to a different site Creating and using your own VC++ dlls
Total Hit (954) Using the Windows API is a wonderful way to speed up your applications when they need to perform processor intensive tasks like graphics manipulation. However, the Windows API doesn’t always provide all the functionality you need for your application. Perhaps some 3rd party control does what you wan ....Read More
Rating
This is a link to a different site NT and Net Error messages in an Access Database. Author: Rob Agnew
Total Hit (877)
Rating
This is a link to a different site IconMenu Control
Total Hit (1594) The IconMenu (cPopMenu.ocx) control is a really simple way to get icons into a VB project's menus. It also allows you to create arbitrary new submenus, gives you control over the system menu and has some useful new events indicating when menu items are highlighted and exited. ....Read More
Rating
This is a link to a different site Owner-Draw Pop-up Menus
Total Hit (1726) This project provides sample code for creating completely owner-drawn pop-up menu items using the PopupMenu ActiveX DLL. If you want to create a drop-down list of items from your control, and the number of items will fit onto the screen, then using this DLL to manage all the drop-down functions exce ....Read More
Rating


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