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

 

How to display Error Line Number in VB
Total Hit (2719) In VB you can display error line number. Its little tedious job but it works fine. you have assign numbers to lines where you want to track error line number. These line numbers should be unique within function or sub.
Rating
Extract only Filename from path
Total Hit (2376)
Rating
How to use font for your application without installing into the system's font folder.
Total Hit (3355) Windows application use only those fonts which are registered into the registry and copied to the Fonts directory. But what if you have to use font for your application which is not installed yet. This code will show you how you can add font entry in to windows font table which is just temperory ....Read More
Rating
Tutorial on Working with File I/O in VB6
Total Hit (3938) «b»Reading from a file«/b» «code LangId=1»Public Function ReadFromFile(FilePath As String) As String Dim iFile As Integer Dim s As String '//Check for File Path If Dir(FilePath) = "" Then Exit Function On Error GoTo ErrorHandler: iFile = FreeFile Open FilePa ....Read More
Rating
Display all files in a specified directory or a path
Total Hit (1744)
Rating
Using Regular Expression With VB6 (Using Search/Replace , Match Collection, SubMatch Collection)
Total Hit (17856) 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
How to Cancel Printing job sent to Printer.
Total Hit (3028) To learn more about Printing Using API click on the folloing link «a href='http://msdn.microsoft.com/library/en-us/gdi/prntspol_0r1j.asp'»http://msdn.microsoft.com/library/en-us/gdi/prntspol_0r1j.asp«/a»
Rating
Path API Demo (BeginPath, EndPath, AbortPath)
Total Hit (4248) This is very simple demo to demonstrate how to use path API in grawing. To learn more about path Please visit following URL «a href='http://msdn.microsoft.com/library/en-us/gdi/paths_8acz.asp'»http://msdn.microsoft.com/library/en-us/gdi/paths_8acz.asp«/a» «b»To implement Quick Demo, Copy/Past ....Read More
Rating
Send Raw Data to a Printer (Bypass Printer Driver) Using the Win32 API from Visual Basic.
Total Hit (13753) The Visual Basic Printer object allows for printing through printer drivers, but there may be times when it is desirable to use the Win32 API to send information more directly to the printer. The code sample to follow shows how to achieve this by using API functions that bypass printer drivers to co ....Read More
Rating
How to shutdown remote machine on a network using API.
Total Hit (4801) This demo will show you how to shutdown remote machine in a specified interval. When you shutdown machine you will see following warning message. «BR»«P Align=center»«img src='/Main/Articles/Lang1/Cat3/Code3580/image3580_1.gif'/»«/P»«BR» «b»For Quick Demo«/b» 1. Start a new project in Vis ....Read More
Rating
How to display API Error Description.
Total Hit (3963) When you execute any system API generally it returns success/failure using return value. To find out any error you have to use GetLastError api or Err.LastDllError property of Err object in VB. But it will return only ErrorCode not description. You can use following code to get description of API Er ....Read More
Rating
How to set print layout of Excel file programatically using VB code
Total Hit (9798) This code will show you - How to make column width to auto fit - How to set column width - How to set papersize - How to set page orientation
Rating
How to set pagebreak in excel sheet using VB
Total Hit (2562)
Rating
Windows Socket Programming tutorial : Part-2 (Implementing Winsock Client)
Total Hit (5392)
Rating
Windows Socket Programming tutorial : Part-1 (Implementing Winsock Server)
Total Hit (43858) In this article we will explore power of winsock api. We will implement very simple Asynchronous client and server using API without using Winsock Active-X control. Before we go into more detail let me clear why one more article on the earth for winsock API ... «b»Why This Article ???«/b» You ....Read More
Rating
How to set width of Datareport ?
Total Hit (3105) Following code will set custom width and height for VB Datareport for a specified Printer
Rating
Create all the sub directories of specified path.
Total Hit (2183) Sometimes we need to create a directory if it doesn't exist. It is easy to create directories using VB. You can use «b»MkDir«/b» function. But what if we need to create all directories of specified path if none of them exists? Well, if you are running Win2K or higher then its easy. You can use follo ....Read More
Rating
Check whether file is opened exclusively or not ?
Total Hit (2805) _lOpen, _lClose
Rating
How to set NTFS permission programatically using Security APIs
Total Hit (5317) Using security APIs you can set NTFS permissions in more technical term you can change ACL (Access Control List) for a user. Here for demo purpose I have created a user called "tejuwala" and I have created a folder c:\test and two files c:\test\file_a.txt and c:\file_b.txt . User tejuwala dont ha ....Read More
Rating
How to retrive font name from font file.
Total Hit (2960) I tried so many places but never found any simple code which retrive font name. Because to set font for drawing/printing we have to set font name and ususally font name is different than file name.
Rating
How to disable word wrap in RichTextBox control
Total Hit (2868) By default rich textbox control wrap a long line. Sometimes we want to disable this inbuilt feature then here is some trick. set RightMargin property to an arbitary high value which will not wrap your long line. Happy Programming....
Rating
How to open a file with Wordpad or Notepad
Total Hit (2893) I tried to find sourcecode which allows me to open a file with any extension with Wordpad and Notepad. And finally I came up with this solution. Happy Programming....
Rating
Quickly Clear Tree View Control
Total Hit (2043)
Rating
How to iterate through all child nodes along with selected Item.
Total Hit (2873) This is a very simple Recursion technique to iterate child nodes in treeview control.
Rating
Programmatically Select a Node in TreeView.
Total Hit (3285) This is very easy but tricky. By default HideSelection property of treeview is true. So it confuses many programmer. When you use Treeview.Selected=True and HideSelection is True then it wont show the selection even though node is selected. Check the following example for that ....Read More
Rating
Setting Default Printer
Total Hit (2445)
Rating
Setting Custom Paper Size using Printer API
Total Hit (33670) Here is the alternate method which shows how to use printer APIs to set custom papersize and other printer properties using API. This code will work with Win9x and WinNT both.
Rating
This is a link to a different site Tutorial - ListView Control Introduction
Total Hit (1691) The list view control is basically and advanced ListBox. This control allows you to add rows of data, but it also supports large and small icons, multiple columns, automatic label edit, column re-order, hot-tracking, the four main modes that you see in explorer: Icon - Displays items with large i ....Read More
Rating
This is a link to a different site Tutorial - Image List Control Introduction
Total Hit (2127) The Image List control allows you to add images to your program, which you can use in the other Common Controls (Toolbar, TreeView, ListView etc). To add the ImageList control to your VB project, click Project|Components, and check the box next to Microsoft Windows Common Controls x.x where x is the ....Read More
Rating
This is a link to a different site HTTP file upload from VB
Total Hit (2988) This ActiveX control allows users to submit a file to a Web server. This component uses the WinSocket control to submit files using the file transfer protocol (FTP). It only worked in Internet Explorer 3.02 and higher, and several clients used Netscape, so I had to find another solution. ....Read More
Rating


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