Interfacing of LEDS

Total Page:16

File Type:pdf, Size:1020Kb

Interfacing of LEDS Dept. of Electronics & Telecommunication engg. Microcontrollers M Interfacing of LEDS: Fig. shows Interfacing of 8 LEDs with 8051 microcontroller. Anodes of the LEDs are Connected to the port pins and cathodes are connected to common ground connection. To turn on particular LED we will need to make value of that pin “High” i.e “1”. After making a particular pin high or low a small delay is executed to make that LED light visdible. ASM Program: ORG 0000H START: MOV P0, #00000000B CALL DELAY MOV P0, #00000001B CALL DELAY MOV P0, #00000010B CALL DELAY MOV P0, #00000011B CALL DELAY MOV P0, #00000100B CALL DELAY SNJB’s Late Sau K. B. Jain College of engineering, Chandwad Dept. of Electronics & Telecommunication engg. Microcontrollers M MOV P0, #00000101B CALL DELAY MOV P0, #00000110B CALL DELAY MOV P0, #00000111B CALL DELAY MOV P0, #00001000B CALL DELAY MOV P0, #00001001B CALL DELAY CALL START DELAY: MOV R0, #0FH L3:MOV R2, #0FFH L1:MOV R1,#0FFH L2: DJNZ R1, L2 DJNZ R2, L1 DJNZ R0, L3 RET END Interfacing of 7-Segment Display: Figure shows interfacing diagram of 8051 microcontroller and Seven segment display. It also shows structure of Seven segment display. There are two types of LED 7-segment displays: common cathode (CC) and common anode (CA). The difference between the two displays is the common cathode has all the cathodes of the 7- segments connected directly together and the common anode has all the anodes of the 7-segments connected together. In this diagram common anode seven segment display is used. So when we want to make any segment glow on, we will just make respective I/O pin low i.e. 0. There are total 4 seven segment displays are used. Transistors T1, T2, T3, T4 are used to trigger particular seven segment display ON and OFF. With the help of seven segment display we can display alphabetical characters such as A,B,C,D,E,F and numerical characters such as 0,1,2,3,4,5,6,7,8,9. SNJB’s Late Sau K. B. Jain College of engineering, Chandwad Dept. of Electronics & Telecommunication engg. Microcontrollers M Assembly Language Program to display all the hexadecimal characters is given below. Program: ORG 0000H MOV P1, #00001111B CALL DELAY MOV P0, #11111111B START: MOV P0, #11000000B ; DISPLAY 0 CALL DELAY MOV P0, #11111001B ; DISPLAY 1 CALL DELAY MOV P0, #10100100B ; DISPLAY 2 CALL DELAY MOV P0, #10110000B ; DISPLAY 3 CALL DELAY MOV P0, #10011001B ; DISPLAY 4 CALL DELAY MOV P0, #10010010B ; DISPLAY 5 CALL DELAY MOV P0, #10000010B ; DISPLAY 6 CALL DELAY MOV P0, #11111000B ; DISPLAY 7 CALL DELAY MOV P0, #10000000B ; DISPLAY 8 SNJB’s Late Sau K. B. Jain College of engineering, Chandwad Dept. of Electronics & Telecommunication engg. Microcontrollers M CALL DELAY MOV P0, #10010000B ; DISPLAY 9 CALL DELAY CALL START DELAY: MOV R0, #0FH L3:MOV R2, #0FFH L1:MOV R1,#0FFH L2: DJNZ R1, L2 DJNZ R2, L1 DJNZ R0, L3 RET END Interfacing of 16x2 LCD: Liquid Crystal Display (LCD) is very commonly used electronic display module and having a wide range of applications such as calculators, laptops, mobile phones etc. 16×2 character lcd display is very basic module which is commonly used in electronics devices and projects. It can display 2 lines of 16 characters. Each character is displayed using 5×7 or 5×10 pixel matrix. LCD can be interfaced with microcontroller in 4 Bit or 8 Bit mode. These differs in how data is send to LCD. In 8 bit mode to write a character, 8 bit ASCII data is send through the data lines D0 – D7 and data strobe is given through E of the LCD. LCD commands which are also 8 bit are written to LCD in similar way. The LCD requires 3 control lines (RS, R/W & EN) & 8 (or 4) data lines. The number on data lines depends on the mode of operation. If operated in 8-bit mode then 8 data lines + 3 control lines i.e. total 11 lines are required. And if operated in 4-bit mode then 4 data lines + 3 control lines i.e. 7 lines are required. Pin Symbol Function 1 Vss Ground 2 Vdd Supply Voltage 3 Vo Contrast Setting 4 RS Register Select 5 R/W Read/Write Select 6 En Chip Enable Signal 7-14 DB0-DB7 Data Lines 15 A/Vee Gnd for the backlight 16 K Vcc for backlight SNJB’s Late Sau K. B. Jain College of engineering, Chandwad Dept. of Electronics & Telecommunication engg. Microcontrollers M Program: ORG 0000H MOV A,#38H ACALL CMD MOV A,#0EH ACALL CMD MOV A,#01H ACALL CMD MOV A,#06H ACALL CMD MOV A,#80H ACALL CMD MOV A,#'S' ACALL DISP MOV A,#'N' ACALL DISP MOV A,#'J' ACALL DISP MOV A,#'B‘ ACALL DISP SNJB’s Late Sau K. B. Jain College of engineering, Chandwad Dept. of Electronics & Telecommunication engg. Microcontrollers M L1: SJMP L1 CMD: ACALL INIT MOV P1,A CLR P3.5 CLR P3.4 SETB P3.3 CALL DELAY CLR P3.3 RET DISP: ACALL INIT MOV P1,A SETB P3.5 CLR P3.4 SETB P3.3 ACALL DELAY CLR P3.3 RET INIT: CLR P3.3 CLR P3.5 MOV P1, #0FFH SETB P3.4 L1: SETB P3.3 JB P1.7, L1 CLR P3.3 DELAY: MOV R3, #10 L1: MOV R4, #250 L2: DJNZ R4, L2 DJNZ R3, L1 RET END Interfacing of ADC0809 with 8051: Normally analogue-to-digital converter (ADC) needs interfacing through a microprocessor to convert analogue data into digital format. This requires hardware and necessary software, resulting in increased complexity and hence the total cost. The circuit of A-to-D converter shown here is configured around ADC 0809, avoiding the use of a microprocessor. The ADC 0809 is an 8-bit A-to-D converter, having data lines D0-D7. It works on the principle of successive approximation. It has a total of eight analogue input channels, out of which any one can be selected using address lines A, B and C. Here, in this case, input channel IN0 is selected by grounding A, B and C address lines. Usually the control signals EOC (end of conversion), SC (start conversion), ALE (address latch enable) and OE (output enable) are interfaced by means of a SNJB’s Late Sau K. B. Jain College of engineering, Chandwad Dept. of Electronics & Telecommunication engg. Microcontrollers M microprocessor. However, the circuit shown here is built to operate in its continuous mode without using any microprocessor. Therefore the input control signals ALE and OE, being active-high, are tied to Vcc (+5 volts). The input control signal SC, being active-low, initiates start of conversion at falling edge of the pulse, whereas the output signal EOC becomes high after completion of digitization. This EOC output is coupled to SC input, where falling edge of EOC output acts as SC input to direct the ADC to start the conversion. As the conversion starts, EOC signal goes high. At next clock pulse EOC output again goes low, and hence SC is enabled to start the next conversion. Thus, it provides continuous 8-bit digital output corresponding to instantaneous value of analogue input. The maximum level of analogue input voltage should be appropriately scaled down below positive reference (+5V) level. The ADC 0808 IC requires clock signal of typically 550 kHz, which can be easily derived from an Astable multi-vibrator constructed using 7404 inverter gates. In order to visualize the digital output, the row of eight LEDs (LED1 through LED8) have been used, where in each LED is connected to respective data lines D0 through D7. Since ADC works in the continuous mode, it displays digital output as soon as analogue input is applied. The decimal equivalent digital output value D for a given analogue input voltage Vin can be calculated from the relationship. Program: ALE EQU P3.4 OE EQU P3.7 SNJB’s Late Sau K. B. Jain College of engineering, Chandwad Dept. of Electronics & Telecommunication engg. Microcontrollers M START EQU P3.5 EOC EQU P3.6 SEL_A EQU P3.1 SEL_B EQU P3.2 SEL_C EQU P3.3 ADC_DATA EQU P1 ORG 0000H MOV ADC_DATA, #0FFH ;DATA PORT AS A INPUT SETB EOC ;EOC AS A INPUT CLR ALE ;REST AS A OUTPUT CLR OE CLR START SIGNALS MAIN: SETB SEL_A ;SELECT ANALOG CHANNEL 1 CLR SEL_B CLR SEL_C SETB ALE ;LATCH CHANNEL SELECT SETB START ;START CONVERSION CLR ALE CLR START HERE: JB EOC, HERE ; WAIT FOR END OF CONVERSION HERE1:JNB EOC, HERE1 SETB OE ;ASSERT READ SIGNAL MOV A, ADC_DATA ;READ DATA CLR OE ;START OVER FOR NEXT CONVERSION SJMP MAIN END Interfacing of 4x4 Keypad with 8051: Hex key pad is essentially a collection of 16 keys arranged in the form of a 4×4 matrix. Hex key pad usually have keys representing numerics 0 to 9 and characters A to F. The simplified diagram of a typical hex key pad is shown in the figure below. SNJB’s Late Sau K. B. Jain College of engineering, Chandwad Dept. of Electronics & Telecommunication engg. Microcontrollers M The hex keypad has 8 communication lines namely R1, R2, R3, R4, C1, C2, C3 and C4. R1 to R4 represents the four rows and C1 to C4 represents the four columns. When a particular key is pressed the corresponding row and column to which the terminals of the key are connected gets shorted. For example if key 1 is pressed row R1 and column C1 gets shorted and so on.
Recommended publications
  • 2011 Approved Capital Budget
    2011 Approved Capital Budget City of Windsor Table of Contents Section Page A Summary of 5-Year Capital Budget .............................…………………………………………... 1 B 5-Year Capital Project Listing by Major Category……………………………………………… 5 C 5-Year Summary of Capital Budget by Funding Source………………………………………… 13 D Summary of Growth vs. Maintenance Related Projects (Gross Expenditure Level)………….. 29 E Summary of Growth vs. Maintenance Related Projects (Net Expenditure Level)…………….. 38 F Capital Project Summaries Agencies and Boards ……………………………………………………………………… 47 Office of Community Development and Health ………………………………………… 70 Office of the Chief Administrative Officer ……………………………………………… 91 Office of the Chief Financial Officer …………………………………………………….. 96 Office of the City Clerk ………………………………………………………………….... 121 Office of the City Engineer ……………………………………………………………….. 138 Office of the City Solicitor ………………………………………………………………... 297 2011 Approved Capital Budget Section A: Summary of 5 -Year Capital Budget 1 of 321 Summary of Capital Budget Expenditures and Funding Sources ($ 000's) for Budget Year 2011 (5-Year Capital Plan)*** Internal Pay As You Go Corporate Reserves External Sources Pay As You Go Pay As You Go Capital Development Infrastructure Recreation Pay As You Go Other Provincial Federal Fuel Tax ** Other Third-Party Year Operating Sewer Expenditure Charges Stimulus Funding Infrastructure Total Debt Reduction Reserves Transit Funding Funding One-time Recoveries Budget Surcharge Reserve Reserves (ISF) Funding (RInC) APPROVED 446 31,841 52,000 3,784
    [Show full text]
  • Download EAGLE Data Sheet
    600 Full Frames Per Second Motion Analysis System The Eagle is a Complete600 Motion Full FramesAnalysis System Per Secondthat can help Motion solve your Analysis mechanical System issues that happen too fast for the eye to see and be analyzed. Everything is in one precise package in a Storage / Shipping / Carrying Case. Included in this package are the USB 3.0 Camera, Lens, USB 3.0 Cable, Box Computer, Remote Control Tablet, EAGLE Camera Interface USB Software, plus additional Cameras if needed. A separate Accessory Package includes a choice of Box Computer Battery, Battery Powered Lights, Lenses, ImageWarp Motion Analysis Software, Floor Tripods, Bench Tripods and a Handheld Tripod also in a Pelican Storage/Carrying Case. Features – IMI USB 3.0 Camera IMB-3213UP Mono; IMC-3213UP Color • VGA 640 x 480 • Max. 600 fps • CMOS Global/Rolling Shutter • High Bandwidth and Low CPU usage • Power Supply Management Support • Plug and Play Interface • 44(W) x 44 (H) x 22.4 (D) mm. 55g Features – Camera Interface Software Development Kit • Provides easy integration into multiple programming environments (C++, C#, VB, NET, VB6, Delphi, PowerBuilder, Java, Python, QT, and more) • Includes drivers for DirectShow, TWAIN, MATLAB, LabVIEW, InduSoft Studio, WinCC Flexible, GE Fanuc Features – Cable and Lenses • PCIe 2-meter cable DIN to DIN CSP-6 Quad • Ships with three lenses • Ships with Pelican Case Applications • FPD and PCB Inspection • Semiconductor Inspection • Digitizing and Scanning • Research and Scientific Imaging • Bottling, Labeling, and Packaging • Mechanical Product Design • Mechanical Engineering Lab Tool Overview The ImageOps Division of Computer Modules has found that the market needs a Complete Motion Analysis System that can solve mechanical issues.
    [Show full text]
  • Developers Choice
    IDE Scorecard Developers’ Choice IDE Scorecard Definitive Rankings of the Top 11 IDEs by Over 1,200 Developers June 2006 Evans Data Corp, 740 Front St, Santa Cruz, CA 95060 www.evansdata.com (800) 831 3080 IDE Scorecard I NSIDE T HIS R EPORT Overview 1 Overview Abstract and Methodology 3 Overall Usage In Spring 2006, Evans Data Corp conducted primary market research on IDEs, interviewing over 1200 developers worldwide and asking them to rate 4 Feature Rankings the top IDEs. Developers only rated the features of those IDEs that they had 5 Further Information used. They were asked to rank sixteen different features commonly found in IDEs. Each feature could be ranked as “excellent, “very good” “adequate”, “needs improvement” or “NA”. During processing, the first four rankings were assigned a numerical value according to their relative significance. The last value (“N/A”) was discarded. Values were then combined to produce a score for each element for every IDE and also for an overall total score. The top 11 IDEs ranked were: “Eclipse is well on its Adobe/Macromedia Studio 8 way to becoming one Borland Delphi of the most popular Borland JBuilder IDEs for any Eclipse language..” IBM Rational Application Developer IBM WebSphere Studio Microsoft Visual Studio .NET NetBeans Oracle JDeveloper Sun Java Studio Sybase PowerBuilder Features and capabilities rated were: Compiler/Interpreter Debugger Editor Make/Build Functions Documentation Application Modeling Tools Web Design Tools Sample Applications Profiler 1 IDE Scorecard IDE Scorecard Overview Cont’ Compiler Performance Performance of Resulting Applications Ease of Use Ability to Integrate 3rd Party Tools Availability of 3rd Party Tools Quality of Technical Support Options Size and Quality of Developer Community In addition, developers were asked to rate the IDEs based on how well suited they are for creating a particular type of application (server-centric, desktop, thin-client, rich-client, and embedded systems).
    [Show full text]
  • The Progress Datadirect for ODBC for SQL Server Wire Protocol User's Guide and Reference
    The Progress DataDirect® for ODBC for SQL Server™ Wire Protocol User©s Guide and Reference Release 8.0.2 Copyright © 2020 Progress Software Corporation and/or one of its subsidiaries or affiliates. All rights reserved. These materials and all Progress® software products are copyrighted and all rights are reserved by Progress Software Corporation. The information in these materials is subject to change without notice, and Progress Software Corporation assumes no responsibility for any errors that may appear therein. The references in these materials to specific platforms supported are subject to change. Corticon, DataDirect (and design), DataDirect Cloud, DataDirect Connect, DataDirect Connect64, DataDirect XML Converters, DataDirect XQuery, DataRPM, Defrag This, Deliver More Than Expected, Icenium, Ipswitch, iMacros, Kendo UI, Kinvey, MessageWay, MOVEit, NativeChat, NativeScript, OpenEdge, Powered by Progress, Progress, Progress Software Developers Network, SequeLink, Sitefinity (and Design), Sitefinity, SpeedScript, Stylus Studio, TeamPulse, Telerik, Telerik (and Design), Test Studio, WebSpeed, WhatsConfigured, WhatsConnected, WhatsUp, and WS_FTP are registered trademarks of Progress Software Corporation or one of its affiliates or subsidiaries in the U.S. and/or other countries. Analytics360, AppServer, BusinessEdge, DataDirect Autonomous REST Connector, DataDirect Spy, SupportLink, DevCraft, Fiddler, iMail, JustAssembly, JustDecompile, JustMock, NativeScript Sidekick, OpenAccess, ProDataSet, Progress Results, Progress Software, ProVision, PSE Pro, SmartBrowser, SmartComponent, SmartDataBrowser, SmartDataObjects, SmartDataView, SmartDialog, SmartFolder, SmartFrame, SmartObjects, SmartPanel, SmartQuery, SmartViewer, SmartWindow, and WebClient are trademarks or service marks of Progress Software Corporation and/or its subsidiaries or affiliates in the U.S. and other countries. Java is a registered trademark of Oracle and/or its affiliates. Any other marks contained herein may be trademarks of their respective owners.
    [Show full text]
  • Kristen Elizabeth Bossio
    Kristen Elizabeth Bossio [email protected] • (413)841-6824 LinkedIn Profile Current Address: Permanent Address: 515 Loudon Road 87 Rockland Drive Loudonville, NY 12211 Pittsfield, MA 01201 Education: Siena College, Loudonville, NY ! Bachelor of Science in Computer Science, Bachelor of Arts in Creative Arts ! Anticipated Graduation: May 2016 ! Current GPA: 3.91 Technical Skills: ! Languages: Java, JavaScript, JQuery, HTML, CSS, SQL ! Tools & Databases: NetBeans, BlueJ, PowerBuilder, Synergy, Oracle, Sybase ! Web application development using a Struts framework, Ajax, Servlets, Java Beans, and Java Factories Work Experience: Software Engineering Intern (May 2015-August 2015) General Dynamics Mission Systems, Pittsfield, MA ! Developed and tested web applications in support of Repair Operations Management System (ROMS) and Engineering Parts List (EPL) ! Worked directly with end users and application experts to define software capabilities and interface design ! Documented software requirements Video Production Intern (January 2015-May 2015) Office of Marketing and Communications, Siena College, Loudonville, NY ! Produced video content for the Siena College website and YouTube channel ! Directed, shot, and edited a promotional video for a fellow student’s Kickstarter page Waitress/Hostess (June 2012-August 2014) Applebee’s, Pittsfield, MA Extracurricular and Leadership Experience: Stage 3 Theatre Club (September 2012 – present) Siena College, Loudonville, NY ! Served on the Executive Board as Vice President (2015-2016), Secretary (2014-2015),
    [Show full text]
  • Towards Left Duff S Mdbg Holt Winters Gai Incl Tax Drupal Fapi Icici
    jimportneoneo_clienterrorentitynotfoundrelatedtonoeneo_j_sdn neo_j_traversalcyperneo_jclientpy_neo_neo_jneo_jphpgraphesrelsjshelltraverserwritebatchtransactioneventhandlerbatchinsertereverymangraphenedbgraphdatabaseserviceneo_j_communityjconfigurationjserverstartnodenotintransactionexceptionrest_graphdbneographytransactionfailureexceptionrelationshipentityneo_j_ogmsdnwrappingneoserverbootstrappergraphrepositoryneo_j_graphdbnodeentityembeddedgraphdatabaseneo_jtemplate neo_j_spatialcypher_neo_jneo_j_cyphercypher_querynoe_jcypherneo_jrestclientpy_neoallshortestpathscypher_querieslinkuriousneoclipseexecutionresultbatch_importerwebadmingraphdatabasetimetreegraphawarerelatedtoviacypherqueryrecorelationshiptypespringrestgraphdatabaseflockdbneomodelneo_j_rbshortpathpersistable withindistancegraphdbneo_jneo_j_webadminmiddle_ground_betweenanormcypher materialised handaling hinted finds_nothingbulbsbulbflowrexprorexster cayleygremlintitandborient_dbaurelius tinkerpoptitan_cassandratitan_graph_dbtitan_graphorientdbtitan rexter enough_ram arangotinkerpop_gremlinpyorientlinkset arangodb_graphfoxxodocumentarangodborientjssails_orientdborientgraphexectedbaasbox spark_javarddrddsunpersist asigned aql fetchplanoriento bsonobjectpyspark_rddrddmatrixfactorizationmodelresultiterablemlibpushdownlineage transforamtionspark_rddpairrddreducebykeymappartitionstakeorderedrowmatrixpair_rddblockmanagerlinearregressionwithsgddstreamsencouter fieldtypes spark_dataframejavarddgroupbykeyorg_apache_spark_rddlabeledpointdatabricksaggregatebykeyjavasparkcontextsaveastextfilejavapairdstreamcombinebykeysparkcontext_textfilejavadstreammappartitionswithindexupdatestatebykeyreducebykeyandwindowrepartitioning
    [Show full text]
  • Installation Guide Table of Contents
    PUBLIC PowerBuilder 12.6 Document Version: 2.0 - 2014-10-27 Installation Guide Table of Contents 1 Installation Guide............................................................3 2 Installation Workflow.........................................................4 3 Planning Your Installation..................................................... 5 3.1 Installation Media Contents......................................................5 3.2 System Requirements......................................................... 5 3.3 Obtaining a License........................................................... 6 3.3.1 SySAM Troubleshooting.................................................7 3.4 Software Requirements........................................................ 9 4 Preinstallation Tasks........................................................ 12 5 Starting the Common Setup Program............................................13 6 Providing Basic Information...................................................15 7 Installing SQL Anywhere......................................................17 7.1 About SQL Anywhere......................................................... 18 8 Installing InfoMaker.........................................................19 8.1 InfoMaker Components....................................................... 20 9 Installing PowerBuilder ......................................................21 9.1 PowerBuilder Components.....................................................22 10 Completing the Setup Program................................................24
    [Show full text]
  • Create Source Object Repository 168
    US 2013 0080995A1 (19) United States (12) Patent Application Publication (10) Pub. No.: US 2013/0080995 A1 RAZA (43) Pub. Date: Mar. 28, 2013 (54) METHOD AND AN APPARATUS FOR (52) U.S. Cl. DEVELOPNG SOFTWARE USPC ........................................... 717/107; 717/120 (57) ABSTRACT (76) Inventor: Ahmad RAZA, Lahore (PK) A Software component, is constructed on the basis of a set of predetermined rules, and by utilizing a source object, a token (21) Appl. No.: 13/242.558 value and a parameter, wherein the Source object is stored in a source object repository, and wherein the source object comprises a component value and/or a token value, wherein (22) Filed: Sep. 23, 2011 the component value may be associated with the token value. For constructing the software component, the token value is processed and a token result, obtained by processing the Publication Classification token value, is utilized for constructing the software compo nent, wherein the parameter may also be utilized for the (51) Int. Cl. processing of the token value and/or constructing the Soft G06F 9/44 (2006.01) ware component. 2O Create Source object repository 168 Create Software component constructor 170 Construct software component 142 Patent Application Publication Mar. 28, 2013 Sheet 1 of 96 US 2013/0080995 A1 Create source object repository 168 Create Software component constructor 170 Construct software component 142 FIG. 1A Patent Application Publication Mar. 28, 2013 Sheet 2 of 96 US 2013/0080995 A1 108 110a 11 O Software Component 142 Select set of predetermined
    [Show full text]
  • Project Summary Major Category Transportation Infrastructure Wards City Wide Version Name Main (Active)
    Table of Contents Page Section A Summary of 5 – Year Capital Budget Summary of Capital Budget Expenditures and Funding Sources 1 Summary and Comparison of Capital Budget Expenditures by Major Categories 3 Section B 5-Year Capital Project Listing by Major Category 4 Section C 5-Year Summary of Capital Budget by Funding Source 12 Section D Summary of Growth vs. Maintenance Related Projects (Gross Expenditure Level) 31 Section E Summary of Growth vs. Maintenance Related Projects (Net Expenditure Level) 38 Section F Capital Project Summaries Agencies and Boards ...........……………...………………………………………… 45 Office of Community Development and Health ..............………………………… 66 Office of the Chief Administrative Officer ..............……………………………… 84 Office of the Chief Financial Officer ...........…………………………………….. 87 Office of the City Clerk ...........………………………………………………….... 113 Office of the City Engineer ...........……………………………………………….. 125 Office of the City Solicitor ............……………………………………………….... 328 2010 Recommended Capital Budget for Administrative Review 2012 Approved Capital Budget Section A: Summary of 5 – Year Capital Budget Summary of Capital Budget Expenditures and Funding Sources ($ 000's) for Budget Year 2012 (5-Year Capital Plan)*** Internal Pay As You Go Corporate Reserves External Sources Pay As You Go Pay As You Go Capital Development Infrastructure Recreation Pay As You Go Other Provincial Federal Fuel Tax ** Other Third-Party Year Operating Sewer Expenditure Charges Stimulus Funding Infrastructure Total Debt Reduction Reserves
    [Show full text]
  • 9397 Microway Update #24 Aprmay08.Indd
    UPDATE April / May 2008 NEW! CONTENTS Functional Index page 22 DEVELOPER 3rdRail . 17 C++Builder 2007 . 16 Visual Studio 2008 Officially Launched! new technology for developing rich interactive Chart FX . 3 As most would already know by now, Microsoft applications for the Web). Take a look at CodeCharge Studio 4.0 . 9 the products under the Developer category CodeGear RAD Studio 2007. 16 “officially” launched Visual Studio 2008 in February. ComponentOne Studio Enterprise 2008 . 4 in this edition. DataWindow. NET 2.5 . 20 What is not so well known is that our MSDN Delphi/400 & Delphi/400 for PHP . 16 InstallShield 2008 Express . 14 customers have enjoyed access to the final release DB2, AS400 and Series-i products InstallShield 2008 . 11 of Visual Studio 2008 since November 2007, and MicroWay has products to assist with data JBuilder 2008. 17 JGear LiveSource. 17 have saved $000’s by ordering under a licensing replication, real-time XML translation and to make Keystone Training - .NET Complete . 2 scheme known as the “Open Business License”. integration and development faster for Windows LEADTOOLS Document Imaging Suite . 3 Nalpeiron Licensing Service . 24 If you don’t have an MSDN subscription, or are based developers & administrators working with NetAdvantage for .NET + WPF . 6 getting close to renewal time, you should check AS400/Series-i based data. See the Hit Ritmo and PrimalScript 2007 . 8 RadControls for ASP.NET . 8 out the benefits and huge savings on VS2008 and DBmoto products, as well as CodeGear’s new Ritmo/DB2 . 24 MSDN presented on page 7. MicroWay is the Delphi 400 in this edition.
    [Show full text]
  • Delphi Is the Enterprise Solution for Euclid Technology
    Success Story Delphi “Delphi helps Euclid Technology be first to market with Enterprise Solution on Windows Vista. ORGANIZATION ” – Charles Vinal, President and CEO, Euclid Technology Euclid Technology INTRodUCTION such as cross tabs and charting. ClearVantage uses the SQL Server 2005 database, and also ClearVantage from Euclid Technology is runs on SQL Server 2000 and Embarcadero’s an integrated CRM (customer relationship InterBase®. management), ERP (enterprise resource planning), eCommerce and Web Content Euclid has ported the ClearVantage enterprise Management solution built with Delphi. application (more than 480,000 lines of code, AppLICATION ClearVantage is designed for use by trade plus multiple 3rd party components) from Delphi • ClearVantage from Euclid associations and non-profits, and is currently 5 to Delphi 2007. The SOA and web architecture Technology – Integrated used by over 100 organizations ranging in size were ported from Delphi 7 as well, requiring no CRM, ERP, eCommerce and from 15 to 1000 employees. more than a recompile. The application now runs Web Content Management on Vista, has all of the glass features and dialogs, WHAT EUCLID BUILT WITH DELPHI an optional Office 2007 ribbon interface and also runs as it always has on XP. IDE OF CHOIce Features of the ClearVantage solution are • Delphi used by everyone in the organization – from Web Services are primarily wrapped in ISAPI the receptionist to membership management DLLs for ease of integration with other web CHALLENGes to the executive director. What’s more, the development applications. The ISAPI DLLs association or non-profit’s constituents use the connect to the program’s web services to get • Windows Vista enabling of websites that are powered by ClearVantage to data, and then return the data in the selected existing product purchase products, track orders, pay bills and format to the calling application – such as a • Competing against interact with organization.
    [Show full text]
  • Ultimate++ Forum Something with U++
    Subject: Which is the biggest drawback of U++ "unpopuliarity"? Posted by fudadmin on Wed, 07 Dec 2005 20:02:13 GMT View Forum Message <> Reply to Message It would be good to have this poll in "%" but I don't know howto... so, please write your "%"... Are there any other reasons? biggest drawback of U++(total votes: 38) Articles & Reviews3/(8%) Features2/(5%) Lack of documentation33/(87%) Subject: Re: Which is the biggest drawback of U++ "unpopuliarity"? Posted by Garry on Sun, 08 Jan 2006 15:29:55 GMT View Forum Message <> Reply to Message Personally I think the best way to improve "popularity" is what's happening now - this forum. Even without reams of documentation, a good forum is what's needed to help out newbies, like myself. I've followed the progress of UPP for quite some time, but it's only now since the forum got up and running, that I've gotten a bit more confidence in sticking more time and effort into doing something with U++. The original mailing list was far too daunting to try and look for information. Keep up the good work here. Magazine articles would certainly also raise the profile of the project too. It's unusual to see such a powerful and well developed tool have such a low media impact. It's nearly impossible to find any information out there on the web except for download sites which always feature the same description of the project. Anyway, hopefully the download figures are indicating a trend in the right direction.
    [Show full text]