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

 

IsWindowsNT - Check Windows platform
Total Hit (2003)
Rating
GetDiskFreeBytes - Determine number of free bytes on disk
Total Hit (2611)
Rating
GetIECloseEnable - Determine wheter IE close command is enabled
Total Hit (1709)
Rating
SnapMouseToWindow - Move the mouse cursor to the center of a form or control
Total Hit (3408)
Rating
TextBoxScroll - Programmatically scroll a multi-line TextBox control
Total Hit (3421) «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 Const EM_LINESCROLL = &HB6 ' Scroll the contents of the control. ' ' Positive values scroll left and up, n ....Read More
Rating
AlwaysOnTheTop - Move a form on top of all other windows
Total Hit (2333) «Code LangId=1» Private 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 Const SWP_NOSIZE = &H1 Const SWP_NOMOVE = &H2 Const SWP_SHOWW ....Read More
Rating
GetFileDescription - Get a file's description through Windows API
Total Hit (2388) «Code LangId=1»Private Const MAX_PATH = 260 Private Type SHFILEINFO hIcon As Long iIcon As Long dwAttributes As Long szDisplayName As String * MAX_PATH szTypeName As String * 80 End Type Private Declare Function SHGetFileInfo Lib "Shell32" Alias "SHGetFileInfoA" _ ....Read More
Rating
Monday - retrieving the date of the Monday for a specified week
Total Hit (2955) «Code LangId=1» ' Return the date of the Monday for a specified week.. ' This function can be tweaked to return any weekday. I use it in Access to ' subdivide reports into weekly units, since Access displays only a number ' between 1 and 53 for the week when you group dates by week. ' ' Note ....Read More
Rating
TimeToString - Convert time to a descriptive string
Total Hit (4034) «Code LangId=1»' convert a date value into a string in the format ' YY years, MM months, DD days, HH hours, MM minutes, SS.HH seconds) ' you can also opt for time short format (HH h, MM m, SS s) Function TimeToString(ByVal aDate As Date, Optional ShortTimeFormat As Boolean, _ Optional ....Read More
Rating
JoinQuoted - A Join variant that encloses string values in quotes
Total Hit (1739) «Code LangId=1»' Join variant that works with arrays of any type ' and that encloses string values between quotes ' ' ARR is the array whose element must be joined ' SEPARATOR is the separator char (default is comma) ' QUOTED is the character used to quote string values ' use a two-char st ....Read More
Rating
StrReverse - A replacement for the VB6's StrReverse function under VB4 and VB5
Total Hit (1576) «Code LangId=1»' A replacement for the StrReverse function for VB4 and VB5 Function StrReverse(ByVal Text As String) As String Dim length As Long, index As Long length = Len(Text) StrReverse = Space$(length) For index = 1 To length Mid$(StrReverse, length + 1 - ....Read More
Rating
Setting authentication across different domains
Total Hit (1564) COM doesn't have a built in security mechanism, but relies on Windows authentication services (Security Service Providers). When you access a resource or invoke a method in a remote DCOM server (or MTS package / COM+ Application), security checks cannot be performed in the standard way if the client ....Read More
Rating
How did Windows start?
Total Hit (3222) If you need to know how Windows was started you have just to call an API function: GetSystemMetrics. Passing the SM_CLEANBOOT constant as parameter, the function returns a Long value with this meaning: «Code LangId=1» 0 = Normal boot 1 = Fail-safe boot 2 = Fail-safe with network boot «/Code» ....Read More
Rating
Check whether the current user is an administrator
Total Hit (5341) This function will determine whether or not a thread is running in the user context of the local Administrator account. You need to examine the access token associated with that thread using the GetTokenInformation() API, since this access token represents the user under which the thread is running. ....Read More
Rating
Test for Leap Year
Total Hit (3482) As long as you trust VB's IsDate function (and you can, trust me), here's the shorted and fastest method to check if a year is a leap year or not: «Code LangId=1» Function IsLeapYear(year As Integer) As Boolean IsLeapYear = IsDate("2/29/" & CStr(year)) End Function «/Code» Here's is anot ....Read More
Rating
The number of dimensions of an array
Total Hit (4232) Using "pure" VB, the only way to build a generic routine that returns the number of dimensions of an array passed as an argument is using a loop that repeatedly tests the LBound (o UBound) function until it fails: «Code LangId=1» Function ArrayDims(arr As Variant) As Integer Dim i As Intege ....Read More
Rating
Split menu into multiple columns if dont fit and Auto Mouse move/click event demo
Total Hit (4779) This code is a combo of two great piece of code. From this example you will learn the following items - How to generate various mouse events using mouse_event API - How display shortcut menu created at runtime using CreatePopupMenu and TrackPopupMenu APIs - How to use MF_MENUBARBREAK flag to sp ....Read More
Rating
How to convert UCT (Universal Coordinated Time) to Local Date/Time and vice-versa.
Total Hit (4884) Many times you might be in situation where you have convert UTC time to Local time and Local time to UTC time. Here is the example how to do that. «b»Step-By-Step Example«/b» - Create a standard exe project - Add the following code in form code window «code LangId=1»Option Explicit Priva ....Read More
Rating
Check whether file is opened exclusively or not ?
Total Hit (2929) _lOpen, _lClose
Rating
This is a link to a different site Professional ASP Programming Guide for Office Web Component: with Office 2000 and Office XP
Total Hit (1205) In this chapter we will take a look at some advanced charting techniques that will be useful in addition to the basic charting techniques covered by the previous chapter. We will introduce how to code split axis, add data labels, and other charting functions. We will also compare the differences of ....Read More
Rating
This is a link to a different site Locking Removable Media Devices Using DeviceIoControl
Total Hit (1694) Using DeviceIoControl, together with the PREVENT_MEDIA_REMOVAL data user-defined type and the IOCTL_STORAGE_MEDIA_REMOVAL control code, it is possible for WinNT/Win2000 users to lock and unlock any removable device. A removable device might include, as it does on my system, CD-ROMs and LS-120 drive ....Read More
Rating
This is a link to a different site Obtaining Processor Information using WMI
Total Hit (1502) 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 Centering and Customizing the ChooseColor Common Dialog
Total Hit (1679) Just as the GetOpen/GetSaveFileName APIs provide for inserting a hook against the file dialog's creation, so too does the ChooseColor API.
Rating
This is a link to a different site Enumerating the Available Display Resolutions
Total Hit (1810) This routine uses Windows' EnumDisplaySettings API to retrieve all the available screen resolutions supported by the display. The results are populated to a ListView showing colour depths, resolutions and frequencies supported. In addition, the current system resolution is determined and flagged. ....Read More
Rating
This is a link to a different site This is simple and scaled down example of how to register a program to the NT eventlog and write to the log. The registration is based on L.J. Johnsons code. Author: Morten Brun
Total Hit (1136)
Rating
This is a link to a different site Add a Check Box to the Left Hand Side of a Drop-Down Combo Box
Total Hit (1931) In Microsoft's Outlook Express, there is a find window which allows you to set a date range to search in. You turn this date range on and off by clicking a check box which is embedded in the left hand side of the combo box. The text of the combo box is moved to the left to accommodate the check box. ....Read More
Rating
This is a link to a different site Floyd-Stucci Colour Reduction Methods and Gray Scaling
Total Hit (2013) This article describes the Floyd-Stucci method to dither an image to a specified palette and also how to Gray Scale an Image, as demonstrated in the vbAccelerator Image Processor.
Rating
This is a link to a different site Using Popup Menu ActiveX DLL to create SysTray Menus with Icons
Total Hit (2611) This sample shows how to use the newly introduced ShowPopupAbsolute method of the PopupMenu ActiveX DLL to implement a icon menu in the SysTray. The code expands upon the "SysTray the Easy Way" sample. Essentially this project uses a VB form as a class which exposes an easy to use interface for a ....Read More
Rating
This is a link to a different site Enabling Mouse Gestures with a WH_MOUSE hook
Total Hit (2437) Use of mouse gestures to control application is becoming increasingly common in the more sophisticated web browsers. This sample demonstrates how you can support a range of mouse gestures in a Visual Basic application using a Windows Hook.
Rating
This is a link to a different site ExcelADO Demonstrates How to Use ADO to Read and Write Data in Excel Workbooks
Total Hit (1564) This sample illustrates how you can use ActiveX Data Objects (ADO) with the Microsoft Jet OLE DB 4.0 Provider to read and write data in Microsoft Excel workbooks.
Rating


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