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

 

Tray to Title and Title to Tray Effect using DrawAnimatedRects API
Total Hit (4358) This little snippet will give you an effect so it looks like that your window is flying from system tray or minimizing to system tray depending on which flag you pass to DrawAnimatedRects API. Create a standard exe project and place the following code in form1 and run the project to see the effec ....Read More
Rating
Working with file time APIs
Total Hit (9537) The date and time functions retrieve and set the date and time for the system and individual files. There are five time formats. Time-related functions return time in one of these formats. You can also use the time functions to convert between time formats for ease of comparison and display. The ....Read More
Rating
How to disable form's Close button (X)?
Total Hit (5003) To modify an item in the Visual Basic Control menu (also known as the System menu), you need to use the SetMenuItemInfo API function. You can use ModifyMenuItem or EnablemenuItem api, both functions work. However it appears that Visual Basic re-enables the menu item whose ID is SC_CLOSE. This is why ....Read More
Rating
How to display shaped recordset with Microsoft Hierarchical FlexGrid (MSHFlexGrid) control.
Total Hit (6414) To run this demo perform following steps. - Create a standard exe project - Add reference to Microsoft Hierarchical FlexGrid (MSHFlexGrid). you can do this by Pressing Ctl + T or Project -> Components. - Add one MSHFlexgrid on the form1 - Add one button on the form1 - Add one textbox - Set t ....Read More
Rating
Using Regular Expression With VB6 (Using Search/Replace , Match Collection, SubMatch Collection)
Total Hit (17858) This article will show you how you can use Regular Expression to do some complex Search and Replace task with Regular Expression. This demo will show you use of Matches and SubMatches collection to get all Matches in input string and SubMatches in a single Match. ....Read More
Rating
HTMLEncodeEx - Applies HTML encoding rules to the specified Text
Total Hit (2408)
Rating
SetExternalHTMLEditor - Change the name of the external HTML editor
Total Hit (1969)
Rating
PrintRotatedText - Display a rotated message
Total Hit (4380)
Rating
GetNodeRelationship - Check if two nodes are relatives
Total Hit (2017) «Code LangId=1» ' Returns a value >0 if Node1 is a parent (or grandparent) of Node2 ' Returns a value <0 if Node1 is a child (or grandchild) of Node2 ' in both cases the number reflects the number of levels ' between the two nodes ' Returns 0 if the two Nodes are the same or ' if they be ....Read More
Rating
FilesToArray - Read all the files or subdirectories in a directory using API functions
Total Hit (4150) «Code LangId=1» Private Declare Function FindFirstFile Lib "kernel32" Alias "FindFirstFileA" _ (ByVal lpFileName As String, lpFindFileData As WIN32_FIND_DATA) As Long Private Declare Function FindNextFile Lib "kernel32" Alias "FindNextFileA" _ (ByVal hFindFile As Long, lpFindFileData As ....Read More
Rating
Split - A replacement for VB6's Split function under VB5
Total Hit (1829) «Code LangId=1» ' A replacement for the Split function under VB4 and VB5 ' ' Note that the return value is a Variant that contains ' an array of strings Function Split(ByVal Text As String, Optional ByVal Delimiter As String = " ", _ Optional ByVal Limit As Long = -1, Optional CompareMe ....Read More
Rating
BitClear - Clear a bit in a value
Total Hit (2637) «Code LangId=1»Function BitClear(ByVal value As Long, ByVal bit As Long) As Long ' simply AND with the negation of the bit mask ' Range checking is performed in Power2() BitClear = (value And Not Power2(bit)) End Function ' Raise 2 to a power ' the exponent must be in the range [ ....Read More
Rating
GetObjectContext.CreateInstance is obsolete in COM+
Total Hit (3538) CreateInstance was necessary in COM to provide a COM object activation mechanism that could be hooked by the MTS runtime before the activation request reached the COM runtime. So that MTS could apply some pre and post activation magic to put a wrapper around the real object and return this wrapper t ....Read More
Rating
Determine whether a folder is shared
Total Hit (3156) The Windows shell provides a simple way to detect whether a given folder is shared or not. You must call the SHGetFileInfo() API function and analyze the way it fills out a given structure. «Code LangId=1» Type SHFILEINFO hIcon As Long iIcon As Long dwAttributes As Long szD ....Read More
Rating
Always run a component using Full-Compile
Total Hit (2727) When testing a component in the IDE, always perform a full compilation. This ensures that VB checks the syntax of all the code in the component, which in turn guarantees that no syntax error will break the program while it is serving another application. You can activate the full compilation opti ....Read More
Rating
How to apply the flat style to a toolbar
Total Hit (2659) All recent Windows applications use a flat toolbar similar to Internet Explorer 's and Microsoft Word's ones. Visual Basic 6 includes a Toolbar control that supports the flat look, but if you are still using VB4 or VB5 and you want to use a flat toolbar without buying a new ActiveX control, you just ....Read More
Rating
Multiple compilation constants
Total Hit (2227) Visual Basic's documentation does not explain how to specify more than just one conditional compilation constant in the Advanced tab of the Options dialog. The correct way is using a colon as a delimiter, as in: demo = -1: version = 100 Note that you can only assign integer numeric values, an ....Read More
Rating
Extract words with the RegExp object
Total Hit (3737) The following routine extracts all the words from a source string and returns a collection. Optionally, the result contains only unique words. This code is remarkably simpler than an equivalent "pure" VB solution because it takes advantage of the RegExp object in the Microsoft VBScript Regular Expr ....Read More
Rating
Terminate the process with an ErrorLevel code
Total Hit (3587) If your VB application is meant to be called from within a Ms-Dos batch file, you must be able to return Dos an error code. This can be accomplished using the ExitProcess API function: «Code LangId=1» Private Declare Sub ExitProcess Lib "kernel32" (ByVal uExitCode As Long) ' terminate the pro ....Read More
Rating
Interpreted or Compiled?
Total Hit (4014) It is highly unfortunate that Visual Basic doesn't offer a way to execute a group of statements only when the program is interpreted in the environment or only when it has been compiled (indifferently as native code or p-code) to an EXE file. What we badly need is a conditional compilation constant ....Read More
Rating
Sort data in MS Flex grid by clicking the column
Total Hit (3089)
Rating
Encrypt / Decrypt Password
Total Hit (1460)
Rating
Console Application in VB (part 1)
Total Hit (3046)
Rating
This is a link to a different site Copy the entire contents of a PictureBox to the clipboard
Total Hit (3129) VB does not allow you to copy the full picture of a Form, UserControl or PictureBox to the clipboard. If you use Clipboard.SetData, it only copies a bitmap loaded into these objects. You can get around this limitation and ensure the entire contents are copied, including any graphics you have drawn, ....Read More
Rating
This is a link to a different site Setting Your Application to Automatically Run When Windows Starts
Total Hit (1777) This source code shows how to automatically start an application when Windows starts using the registry. You can either have the application Auto-Start once next time Windows starts, or everytime Windows starts. The method uses my cRegistry class to make it easy to get the registry information. ....Read More
Rating
This is a link to a different site Sending files inside e-mail messages
Total Hit (2062) We have published the introduction to UUCode algorithm and tutorial that shows how to add new feature of dealing with attachments to our sample applications Simple MailSender and MailChecker.
Rating
This is a link to a different site Review of “Network Programming for Microsoft® Windows®”
Total Hit (2320) If you are, as I was, looking for the book that covers the Winsock API and gives examples of how to use it with Visual Basic, you have found what you were looking for. That is, this title is a single one on the market today that keeps in mind that there are thousands of the Visual Basic programmers ....Read More
Rating
This is a link to a different site How to Select the Entire Row in a ListView
Total Hit (1503) By setting a ListView style bit using the Windows API SendMessage with the message LVS_EX_FULLROWSELECT, selecting an item will cause the selection rectangle to highlight and span the entire row. Removing this bit restores the default selection style. ....Read More
Rating
This is a link to a different site Mimicking the PrintScreen Function Using OLE
Total Hit (595) This code makes use of the OLE standard interface in Windows95/Windows98 to copy the contents of the desktop (the screen) into a PictureBox and save it to disk. To use this code, you must assure that the Standard OLE Types Reference to file \Windows\System\OLEPRO32.DLL is included in the project's r ....Read More
Rating
This is a link to a different site Populating a Font Menu and Splitting a Long Menu into Columns
Total Hit (1304) In attempting to display a font selection menu on a system with many installed fonts, the menu, due to the number of installed fonts, often exceeds the screen height truncating the font list. This page is an extension of the code in How to Split a Long Menu into Columns. Here, we'll use the EnumFont ....Read More
Rating


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