
delphi3000.com - The Platform for all Delphi-Developers MZTools NLog - Introduction PHP :: Calculators MyOSGB PHP Class is a simple lightweight PHP class written for PHP5. Its purpose is to simplify distance calculations between Eastings and Northings, National Grid References or a combination of all three. It can convert Eastings and Northings to National Grid References and vice-versa. All distance calculations are performed in miles, but there is an optional switch to change this to kilometers. The roof pitch measuers the steepness of your shed roof and typically takes values from 1 to 12. This PHP script calculates and converts the decimal value of any latitude and longitude coordinates into easy-to-read degrees, minutes, and seconds. This PHP script calculates and returns a user's age in years, based on a specified date. This free PHP mortgage calculator can be used to figure out monthly payments of a home mortgage loan, based on the home's sale price, the term of the loan desired, buyer's down payment percentage, and the loan's interest rate.
Richey's DELPHI-BOX Other languages Clipper, VB, .. Mailing list => receive a mail whenever the DELPHI-BOX is updated! Tell a friend.. => tell a friend about the DELPHI-BOX! Awards.. => Awards Richey's DELPHI-BOX has achieved Sponsored links: click here if you want to see your sponsored link at this place! Want to link to the DELPHI-BOX ? or this banner: Please read if you are new to Delphi or this website During the past, I did my best to answer all your Delphi-related questions as fast and good as possible. However, that's not really a problem since there are many even better places on the web which will help you finding answers: Download and check available FAQ's (Frequently Asked Questions). Tell a friend about the Delphi-Box! We stopped supporting the rapidly growing number of manipulable, so-called "Delphi Top Sites".Just an effort to keep up quality. Check out our awards page! Other development tools Some links that might be less interesting for real Delphi-programmers... ;-)
Product Download sdk <a id="b7777d05-f9ee-bedd-c9b9-9572b26f11d1" target="_self" class="mscom-link download-button dl" href="confirmation.aspx?id=6510" bi:track="false"><span class="loc" locid="46b21a80-a483-c4a8-33c6-eb40c48bcd9d" srcid="46b21a80-a483-c4a8-33c6-eb40c48bcd9d">Download</span></a> The Platform SDK for Microsoft® Windows® Server 2003 SP1 contains the information and tools you need to develop Windows-based applications. You can use this SDK to develop both 32- and 64-bit applications. DetailsNote:There are multiple files available for this download.Once you click on the "Download" button, you will be prompted to select the files you need.PSDK-x86.exePSDK-amd64.exePSDK-ia64.exeSystem RequirementsSupported Operating System Windows 2000, Windows Server 2003, Windows XP 64-bit, Windows XP Professional Edition, Windows XP Service Pack 1 Hard Disk Space.
Nini: An uncommonly powerful .NET configuration library Utiliser les winsocks en Visual Basic - Club d'entraide des L'ensemble du code et explications que vous trouverez dans ce document est basé sur Visual Basic 6. Vous vous êtes déjà sans doute posé la question de comment envoyer un e-mail ou bien en recevoir sans pour autant utiliser les contrôles d'Outlook. Et bien pour cela nous allons directement utiliser les sockets grâce aux composant Microsoft Winsock Control. Ce tutoriel a pour but de comprendre comment fonctionne le contrôle Winsock. Les sources principales sont les RFC 2821 (basé sur la 821) et 1939. Ce tutoriel se divise en trois parties : Les contrôles nécessaires ; L'envoie d'un mail ; La réception d'un mail via POP3. Article lu 1158 fois. Tout d'abord vous devez rajouter à votre projet le composant Microsoft Winsock Control. S'il n'apparaît pas dans la liste, essayer de récupérer le fichier MSWINSCK.OCX sur autre machine et faîtes « Parcourir... » afin de le sélectionner. Ensuite vous devez coller sur votre Form le contrôle lui-même : Private WithEvents evt As Winsock Remarque
Managing Printing in Your .NET Application by Wei-Meng Lee 05/15/2007 The .NET Framework has made it very simple for you to support printing in your .NET applications. In this article, I will show you the basics of printing in .NET 2.0, and how you can configure page setup, print multiple pages, preview a document before it is printed, as well as let users select a printer to which to print. Creating the Sample Application Using Visual Studio 2005, create a new Windows application project using Visual Basic. To incorporate printing functionality into your Windows application, you can either drag and drop the PrintDocument control onto your form, or create an instance of the PrintDocument class during runtime. Figure 1. To start the printing process, use the Print() method of the PrintDocument object. BeginPrint Occurs when the Print() method is called and before the first page of the document prints. Populate the default Form1 with a PictureBox control and a Button control (see Figure 2). Figure 2. Imports System.Drawing.Printing
How to transfer data to an Excel workbook by using Visual C# 200 This step-by-step article describes several methods for transferring data to Microsoft Excel 2002 from a Microsoft Visual C# 2005 or Microsoft Visual C# .NET program. This article also presents the advantages and disadvantages of each method so that you can select the solution that works best for your situation. Overview The technique that is most frequently used to transfer data to an Excel workbook is Automation. With Automation, you can call methods and properties that are specific to Excel tasks. With Automation, you can use several techniques to transfer your data: Transfer data cell by cell.Transfer data in an array to a range of cells.Transfer data in an ADO recordset to a range of cells by using the CopyFromRecordset method.Create a QueryTable object on an Excel worksheet that contains the result of a query on an ODBC or OLEDB data source.Transfer data to the clipboard, and then paste the clipboard contents into an Excel worksheet. Techniques Use the Windows Clipboard