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

 

Add group, remove group, add users to group, remove users from group using LanMan API
Total Hit (7171) This article will show you use of NetGroupAdd/NetGroupDel, NetGroupAddUser/NetGroupDelUser, NetLocalGroupAdd/NetLocalGroupDel and NetLocalGroupAddMembers/NetLocalGroupDelMembers API to for group management. Windows NT and Windows 2000 exposes LanMan 32-bit Application Programming Interfaces (API ....Read More
Rating
Handling NTFS Permissions Part-3 (handling shared resource permissions)
Total Hit (7335) The Win32 Application Programming Interface (API) provides two sets of APIs for working with security descriptors and access control lists (ACLs): low-level and high-level. This series of articles provide a complete set of Microsoft Visual Basic code samples that use low-level access control APIs to ....Read More
Rating
How to use Named Pipes in a Visual Basic 32-bit Program ?
Total Hit (11489) Visual Basic can create applications that communicate to other processes by means of Named Pipes. The Named Pipe must be created on Windows 2000 or Windows NT; however, you can read from and write to that pipe from any 32-bit platform. This article demonstrates Client/Server communication using a ....Read More
Rating
CheckMathProcessor - Check whether a math processor is installed
Total Hit (1556)
Rating
CUDL - A class to create UDL files
Total Hit (2907)
Rating
IsOfficeAppPresent - Check whether an Office application is present
Total Hit (3128)
Rating
QuickSort - Sort Arrays using the QuickSort Algorithm
Total Hit (1747) «Code LangId=1»' QuickSort an array of any type ' QuickSort is especially convenient with large arrays (>1,000 ' items) that contains items in random order. Its performance ' quickly degrades if the array is already almost sorted. (There are ' variations of the QuickSort algorithm that work goo ....Read More
Rating
GetAttrDescr - The attributes of a file in a readable format
Total Hit (2611) «Code LangId=1» ' The attributes of a file in a readable format. ' It works also with open files, raises an error if the file doesn't exist. Function GetAttrDescr(filename As String) As String Dim result As String, attr As Long ' get file attributes as a bit-coded field attr = ....Read More
Rating
SplitWithQualifiers - An improved version of the Split function
Total Hit (2209) «Code LangId=1»' A variant of the Split function, that offers the following improvements ' You can pass text qualifier as the third argument and optionally specify ' to treat consecutive occurrences of delimiters as one ' For example, the following source text contains comma inside one of ....Read More
Rating
FilterString - Remove invalid characters from a string
Total Hit (3147) «Code LangId=1»' Filter out all invalid characters in a string. Function FilterString(text As String, ValidChars As String) As String Dim i As Long, result As String For i = 1 To Len(text) If InStr(ValidChars, Mid$(text, i, 1)) Then result = result & Mid$(text, i, ....Read More
Rating
Permutations - Number of permutations of N objects in groups of M
Total Hit (1642) «Code LangId=1»' number of permutations of N objects in groups of M ' ' Note: requires the FACTORIAL routine Function Permutations(ByVal Objects As Long, ByVal GroupSize As Long) As Double Permutations = Factorial(Objects) / Factorial(Objects - GroupSize) End Function «/Code» ....Read More
Rating
Download a file with one API call
Total Hit (3637) If you have Internet Explorer 5 or later version, you can use an API call to download a file from the Internet withouth displaying any message box. «Code LangId=1» Private Declare Function URLDownloadToFile Lib "urlmon" Alias _ "URLDownloadToFileA" (ByVal pCaller As Long, ByVal szURL As Strin ....Read More
Rating
Create explicit Field objects when looping on large Recordsets
Total Hit (2579) Whenever you access a database field through the Recordset object you incur in a slight overhead. Take for example the following code snippet: «Code LangId=1» Dim rs As New ADODB.Recordset rs.Open "SELECT au_lname, au_fname FROM authors", "DSN=pubs", , , adCmdText Do Until rs.EOF List1. ....Read More
Rating
Always declare objects with full library name
Total Hit (2833) If your application uses objects from external components, either third-party or your own libraries, a good rule of thumb is to include the complete servername.classname string in the Dim statement, as in: «Code LangId=1» Dim word As Word.Application «/Code» This syntax ensures that if you th ....Read More
Rating
Move focus with Up and Down keys
Total Hit (1788) In all standard controls, Up and Down arrow keys move the focus on the previous or next control in the TabIndex order, respectively. This contrasts with text boxes, where these keys move the caret on the adjacent character, which you can achieve in a more natural way using the Left and Right cursor ....Read More
Rating
Determine how a control got the focus
Total Hit (2346) At times it might be convenient to know how a given control got the focus, namely by means of the Tab key, an associated hotkey or a click of the mouse. You can learn this information through the GetKeyState API function, that returns the current state of a key. Here is a simple function that is mea ....Read More
Rating
Use the right type for constants
Total Hit (3009) VB stores symbolic and literal constants internally using the simplest data type possible; this means that most common numeric constants-such as zero or one-are stored as Integers. If you use these constants in floating point expressions you can speed up your code using a constant of appropriate typ ....Read More
Rating
Implement the CallByName function using the TLI library
Total Hit (5392) Thanks to the undocumented TlbInf32 library you can emulate the VB6 CallByName() function in VB5 too. First, add a reference to the "TypeLib Information" type library in your project. This library contains the InvokeHook function, which is very similar to CallByName. Let's suppose you have an Act ....Read More
Rating
Get the List of all the Active Tasks
Total Hit (3638) API Declarations «Code LangId=1» Option Explicit ' API Constants Const WS_MINIMIZE = &H20000000 ' Style bit 'is minimized' Const HWND_TOP = 0 ' Move to top of z-order Const SWP_NOSIZE = &H1 ' Do not re-size window Const SWP_NOMOVE = &H2 ' Do not reposition window Const SWP_SHOWWINDOW = & ....Read More
Rating
Calculate the Elapsed Time between two Dates...
Total Hit (3512)
Rating
This is a link to a different site HTTP with MS Winsock Control - Part V - Retrieving binary files from the Web
Total Hit (1950) In this tutorial we'll bring to the Simple HTTP Reader sample the ability to handle binary files retrieved from the Web, particularly image files such as gifs and jpgs. The sample will determine type of the retrieved resource and then pass the downloaded data to a picture box, if that resource is an ....Read More
Rating
This is a link to a different site Retrieving Partial Content via HTTP : HTTP with MS Winsock Control - Part VIII
Total Hit (2418) The current specification of the HTTP, RFC 2616, defines the method to download any part of the file located on a web server. What have we got with this feature of the protocol? We can resume a broken data transfer, we can retrieve specific parts of documents to explore its properties... ....Read More
Rating
This is a link to a different site HOW TO: Find Office Web Components (OWC) Programming Documentation and Samples
Total Hit (2670) This article shows the different ways that you can access the documentation for Microsoft Office Web Components (OWC). The article also includes information about additional resources for programming the OWC.
Rating
This is a link to a different site Code Walkthrough: Printing the PivotTable Component from Microsoft Internet Explorer
Total Hit (1526) Use another application's printing capability to enhance your Office XP Web Component applications. This article examines one of the samples from the Office XP Web Component Toolpack that allows you to print data from a PivotTable component hosted in Internet Explorer. ....Read More
Rating
This is a link to a different site Highlighting a Listview Report Column
Total Hit (1489) Just as the picture property was used in Creating a Ledger-Style Listview Report Background to simulate a ledger-style background for the listview, this code provides a means to highlight the data in a specific column in the control using the same technique. To do this, the the default background c ....Read More
Rating
This is a link to a different site Creating a Common Control Progress Bar - Overview
Total Hit (1424) The following is an explanation of the messages and structures used by the Windows Progress Bar common control, written by Brad Martinez and provided for distribution on VBnet. The Windows Common Controls API continues to grow as more features are added. Currently, comctl32.dll contains the follo ....Read More
Rating
This is a link to a different site Adding Radio Buttons to Replace the Default Checkmarks
Total Hit (983) When you offer several choices in a menu, you may want to implement a radio button-style selection. This routine handles menus on any form or position on the menu bar.
Rating
This is a link to a different site Compact a Long Path Name to fit a given space
Total Hit (1832) Often there is not enough room to display all of a long path name. A neat way to format a path name in a given space is to show some of the beginning of the path and the filename itself, whilst missing out some of the central folders and replacing them with ellipses (..) This method is used in many ....Read More
Rating
This is a link to a different site HiWords and LoWords from Long Values
Total Hit (699) When translating C code to VB, you quite often come across the HiWord and LoWord operators, used to pack two integers into a long value. A simple translation of HiWord code will run into difficulties when unsigned integer arithmetic is being used in the C code and the highest bit of the long value c ....Read More
Rating
This is a link to a different site vbAccelerator IconMenu DLL
Total Hit (1756) There are various controls for drawing menus with icons in at this site (and some code for doing the same sort of thing elsewhere). But so far these objects and code have been quite difficult to implement. This happens because these objects provide support for creating arbitrary menus at runtime - s ....Read More
Rating


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