
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 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. 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 Delphi - Tudo o que você queria saber Getting Started · Consuming a RESTful Web Service with jQuery Now that you have a jQuery controller, you will create the HTML page that will load the client into the user’s web browser: <!DOCTYPE html><html><head><title>Hello jQuery</title><script src=" src="hello.js"></script></head><body><div><p class="greeting-id">The ID is </p><p class="greeting-content">The content is </p></div></body></html> Note the following two script tags within the <head> section. The first script tag loads the minified jQuery library (jquery.min.js) from a content delivery network (CDN) so that you don’t have to download jQuery and place it in your project. Also note that the <p> tags include class attributes. <p class="greeting-id">The ID is </p><p class="greeting-content">The content is </p> These class attributes help jQuery to reference the HTML elements and update the text with the values from the id and content properties of the JSON received from the REST service.
Components > Experts IDE etc. > Tools. Torry's Delphi Pages By Andreas Hausladen. If you work with frames and form inheritance you might sometimes experience that the application does not start or one of the derived forms crashes with an EReadError. This is because a control in the frame or base form was deleted or renamed. Unfortunately the DFM files are resource files that do not go through the compiler for validation. This Delphi plugin adds the possibility to check all DFM files of the active project. With the "Tools/Delphi DFM Check Option..." dialog you can configure the plugin to either validate the DFMs on every compile or only on builds. ORM for Delphi - Object Relational Mapping / Persistence Frameworks for Delphi Working with database data in Delphi can be really simple. Drop a TQuery on a form, set the SQL property, set Active and, voila, here's your database data in a DBGrid. Ok, you do need a TDataSource and a connection to a database, but that's just a few clicks away. Now you want to insert, update and delete data. That's also easy but can get messy. You introduce new tables, tables change in design ... and your simple task becomes slightly cumbersome :( Can all this be done easily? hcOPF - an ORM for Delphi This Open Source Value Type Framework provides a base class (ThcObject) composed of attribute objects that can be automatically persisted to an object store (normally an RDBMS). DObject Macrobject DObject suite is an O/R Mapping component package to be used in Delphi. InstantObjects InstantObjects offers: Model realization in the Delphi IDE via integrated two-way tool; Object persistence in the most common relational databases; Object presentation via standard data-aware controls. tiOPF