Geometry.Net - the online learning center
Home  - Basic_C - Cobol Programming

e99.com Bookstore
  
Images 
Newsgroups
Page 1     1-20 of 146    1  | 2  | 3  | 4  | 5  | 6  | 7  | 8  | Next 20
A  B  C  D  E  F  G  H  I  J  K  L  M  N  O  P  Q  R  S  T  U  V  W  X  Y  Z  

         Cobol Programming:     more books (100)
  1. Sams Teach Yourself COBOL in 24 Hours by Thane Hubbell, 1998-12-08
  2. Schaum's Outline of Theory and Problems of Programming With Structured Cobol (Schaum's Outlines) by Lawrence R. Newcomer, 1984-01
  3. Cobol: Structured Programming Techniques for Solving Problems by George C. Fowler, 1989-03-03
  4. Cobol Programming by M.K. Roy, D.Ghosh Dastidar, 1989-06-01
  5. COBOL Programming Using the .NET Framework by Ronald D. Reeves, 2002-03-11
  6. Programming In COBOL / 400 by James Cooper, Nancy Stern, et all 2001-11-01
  7. Murach's Mainframe COBOL by Mike Murach, Anne Prince, et all 2004-08-31
  8. COBOL: From Micro to Mainframe (3rd Edition) by Robert T. Grauer, Carol Vasquez Villar, et all 1998-04-04
  9. Java for COBOL Programmers (2nd Edition) (Programming Series) by John C Byrne, Jim Cross, 2002-06
  10. Murach's CICS for the COBOL Programmer by Raul Menendez, Doug Lowe, 2001-01-15
  11. COBOL for Dummies by Arthur Griffith, 1997-10-30
  12. Advanced COBOL for Structured and Object-Oriented Programming, 3rdEdition by Gary DeWard Brown, 1998-11-23
  13. Sams Teach Yourself COBOL in 21 Days (3rd Edition) by Mo Budlong, 1999-10-22
  14. DB2 for the COBOL Programmer, Part 1, 2nd Ed. by Curtis Garvin, Steve Eckols, 1998-01

1. The COBOL Programming Language: Hello World!
Sample COBOL source code for beginners.
http://www.engin.umd.umich.edu/CIS/course.des/cis400/cobol/hworld.html
The COBOL Programming Language
Hello world! Example Program
Click below to go directly to a specific section:
Description
Source Code Sample Run Program Notes
Description
This program demonstrates the text output function of the COBOL programming language by displaying the message "Hello world!".
Source Code
000100 IDENTIFICATION DIVISION. 000200 PROGRAM-ID. HELLOWORLD. 000300 000400* 000500 ENVIRONMENT DIVISION. 000600 CONFIGURATION SECTION. 000700 SOURCE-COMPUTER. RM-COBOL. 000800 OBJECT-COMPUTER. RM-COBOL. 000900 001000 DATA DIVISION. 001100 FILE SECTION. 001200 100000 PROCEDURE DIVISION. 100100 100200 MAIN-LOGIC SECTION. 100300 BEGIN. 100400 DISPLAY " " LINE 1 POSITION 1 ERASE EOS. 100500 DISPLAY "Hello world!" LINE 15 POSITION 10. 100600 STOP RUN. 100700 MAIN-LOGIC-EXIT. 100800 EXIT.
Sample Run
Hello world!
Program Notes
This program was tested and run using the RM/1 COBOL compiler. Last modified: 03:37 PM on 11/09/1996

2. COBOL Programming For The Web / Internet / Intranet
The COBOL Center This page contains information about cobol programming for webapplications , both Internet and Intranet. cobol programming for The Web.
http://www.infogoal.com/cbd/cbdweb.htm
COBOL Programming for The Web
This is the place to find out about COBOL programming for the web, both Internet and Intranet applications. Links: Home Guest Book Sponsors Search ...

3. COBOL Programming - Tutorials, Lectures, Exercises, Examples
Contains COBOL lecture notes, programming exercises with sample solutions, a large number of sample Category Computers Programming Cobol FAQs, Help, and Tutorials......cobol programming site with a full COBOL course as well as lectures, tutorials,programming exercises, and over 50 example COBOL programs.
http://www.csis.ul.ie/cobol/default.htm

COBOL programming - tutorials, lectures, exercises, examples
COBOL programming site with a comprehensive set of COBOL tutorials making a full COBOL course as well as COBOL lecture notes, COBOL programming exercises with sample solutions, COBOL programming exam specifications with model answers, COBOL project specifications, and over 50 example COBOL programs. COBOL programming course (comprehensive COBOL tutorials) Report Writer Tutorials (part of the COBOL course) ... COBOL FAQ To Student Resources Evaluation Form Search CSIS Web Site Selectable Site Contents University of Limerick Home Page CSIS Home Page Courses On Offer ...Computer Systems Degree ...Graduate Diploma in Computing ...Graduate Diploma/MSc in Software Localisation ...MSc in Music Technology ...MSc in Software Reengineering Department Personnel ...CSIS Telephone Directory ...UL Internal Telephone Directory Research ...Research Centres ...Research Projects ...Research Publications ...Technical Reports ...Ph.D Theses ...M.Sc. Theses Student Resources ...Computer Systems Graduated Classes ...Final Year Project suggestions ...Final Year Projects web page ...Lab Schedules ...Module Materials ...Useful Links

4. COBOL Programming - Tutorials, Lectures, Exercises, Examples
The cobol programming Language This program demonstrates the text output function of the cobol programming language by displaying the message "Hello world!". 000100 IDENTIFICATION DIVISION. 000300 000400* 000500 ENVIRONMENT DIVISION.
http://www.csis.ul.ie/COBOL

COBOL programming - tutorials, lectures, exercises, examples
COBOL programming site with a comprehensive set of COBOL tutorials making a full COBOL course as well as COBOL lecture notes, COBOL programming exercises with sample solutions, COBOL programming exam specifications with model answers, COBOL project specifications, and over 50 example COBOL programs. COBOL programming course (comprehensive COBOL tutorials) Report Writer Tutorials (part of the COBOL course) ... COBOL FAQ To Student Resources Evaluation Form Search CSIS Web Site Selectable Site Contents University of Limerick Home Page CSIS Home Page Courses On Offer ...Computer Systems Degree ...Graduate Diploma in Computing ...Graduate Diploma/MSc in Software Localisation ...MSc in Music Technology ...MSc in Software Reengineering Department Personnel ...CSIS Telephone Directory ...UL Internal Telephone Directory Research ...Research Centres ...Research Projects ...Research Publications ...Technical Reports ...Ph.D Theses ...M.Sc. Theses Student Resources ...Computer Systems Graduated Classes ...Final Year Project suggestions ...Final Year Projects web page ...Lab Schedules ...Module Materials ...Useful Links

5. COBOL Programming Course
cobol programming Course. Includes COBOL tutorials, COBOL example programs, COBOLprogramming exercises and COBOL self assessment questions. COBOL tutorial.
http://www.csis.ul.ie/cobol/Course/Default.htm

COBOL Programming Course
Includes COBOL tutorials, COBOL example programs, COBOL programming exercises and COBOL self assessment questions. COBOL tutorial COBOL programming exercise Self assessement questions Introduction to COBOL The structure of COBOL programs (new may 2002) Declaring data in COBOL Basic Procedure Division commands Getting Started These will be self assessment questions COBOL Control structures Selection in COBOL Iteration in COBOL The Calculator and Countdown exercise These will be self assessment questions Simple Sequential Files Introduction to Sequential files Processing Sequential files Reading Sequential Files Counting records in a Sequential File Advanced data declaration Edited Pictures The USAGE clause (new may 2002) Writing records to a Sequential File Inserting records in a Sequential File Advanced Sequential Files COBOL print files and variable-length records Sorting and Merging Basic Procedure Division commands Updating a Sequential File ... Sorting a Sequential File Direct access files

6. Cobol Resources
This site lists extensive links to various COBOL resources and also includes CobolReport.com, CobolUniversity.com, COBOL Web programming, ObjectOriented cobol programming, and leading-edge COBOL books.
http://cobolreport.com/cobolreport/cobolResources/
Search Feedback Contact Us Membership ... Ad Info
Cobol Resources CobolReport.com is proud to host
Bill Klein's FAQs

Object-Oriented Cobol

Gene Webb's Tutorial
Cobol Resources

Now over 120 listings Sponsored White Papers Integrating Legacy into Extended Enterprise Transoft Intelligent Integration Adapters Transoft Component Framework From COBOL to Enterprise JavaBeans with Net Express ...
Vendor News Briefs

Cobol Research
Premier research in
Cobol is ongoing at Amsterdam Free University Here is Cobol grammar. Open-Source Cobol TinyCobol Wanna learn more about eXtreme Programming? Read the IEEE eBook Analysis/Inspect/Restructure Cobol Discussion Groups Cobol Examples, Lectures, and Tutorials ... and Status Maintained by Hector Gonzalez . Last Updated: March 3, 2003 Reproduction of material from any Object-Z pages without written permission is strictly prohibited. The COBOL Report, COBOL University, CobolReport.com and COBOL U

7. COBOL Programming Course
Find a list of advanced cobol programming tools, with product overviews and download instructions. COBOLTOOLS.COM. Advance cobol programming Tools. COBOL Tools Downloaded Here.
http://www.csis.ul.ie/COBOL/Course

COBOL Programming Course
Includes COBOL tutorials, COBOL example programs, COBOL programming exercises and COBOL self assessment questions. COBOL tutorial COBOL programming exercise Self assessement questions Introduction to COBOL The structure of COBOL programs (new may 2002) Declaring data in COBOL Basic Procedure Division commands Getting Started These will be self assessment questions COBOL Control structures Selection in COBOL Iteration in COBOL The Calculator and Countdown exercise These will be self assessment questions Simple Sequential Files Introduction to Sequential files Processing Sequential files Reading Sequential Files Counting records in a Sequential File Advanced data declaration Edited Pictures The USAGE clause (new may 2002) Writing records to a Sequential File Inserting records in a Sequential File Advanced Sequential Files COBOL print files and variable-length records Sorting and Merging Basic Procedure Division commands Updating a Sequential File ... Sorting a Sequential File Direct access files

8. JCL Legacy Systems COBOL VB Delphi Programming & Hire
JCL software COBOL Visual Basic programming, legacy systems, software development for web and ecommerce, hire software Legacy Systems. cobol programming. E-Commerce Web Programs
http://www.cobolprogramming.com/
JCLSOFTWARE - J Computer Logic Golden Valley Software Factory - Herefordshire - England The J Computer Logic site will appear here when the page has finished loading. J Computer Logic J Computer Logic J Computer Logic Legacy Systems
COBOL Programming

Software Development

mail:webinfo@ComputerLogic.co.uk
... Solutions J Computer Logic Ltd
Golden Valley Software Factory, New Mills, Hereford, GB HR2 9QS
Tel:(44) 01981 251359
J COMPUTER LOGIC for
Programming Consultancy, Systems Analysis, Software Design COBOL, Visual Basic, Delphi Programming...
Software Packages - Hire and Rental industry

9. Wiley Higher Education :: Structured COBOL Programming, Ninth Edition Update
The ninth edition Update of Structured cobol programming builds on the strengths of previous editions and includes
http://www.wiley.com/cobol
Shopping Cart My Account Help Contact Us
By Keyword By Title By Author By ISBN Home Engineering and Computer Science Computer Science Programming In COBOL Structured COBOL Programming, Ninth Edition Update
Structured COBOL Programming, Ninth Edition Update
Nancy Stern, Hofstra University
Robert A. Stern, Nassau Community College
ISBN: 0-471-43865-0
This title is available for purchase on Wiley's main website
Description The ninth edition Update of Structured COBOL Programming builds on the strengths of previous editions and includes changes and additions that have significantly improved the text. The dual emphasis on structured program design and syntax is retained, as is the focus on top-down modular programming and documentation. The text is intended for readers with no previous programming or computer experience as well as for those with some background in the computing field. It has been specifically designed for use in college courses on COBOL both in two-year and four-year schools.
Printer-ready version of this page
E-mail a friend about this product
by

10. The COBOL Programming Language
The cobol programming Language. The Cobol Center The Cobol Home Pagefor standards, programming, reengineering, tools, and skills;
http://www.engin.umd.umich.edu/CIS/course.des/cis400/cobol/cobol.html
The COBOL Programming Language
Click below to go directly to a specific section:
History
Significant Language Features Areas of Application Sample Programs ... Acknowledgments
History
Significant Language Features
  • The language that automated business Allows names to be truly connotative - permits both long names (up to 30 characters) and word-connector characters (dashes) Every variable is defined in detail - this includes number of decimal digits and the location of the implied decimal point File records are also described with great detail, as are lines to be output to a printer - ideal for printing accounting reports Offers object, visual programming environments Class Libraries Rapid Application Capabilities Integration with the World Wide Web
Areas of Application
Department of Defense (DoD)
Sample Programs
Related Links

11. Interesting Cobol Links
All Things COBOL Home. Cool Anecdotes About cobol programming. If you are here,then you probably have some interest in the cobol programming language.
http://www.flexus.com/cobol.html
COBOL Information Sources on the Web
The following universal resource locator (URL) addresses can be used to obtain more information on a variety of COBOL subjects. If you find that any of the following links fail or are no longer supported, please notify me by e-mail: info@flexus.com
COBOL Web Links and Other Items of Interest to COBOL Programmers
COBOL en Español!
Visit Andres Montes' COBOL en Español! Web Page for COBOL information in the Spanish Language. COBOL - COMUNIDAD VIRTUAL Visit the COBOL - COMUNIDAD VIRTUAL , an Argentinian COBOL Web Page.
Thane Hubbell's COBOL Web Ring
Visit Thane Hubbell's All Things COBOL Page which has a growing list of COBOL related links. If you are a vendor of COBOL products, you can register on the page to list your URL. This All Things COBOL site is owned by Bob Wolfe Prev 5 Sites Next 5 Sites Previous Site ... All Things COBOL Home
Cool Anecdotes About COBOL Programming
Here are some interesting stories submitted by COBOL programmers that we think you'll enjoy. COBOL Anecdotes
FAQs (Frequently Asked Questions)
The COBOL FAQ
Foundations and Organizations
COBOL Gold Mine COBOL NETwork 2000 web site The COBOL Center Website The Data Management Center ... Computer Task Group
COBOL Homepages
Don Schricker's COBOL 97 Proposed Language Standards Page The COBOL specialist General COBOL Page with various resources Eric Loriaux's System 390 Page ... Bal Oberoi's Page on Mainframe Programming
Grace Hopper Tribute Pages
Grace Hopper; The Woman, the Legend

12. Norcom: COBOL Programming Tools
NORCOM cobol programming Tools. Norcom COBOL Tools. Norcom Home COBOLProgramming Tools. Search Search this site or the Web.
http://www.screenio.com/
NORCOM COBOL Programming Tools Norcom COBOL Tools Norcom Home
COBOL Programming Tools Search
Search this site or the Web Tech Tips
Llinking, object libraries,
static vs. dynamic CALLs,
building/using DLLs and
other good stuff COBOL Links
Stuff of interest to
COBOL guys About Norcom
Those Norcom Guys... Email Us!
support@screenio.com
Norcom develops and markets tools for COBOL programmers. We've been developing COBOL applications since 1974, and have been selling COBOL tools since we released our original ScreenIO screen manager in 1985.
Norcom, 2215 North Jordan Avenue, Juneau, Alaska 99801
(907) 790-3386 (Voice) - (907) 790-2780 (Fax)
GUI ScreenIO
GUI ScreenIO
, a GUI screen manager (graphical user interface) for COBOL, is Norcom's newest and coolest product. Powerful, rich in features, and remarkably easy to use. Read about GUI ScreenIO at CobolReport.com Who says developing a Windows application has to be difficult? Everyone who's tried GUI ScreenIO is, well

13. Cobol Programming Links And Resources
Cobol language programming information. A directory of Cobol resources on the net. Suggestnew link cobol programming links and resources. The Cobol Center.
http://www.vpsource.com/programming-cobol.html
CDs e-store Web design services Programming services Delphi source codes
Search the web :

choose AltaVista Google Lycos Yahoo
vpsource.com - huge categorized links collection for webmasters and programmers (delphi, c++, vb, pascal), web design / programming services, cds e-store, mp3 archive, etc.
document.write("Make it your homepage"); Add to favorites Suggest new link
Cobol programming links and resources
The Cobol Center "This site is dedicated to COBOL and to those with an investment in COBOL. There are many Internet sites that provide information about COBOL. The COBOL Center brings that information together so that you will not need to cruise all over the Web to find it..." Cobol Report The Source for Serious COBOL Developers. "dedicated to keeping pace with the rapid changes in the world of COBOL. From standard COBOL to COBOL 2000 with objects, from MVS to the World Wide Web, our experienced staff keeps you informed and up-to-date on the technology that impacts your business and career..." COBOL Articles and COBOL Whitepapers List of some useful Cobol articles on the net.

14. Home Page
A selection of cobol programming tools for systems and application development.Category Computers Programming Commercial Products and Services......COBOLTOOLS.COM. Advance cobol programming Tools. COBOL Tools Downloaded Here.PowerMail, CobolAid, A cobol programming tool for Acucobol applications.
http://www.coboltools.com/
COBOLTOOLS.COM Advance COBOL Programming Tools. COBOL Tools Downloaded Here. PowerMail COBOL tools for messaging capability to Windows PowerReg ...
Development
A programming service for converting COBOL character-based applications to GUI for execution on the Windows platform (95, 98 or NT) CobolAid A Cobol programming tool for Acucobol applications . L ets you design your project, generate source code for both Windows and Non-Windows applications, compile and run the program, and maintain the project without ever leaving COBOLAid. Cobol Students
Home Page
We want to support Cobol training. Help develop a Cobol students web page . If you're a student, we would like to survey you to determine those needs. Cobol Web Browser Allows you to define interactive programs in Cobol that can be accessed from any Web-browser as the User Interface. The demo version can take your file description in the form of a COBOL copybook and automatically generate a data-entry program from it. Easy Toolkit Solving the problem of making Cobol applications 100% portable.

15. Wiley :: Structured COBOL Programming For The AS400, 2nd Edition
Wiley, Structured cobol programming for the AS400, 2nd Editionby James Cooper, Nancy Stern, Robert A. Stern.
http://www.wiley.com/cda/product/0,,0471418463,00.html
Shopping Cart My Account Help Contact Us
By Keyword By Title By Author By ISBN By ISSN Wiley Computing Computer Science COBOL Structured COBOL Programming for the AS400, 2nd Edition Related Subjects
User Interface Design

Visual Basic

Related Titles
By These Authors
Programming in Cobol/400 (Paperback)

Getting Started with RM/COBOL Seventh Edition (Paperback)

Computing in the Information Age, 2nd Edition (Paperback)

Computing in the Information Age, Study Guide, 2nd Edition (Paperback)
...
Structured COBOL Programming, 9th Edition Update (Paperback)
COBOL zOS JCL (Job Control Language), 5th Edition (E-Book) Gary DeWard Brown Systems Analysis Design , Blackboard, 2nd Edition (Website) Alan Dennis, Barbara Wixom Systems Analysis Design , WebCT, 2nd Edition (Website) Alan Dennis, Barbara Wixom Practical MVS JCL Examples: An Introduction to MVS/ESA (Paperback) James G. Janossy An Introduction to Object COBOL (Paperback) E. Reed Doke, Bill C. Hardgrave Join a Computing Mailing List COBOL Structured COBOL Programming for the AS400, 2nd Edition

16. Wiley :: Structured COBOL Programming, 9th Edition Update
Wiley, Structured cobol programming, 9th EditionUpdate by Nancy Stern, Robert A. Stern.
http://www.wiley.com/cda/product/0,,0471438650,00.html
Shopping Cart My Account Help Contact Us
By Keyword By Title By Author By ISBN By ISSN Wiley Computing Computer Science COBOL Structured COBOL Programming, 9th Edition Update Related Subjects
User Interface Design

Visual Basic

Related Titles
By These Authors
Programming in Cobol/400 (Paperback)

Structured COBOL Programming for the AS400, 2nd Edition (Paperback)

Getting Started with RM/COBOL Seventh Edition (Paperback)

Computing in the Information Age, 2nd Edition (Paperback)
...
Computing in the Information Age, Study Guide, 2nd Edition (Paperback)
COBOL Practical MVS JCL Examples: An Introduction to MVS/ESA (Paperback) James G. Janossy An Introduction to Object COBOL (Paperback) E. Reed Doke, Bill C. Hardgrave VS COBOL II: Highlights and Techniques (Software) James G. Janossy Mastering Cobal: Let the PC Teach You COBOL Programming (Software) Rex Woollard, Andrea Bonner Systems Analysis and Design (Hardcover) Alan Dennis, Barbara Wixom Join a Computing Mailing List COBOL Structured COBOL Programming, 9th Edition Update

17. Cobol Programming Language ( 151 Human Selected Links )
Pages PZ, 4 Columns. cobol programming Language. CBEL Computertechnology ( 151 links, last update 26 April 2002 ) * = new links
http://www.cbel.com/cobol_programming_language/
Pages A-G 2 Columns
Pages H-O
Order by Alphabet Ordered by Theme Order by Popularity 3 Columns Pages P-Z 4 Columns
Cobol Programming Language
CBEL >> Computer technology ( 151 links, last update: 26 April 2002 )
* = new links
[Find on this page]

COBOL Center

COBOL Jobs

COBOL Portal
...
Year 2000 Parable

Commercial Products and Services
Acucorp, Inc.

Advanced Debugging System for CICS
Ajilon Services, Inc. AMS Training Services ... Multi-Edit by American Cybernetics Commercial Products and Services (part 2) Netron Inc. PeerLogic, Inc. Progeni Corporation RainCode ... The Software Revolution, Inc Compilers COBOL Compiler and COBOL Interpretor Directory Cobol For GCC COBOL for Microsoft .NET Framework CobolScript - COBOL85 Scripting Language ... TinyCOBOL Project cript CobolScript CobolScript and unixODBC CobolScript Discussion Group Linux World review of CobolScript OO Cobol Cetus Links: OO COBOL COBOL University Gene Webb's Object Oriented (OO) COBOL OO COBOL Overview ... UML Simplifies Project Notation Personal Pages COBOL Examples, Syntax and Functions COBOL Reference and Example Site Kasten COBOL Page Mainframe Computer Books ... Using Fujitsu PowerCOBOL Publications About Legacy Coding Advanced COBOL for Structured and Object-Oriented Programming Application transformation COBOL Book ... COBOL Portal: COBOL Books Publications (part 2) COBOL Programmers, Face It: Your Favorite Code Is Outdated and L

18. The Programming Pages - The Top COBOL Programming Sites On The Net
The Top cobol programming Sites are Votes. 1, vpsource Huge portalfor webmasters and programmers delphi, c++, vb, pascal, 377. Vote.
http://www.programmingpages.com/index.asp?Language=13

19. The Programming Pages - The Top COBOL Programming Sites On The Net
The Top cobol programming Sites are Votes. 1, vpsource Huge portalfor webmasters and programmers delphi, c++, vb, pascal, 306. Vote.
http://www.programmingpages.com/topsite.asp?r=TheCOBOLCenter&Language=13

20. JosseyBass :: Structured COBOL Programming For The AS400, 2nd Edition
JosseyBass, Structured cobol programming for the AS400, 2ndEdition by James Cooper, Nancy Stern, Robert A. Stern.
http://www.josseybass.com/cda/product/0,,0471418463,00.html
By Keyword By Title By Author By ISBN By ISSN Shopping Cart My Account Help Contact Us ... COBOL Structured COBOL Programming for the AS400, 2nd Edition Related Subjects
User Interface Design

Visual Basic

Related Titles
By These Authors
Programming in Cobol/400 (Paperback)

Getting Started with RM/COBOL Seventh Edition (Paperback)

Computing in the Information Age, 2nd Edition (Paperback)

Computing in the Information Age, Study Guide, 2nd Edition (Paperback)
...
Structured COBOL Programming, 9th Edition Update (Paperback)

COBOL zOS JCL (Job Control Language), 5th Edition (E-Book) Gary DeWard Brown Systems Analysis Design , Blackboard, 2nd Edition (Website) Alan Dennis, Barbara Wixom Systems Analysis Design , WebCT, 2nd Edition (Website) Alan Dennis, Barbara Wixom Practical MVS JCL Examples: An Introduction to MVS/ESA (Paperback) James G. Janossy An Introduction to Object COBOL (Paperback) E. Reed Doke, Bill C. Hardgrave COBOL Structured COBOL Programming for the AS400, 2nd Edition

A  B  C  D  E  F  G  H  I  J  K  L  M  N  O  P  Q  R  S  T  U  V  W  X  Y  Z  

Page 1     1-20 of 146    1  | 2  | 3  | 4  | 5  | 6  | 7  | 8  | Next 20

free hit counter