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

Submitted By : Nayan Patel  (Member Since : 5/26/2004 12:23:06 PM)

Job Description : He is the moderator of this site and currently working as an independent consultant. He works with VB.net/ASP.net, SQL Server and other MS technologies. He is MCSD.net, MCDBA and MCSE. In his free time he likes to watch funny movies and doing oil painting.
View all (893) submissions by this author  (Birth Date : 7/14/1981 )

Dock Your Forms
Total Hit (2652) Create child forms that you can dock to the edges of your main form. Child forms used are Toolbar type windows. See how to create toolbar and ToolTip windows.
Rating
Edit Data in a Read Only Grid
Total Hit (2808) Use a floating textbox to edit data in the read only Microsoft FlexGrid control
Rating
Create 3 Dimensional Text
Total Hit (2872) Create 3 Dimensional text effects.
Rating
An explorer like composite developed with VB.Net
Total Hit (2952) This composite implements an explorer "light" developed in VB.Net. The explorer provides for automatic resizing. The example provides for an explorer contained in a resizable panel on a resizeable form
Rating
invetory system
Total Hit (2021) This is a full invetory system
Rating
Set File Creation, Modified, Last Accessed Dates
Total Hit (2905) Often times you may need to touch a file by setting its Created, Modified or Last Accessed date and time. This sample shows how to do it.
Rating
CamelCase - Convert a string to camel case
Total Hit (8878) «Code LangId=1» ' convert a string to camel case ' for example: CamelCase("new file name") => "NewFileName" ' Function CamelCase(ByVal Text As String) As String Dim i As Long ' convert all non-alphanumeric chars to spaces For i = Len(Text) To 1 Step -1 If InStr(1, ....Read More
Rating
A VarPtr substitute function for VB4
Total Hit (3364) Both VB5 and VB6 include a hidden function, named VarPtr, that returns the address of a variable. Many advanced tricks and routines, on VB2TheMax or other site, use this function. However, VB4 doesn't directly support VarPtr, so it seems that you can't use such routines with those older versions of ....Read More
Rating
Count substrings with the Replace function
Total Hit (3182) You can often use the Replace function in a smewhat unorthodox ways to simplify (and sometimes optimize) your code. For example, in order to count the number of occurrences of a substring inside another string you usually need a loop based on the InStr function: «Code LangId=1» Dim i As Long, cou ....Read More
Rating
Cross-midnight time measurements
Total Hit (2972) Any time the behavior of your code depends on the Timer function you should take into account the (more or less) remote possibility that your code is executed just before midnight. Take for example the following code: «Code LangId=1» Sub Pause(seconds as Single) Dim initTime as Single ....Read More
Rating
Determine whether an ActiveX DLL is being used by an interpreted program
Total Hit (3004) While determine whether the current program is running as interpreted or compiled code is relatively easy, determine whether an ActiveX DLL is serving an interpreted or compiled application is a bit more difficult. This information might be useful to disable or enable special features, or just to pr ....Read More
Rating
Determine whether the client program is in break mode
Total Hit (3590) When an interpreted client running in the IDE enters debug (break) mode, all the ActiveX DLL it's using continue to be in run mode as usual, even though you won't notice it because the DLL will be inactive until the program invokes one of its methods. There are times, however, when the DLL is able t ....Read More
Rating
Don't use = operator on Date values
Total Hit (3018) Date variables store values in floating point format, much like Double variables, with the integer part for dates and the fractional part for the time portion. Being floating point values, Data values may be subject to rounding problems, and for this reason you shouldn't test two Date variables for ....Read More
Rating
Determining Memory Statistics and System Resources
Total Hit (3011) Retrieve the current state of the system's memory using the GlobalMemoryStatus function. On Windows 9x machines you can determine the system resource values displayed in Explorer's Help About dialog by using the Resource Meter's Rsrc32.dll. Use this info to determine to if there are enough reources ....Read More
Rating
Disable Ctrl-Alt-Delete, Alt-Tab and Ctrl-Esc Key Sequences
Total Hit (3225) Prevent users from rebooting a PC by telling Windows the screen saver is running. Stop Ctrl-Esc and the Windows key from displaying the Start Menu.
Rating
System Metrics Information
Total Hit (2794) The GetSystemMetrics function returns a wealth of information including the width and height of the screen, window, icon, border, caption, scroll bar elements and more.
Rating
System Parameters Information
Total Hit (2831) The SystemParametersInfo function queries systemwide parameters and provides information about the mouse, keyboard, desktop, icons size, screen saver,... This example also demonstrates how to get the Window's version using GetVersionEx.
Rating
Add Your Application's Icon to the System Tray
Total Hit (2825) Add your application's icon to the System Tray and respond to mouse events occurring on your system tray icon. Work with ActiveX components from the system tray. Normally this is not possible due to the way Windows handles Remote Procedure Calls.
Rating
Locale Aware Date Format
Total Hit (2620) Get the Locale specific Date and Number formats. If your regional settings are set to German, the standard date looks like "dd.mm.yy". Convert to the proper date format based on the locale.
Rating
List and Change Window's Date Formats
Total Hit (2829) Enumerate all Long and Short Date formats currently defined on your system. Create new ones and change them on the fly!
Rating
Synchronize Your System's Time With an NTP Server
Total Hit (2992) Retrieve the time from a public Network Time Protocol (NTP) server via the Winsock control then use it set your PC's time.
Rating
Create a System DSN
Total Hit (2570) Programmatically create a system Data Source Name
Rating
Tile and Center Images on the Background of MDI Forms.
Total Hit (2867) Learn how to tile an image across the background of an MDI form or how to center an image on the background or even tile one image then center another image over it.
Rating
Toggle and Change the TitleBar and Border Style at Run Time
Total Hit (2804) Toggle the TitleBar on and off and change the border style of your form at run time. Add and remove the Minimize, Maximize and WhatsThisHelp buttons and System Menu at runtime.
Rating
Animate How Forms are Displayed and Hidden,
Total Hit (2814) Windows 98 and later provides the ability to slide your form in or out of view. See how to tile an image across the entire background of your form.
Rating
Create a Scrollable Form
Total Hit (2687) Add more controls than can fit on the visible portion of a form and scroll though the form moving the controls into and out of view.
Rating
Dynamically Add Controls and Create a Scrollable Form
Total Hit (2678) Dynamically add and remove controls at runtime using the controls collection, add controls to any container control and not the form itself, detect events from the new controls and create a scrollable form.
Rating
Move A Form Without A Title Bar/Resize Controls
Total Hit (2916) Method one retrieves the X and Y coordinates of the cursor and then moves the form to that locatoin. Method two calls ReleaseCapture and SendMessage to move the form.
Rating
Change a Control's Style / Owner Drawn Controls
Total Hit (2635) See how to change the font of individual ListBox items by changing the Style of the control. Creating Owner Drawn controls lets you customize VB's intrinsic controls to look the way you want.
Rating
Create a Dockable, AutoHide AppBar
Total Hit (4047) The Window's taskbar and IE4+ toolbars are called Appbars. Create an Appbar which can float or be docked to a screen edge and can be set to AutoHide.
Rating


(Page 132 of 133) 3968 Result(s) found  ... 121 122 123 124 125 126 127 128 129 130 131 132 133

Home   |  Comment   |  Contact Us   |  Privacy Policy   |  Terms & Conditions   |  BlogsZappySys

© 2008 BinaryWorld LLC. All rights reserved.