background preloader

Delphi Basics

Delphi Basics

Delphi - News Retour Tutorial Les graphismes et dessins (de J.Y. Quéinec) Tutorial Base de données Leçon 14 : Utilisation d'une base Access à l'aide de ADO Chapitre les exemples Généralité, placer la ressource dans son exe Utilisation de cette ressource : cas du .WAV Utilisation d'une ressource : cas du .BMP Utilisation d'une ressource : cas d'un .AVI Utilisation d'une ressource : une solution pour tous les types de fichier Chapitre les programmes : Chapitre les exemples Tutorial Base de données Ajout de leçons dans le tutorial sur les bases de données : Leçon 9 : Utilisation d'un DataModuleLeçon 10 : Lier deux tables (relation maître-détail, relation un à plusieurs)Leçon 10-1 : Utilisation d'une liste de choix pour rentrer une donnéeLeçon 11 : SQLLeçon 11-1 : Modification de la requête SQL à l'exécution. 25/08/01 Tutorial Tutorial Agent : Adaptation du tutorial à la nouvelle version de Microsoft. 28/05/2001 Mise à jour du programme Molecule 08/04/2001 Tutorial Les Interfaces Chapitre les composants : Accolade 8/4/01

delphi - How to write a number on a TShape Component Programmation informatique Un article de Wikipédia, l'encyclopédie libre. La programmation dans le domaine informatique est l'ensemble des activités qui permettent l'écriture des programmes informatiques. C'est une étape importante du développement de logiciels (voire de matériel). Pour écrire le résultat de cette activité, on utilise un langage de programmation. La programmation représente usuellement le codage, c’est-à-dire la rédaction du code source d'un logiciel. Un exemple simple de programme[modifier | modifier le code] L'immense majorité des programmes qui s'exécutent sur nos ordinateurs, téléphones et autres outils électroniques sont écrits dans des langages de programmation dits impératifs : les lignes du programme sont exécutées les unes après les autres. On remarque que pour effectuer une tâche très simple, le code informatique est très laborieux, et encore ici on ne traite pas les erreurs (si l'utilisateur tape un mot au lieu d'un nombre), et l'affichage est minimaliste. "Si" Si prédicat Alors faire ceci

XML Documentation Comments - RAD Studio XE3 Go Up to Code Editor Overview XML Documentation comments are: Introduced with a triple-slash (///). XML Doc comments are displayed in Help Insight (if parsed successfully) and, also, are included by the compiler when generating XML Documentation (as devnotes XML elements). The XML tags must be properly closed, such as <para>... Example of a Delphi function with XML Documentation comments /// <summary> Removes the specified item from the collection/// </summary>/// <param name="Item">The item to remove/// </param>/// <param name="Collection">The group containing the item/// </param>/// <remarks>/// If parameter "Item" is null, an exception is raised./// <see cref="EArgumentNilException"/>/// </remarks>/// <returns>True if the specified item is successfully removed;/// otherwise False is returned./// </returns>function RemoveItem(Item: Pointer; Collection: Pointer): Boolean;begin // Non-XML DOC comment // ...end; For more examples of XML DOC comments, see the following source files: A paragraph

7 of the Best Code Playgrounds A variety of front-end code playgrounds have appeared over the years. The majority offer a quick and dirty way to experiment with client-side code and share with others. In this article, we take a quick look at seven of the best. Typical features of these online playgrounds include: color-coded HTML, CSS and JavaScript editorsa preview window — many update on the fly without a refreshHTML pre-processors such as HAMLLESS, SASS and Stylus CSS pre-processinginclusion of popular JavaScript librariesdeveloper consoles and code validation toolssharing via a short URLembedding demonstrations in other pagescode forkingzero cost (or payment for premium services only)showing off your coding skills to the world! The best feature: they allow you to test and keep experimental front-end code snippets without the rigmarole of creating files, firing up your IDE or setting up a local server. JSFiddle JSFiddle was one of the earliest code playgrounds and a major influence for all which followed. CodePen

Deborah Pate's Pages - Delphi Art Delphi Automation History Home Politics Email me Default Colours Printable Colours Delphi Other useful links: Of course, Borland's newsgroups are the most useful resource of all. DejaMersDevelopers.href DelphiDicas Dotster Call Sales 800-401-5250 Hosting and Email Domains Website Services I Want To ... Start a Website Questions? Awards & Accreditations ICANN Accredited Registrarnameintelligence 2007 Users Choice AwardWebhost Directory Award Winner #1 In Shared HostingBest Budget Host Award by HostReview.com We Dot What You Want © 2016 Dotster. Priorité à l’optimisation des processus métiers - Techniques de lIngénieur La nouvelle étude de Markess International dédiée aux processus métiers « Amélioration et automatisation des processus d’entreprise : attentes et solutions » montre que les décideurs sont focalisés sur l’optimisation et l’automatisation de leurs processus métiers pour une agilité et une performance accrues. L’amélioration et l’automatisation des processus figurent parmi les préoccupations majeures tant des dirigeants que des décideurs métiers et des responsables informatiques. En effet, sur 100 décideurs interrogés sur ce sujet par Markess International, société d’études spécialisée dans l’analyse de la modernisation des entreprises et administrations avec les technologies de l’information, un sur cinq considère que son organisation est engagée au plus haut niveau stratégique dans de tels projets, et la moitié estime qu’il s’agit d’un engagement significatif impliquant des processus clés de leur organisation. L’optimisation et l’automatisation des processus métiers avant tout

Actions, Action Lists And Action Managers (updated for Delphi XE3) Brian Long (www.blong.com) Table of Contents Click here to download the files associated with this article. If you find this article useful then please consider making a donation. Introduction Actions and action lists were introduced into the VCL by Delphi 4 in June 1998 (in all flavours of the product) and were apparently considered so important that they were the first addition to the Standard page of the Component Palette since Delphi was released back in February 1995. In 2012 Delphi XE3, C++Builder XE3 and RAD Studio XE3 have added the first iteration of action support into the FireMonkey cross-platform framework. It would appear that at the time of writing, over 14 years after the introduction of actions, these potentially very useful components have been much under-used by the Delphi community. The article closes with a look at how to install new, reusable actions into the IDE. What Is An Action? Why Should We Use Actions? Figure 2: Prototype number 2

19+ JavaScript Shorthand Coding Techniques This really is a must read for any JavaScript based developer. I have made this post as a vital source of reference for learning shorthand JavaScript coding techniques that I have picked up over the years. To help you understand what it going on I have included the longhand versions to give some coding perspective on the shorts. Update 05/05/2013 – There are now 19 strong keep em coming! Step 1 – Learn the JavaScript shorthand techniques.Step 2 – Save valuable coding time by keeping your code to a minimum.Step 3 – Impress your colleagues with your awesome new coding skillz! It’s as easy as steps 1,2,3. 1. This is a great code saver for when you want to do something if the test is true, else do something else by using the ternary operator. Shorthand: If you rely on some of the weak typing characteristics of JavaScript, this can also achieve more concise code. 2. Longhand: Don’t believe me? 3. Useful way of declaring small arrays on one line. 4. 5. longhand: shorthand: 6. 7. 8. 9. 10. 12. 13.

The Platform for all Delphi-Developers

Related: