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 133) 3985 Result(s) found 

 

How to get a listview control to sort numbers correctly...
Total Hit (2344) This is one I discovered after banging my head against the wall for a few hours trying to get a list view control to sort numbers correctly. When trying to create a list view control in report mode that would allow a user to quickly sort by a text listing (in this case a column of state abbreviation ....Read More
Rating
How to Kill a Program Process
Total Hit (3825)
Rating
How to implement chm Help to Visual Basic Applications
Total Hit (2366) 'Put a command button to your form and name it cmdHelp Private Sub cmdHelp_Click() 'This is only a example ShowHtmlHelp App.path & "\MyHelp.chm", "Introduction.htm" End Sub
Rating
Give user ability to interrupt loop
Total Hit (2763) Private Declare Function GetAsyncKeyState Lib "user32.dll" _ (ByVal vKey As Long) As Integer '//ESCAPE Const VK_ESCAPE = &H1B '//Button Click Const VK_LBUTTON = &H1 '//Interrupting A Do Loop '//Give user ability to interrupt loop Private Sub cmdStart_Click() ....Read More
Rating
How to play a Wave file in your project
Total Hit (2848) «Code LangId=1» Option Explicit Private Sub Command1_Click() sndPlaySound "C:\WINDOWS\MEDIA\Start.wav", &H1 End Sub«/Code»
Rating
How to sort items on the fly as they are added in a ListView using SubClassing
Total Hit (3559) «Code LangId=1»Option Explicit ' The NMHDR structure contains information about a notification message. The pointer ' to this structure is specified as the lParam member of the WM_NOTIFY message. Private Type NMHDR hwndFrom As Long ' Window handle of control sending message idFrom As ....Read More
Rating
How to detect system activity for mouse and keyboard
Total Hit (2605) «Code LangId=1»Option Explicit '=========================================================== 'TYPE '=========================================================== Private Type POINTAPI x As Integer y As Integer End Type '=========================================================== 'API '===== ....Read More
Rating
Detecting Keyboard strokes
Total Hit (15616) «code LangId=1»'In a module '*************************** '* Keyboard constants '*************************** Public Const VK_ACCEPT = &H1E Public Const VK_ADD = &H6B Public Const VK_APPS = &H5D Public Const VK_ATTN = &HF6 Public Const VK_BACK = &H8 Public Const VK_BROWSER_BACK = &HA6 Public ....Read More
Rating
Compact and Repair Access MDB.
Total Hit (2844) Following code requires Microsoft DAO 3.6 reference. To add this reference goto Project->Reference example: «Code LangId=1» Call DBCompact("OLt.mdb", "tmpOLT.mdb", , , ";pwd=mypwd") «/Code»
Rating
Tile image in MDI Background.
Total Hit (3031) This code Requires MDIForm and 1 Picturebox. Set Picture property of picturebox. This picture will be used for MDI Background
Rating
Protect the form unloading in accidently
Total Hit (1450) When you want ot protect the form unload in accidently you can use this following code. In this code, the action is When a form is prepared to unload The unload event was automatically raised. on that event there is an parameter named "Cancel" which in the data type integer. When the unload ev ....Read More
Rating
Remove Extra Spaces in between words
Total Hit (1572)
Rating
Encrypt / Decrypt Password
Total Hit (1454)
Rating
Getting Multiple Files back from the CommonDialog Control
Total Hit (2626)
Rating
Find if a value exists in an Array
Total Hit (1779)
Rating
Get the full directory path of a file passed in
Total Hit (1566)
Rating
Prevents and or Allows certain characters and Numeric in text box or any control that support the KeyPress event
Total Hit (2622) «Code LangId=1»Option Explicit 'Usage: Private Sub text1_KeyPress(KeyAscii As Integer) If OnlyNumericTextInput(KeyAscii, ".") = 0 Then Beep KeyAscii = 0 End If End Sub«/Code»
Rating
Calculate the Elapsed Time between two Dates...
Total Hit (3510)
Rating
Floating Point Numbers Validation
Total Hit (1981) «Code LangId=1»Private Sub Form_Load() Text1.Text = Empty End Sub ' USAGE 'Create a form a text box Private Sub Text1_KeyPress(KeyAscii As Integer) ' Precision is 2 in this case ' Send the Precision Value same in both the Functions Call ValidateNum(Text1, 2, KeyAscii) End ....Read More
Rating
Improve String Concatenation Performance
Total Hit (2928)
Rating
How to get a listview control to SORT DATES correctly
Total Hit (2391)
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 Handling URLs with WinInet API (CWinInet_URL class)
Total Hit (2518) The WinInet API provides several functions to handle Uniform Resource Locators (URL). These functions give us the ability to create, combine, break down, and canonicalize URLs...
Rating
This is a link to a different site HTTP with MS Winsock Control - Part II - How to track the progress of data transfer
Total Hit (1719) In this tutorial we'll improve the HTTP Reader sample application, you will learn how to track the connection state with the State property of the MS Winsock Control, and how to show the progress of the downloading with the ProgressBar control.
Rating
This is a link to a different site Using XML Queries and Transformations
Total Hit (1651) Professional Visual Basic 6 XML shows the VB community how to take advantage of XML technology and the available (free-to-use) implementations. The flexible and standards-based data description that XML provides can be used in a myriad of places where VB programmers are active. To learn more abo ....Read More
Rating
This is a link to a different site HTTP with MS Winsock Control - Part III : How to retrieve a file from the Web through a proxy server
Total Hit (2752) In the previous tutorials we have learned how to communicate with a web server via direct connection. In that scenario the client application establishes connection to the web server by the specified server address (or IP address) and IP-port 80. But there are a lot of cases where a client has an ac ....Read More
Rating
This is a link to a different site HTTP with MS Winsock Control - Part IV - Retrieving secured resources from the Web
Total Hit (2304) In this tutorial I'll show you how to access protected resources on the Web using the Basic Authentication scheme. Also you find out how to work with a proxy server that requires authorization of the client.
Rating
This is a link to a different site HTTP with MS Winsock Control - Part V - Retrieving binary files from the Web
Total Hit (1949) 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 HTTP with MS Winsock Control - Part VI - Receiving chunked data
Total Hit (1918) At this stage we add to the Simple HTTP Reader sample application the ability to read chunked data.
Rating
This is a link to a different site HTTP with MS Winsock Control - Part VII - Handling HTTP redirection
Total Hit (2575) There are a lot of reasons why the web developer decides to redirect HTTP request. All the web browsers used today handle the redirection automatically, without interaction with a user. So it is time to add the similar functionality to our Simple HTTP Reader sample application. ....Read More
Rating


(Page 32 of 133) 3985 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 55 56 57 58 59 60 ...

Recommanded Links

 

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

© 2008 BinaryWorld LLC. All rights reserved.