Geometry.Net - the online learning center
Home  - Basic_S - Smalltalk Programming

e99.com Bookstore
  
Images 
Newsgroups
Page 2     21-40 of 113    Back | 1  | 2  | 3  | 4  | 5  | 6  | 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  

         Smalltalk Programming:     more books (104)
  1. IBM Smalltalk: The Language (The Benjamin/Cummings Series in Object-Oriented Software Engineering) by David N. Smith, 1995-01-26
  2. Discovering Smalltalk (The Benjamin/Cummings Series in Object-Oriented Software Engineering) by Wilf LaLonde, 2008-01-17
  3. Smalltalk With Style by Suzanne Skublics, Edward J. Klimas, et all 2002-05-21
  4. Smalltalk: An Introduction to Application Development Using VisualWorks by Trevor Hopkins, Bernard Horan, 1995-10-23
  5. Kent Beck's Guide to Better Smalltalk: A Sorted Collection (SIGS Reference Library) by Kent Beck, 1998-12-28
  6. On to Smalltalk by Patrick Henry Winston, 1997-09-13
  7. The VisualAge for Smalltalk Primer With CD ROM (SIGS: Advances in Object Technology) by Liwu Li, 1998-09-13
  8. Dolphin Smalltalk Companion (With CD-ROM) by Ted Bracht, 2001-12-21
  9. A Little Smalltalk by Timothy Budd, 1987-01
  10. Advanced Smalltalk by Jonathan Pletzke, 1996-10
  11. Smalltalk by Example: The Developer's Guide by Alec Sharp, 1997-04
  12. Rapid Software Development with Smalltalk (SIGS: Advances in Object Technology) by Mark Lorenz, 1995-06
  13. Smalltalk V: Practice and Experience/Book and Disk by Wilf Lalonde, John Pugh, 1994-01
  14. Design and Implementation of Concurrent Smalltalk (Series in Computer Science) by Yasuhiko Yokote, 1990-09

21. Lowest Prices Smalltalk+programming+computers Computer Books Books
lowest prices smalltalk+programming+computers Computer Books books, Programmingsmalltalk programming computers, Search ISBN.
http://www.book4sure.com/smalltalk-programming-computers-books.html
Programming smalltalk programming computers Search ISBN Title Keyword Author Applications Certification Computer Science Databases ... Romance Books New ! Medicine Books New !
  • Programming Algorithms Objects Architecture Patterns ... Visual c++ Page No:
    Smalltalk, Objects, and Design
    ISBN:
    Author: Chamond Liu
    Compare Prices
    Object-Oriented Implementation of Selected Numerical Methods:An Introduction with Java and Smalltalk ISBN:
    Author: Didier H. Besset
    Compare Prices
    The Design Patterns Smalltalk Companion ISBN:
    Author: Sherman R. Alpert Synopsis
    When the classic book Design Patterns was first published in 1994, the landscape of object-oriented software engineering was forever changed. The 23 patterns contained in the seminal work vastly improved the discipline of object-oriented software design. That book, and the concepts it presented, allowed software professionals to solve specific design problems by reusing successful designs. Design Patterns was a gift to the world of software development, yet Smalltalk programmers could not... Compare Prices Kent Beck's Guide to Better Smalltalk ISBN:
    Author: Kent Beck Synopsis
    In this book, Smalltalk pioneer and guru, Kent Beck, weaves together a collection of his "landmark" articles from leading IT trade journalsThe Smalltalk Report, JOOP, and Object Magazine. Written for Smalltalk programmers, this book is designed to help readers become more effective Smalltalk developers and object technology users. It is filled with insider tips, advanced techniques, and proven strategies on getting the most out of the Smalltalk language. Some specific topics covered are patterns, garbage collection, the use of CRC cards, and much more.
  • 22. CCCC@NJIT Smalltalk Programming Information
    CCCC@NJIT smalltalk programming Information. Download Smalltalk Express; DolphinSmalltalk Object Arts Products; Squeak Smalltalk Mailing List Resources;
    http://www.njit.edu/CCCC/Smalltalk/smalltalk.html
    CCCC@NJIT Smalltalk Programming Information
  • Download Smalltalk Express Dolphin Smalltalk Object Arts Products EIES Smalltalk CIS 105S Newsgroup ... PHOAKS: Frequency for comp.lang.smalltalk
  • 23. The Smalltalk Programming Language
    A description of Smalltalk, the programming language Outback Software,Ltd. - Los Alamos, New Mexico. The smalltalk programming language.
    http://www.outbacksoftware.com/smalltalk/smalltalk.html
    The Smalltalk programming language
    Not the kind of smalltalk you hear at a cocktail party, Smalltalk is the second-oldest object-oriented programming language. The oldest is Simula-67 , developed by Norwegian computer scientists Kristen Nygaard and Ole-Johan Dahl in the early 1960s. Simula was one of the inspirations for Smalltalk, and it also inspired Bjarne Stroustrup to develop C++ . Smalltalk was developed during the early 1970s by a research group at Xerox PARC that included Alan Kay Dan Ingalls , Dave Robson, Adele Goldberg, Dan Ingalls Peter Deutsch and others. In the early 1980s, Xerox decided to commercialize Smalltalk, and released code for Smalltalk-80 (release names indicated the year of release) to various companies on an experimental basis. The companies included Hewlett-Packard, which produced the first true commercial Smalltalk. At about the same time, Byte magazine devoted an entire issue to Smalltalk (August, 1981). The cover illustration for that issue was the origin of the baloon logo that is now associated with many Smalltalk products. Later, Xerox itself formed a subsidiary, ParcPlace, which released a commercial Smalltalk called VisualWorks. ParcPlace no longer exists, but VisualWorks is still alive and well, developed and marketed by

    24. Smalltalk Programming Techniques
    smalltalk programming Techniques. Contents. Object Creation; ImplementingAggregations; Implementing 11 Associations; Implementing 1-n Associations;
    http://www.mk.dmu.ac.uk/~gperkins/Smalltalk/Techniques/
    Smalltalk Programming Techniques
    Contents
  • Object Creation Implementing Aggregations Implementing 1-1 Associations Implementing 1-n Associations ... Simple Dialogues and Menus
  • This page was generated from an original Word document

    25. Smalltalk Programming Techniques
    smalltalk programming Techniques. 7. Simple Dialogues and Menus. More thoroughdescriptions of smalltalk programming with menus and commands are available.
    http://www.mk.dmu.ac.uk/~gperkins/Smalltalk/Techniques/dialog.htm
    Smalltalk Programming Techniques
    7. Simple Dialogues and Menus
    Scrolling text input/output through the transcript is rather tedious, but full windows interfaces are a little beyond the scope of this course. We can create simple push-button windows using the DialogView class methods as follows: accType := DialogView choose: 'Account type?' labels: #('Current' 'Savings') values: #( 1 2 ) default: 0. Or we can display a standard "warning" window which merely waits for the user to press the "OK" button: DialogView warn: 'transaction cancelled' Multiple entry dialogues can be run which prompt for several strings of input: inVals := DialogView request: 'Name' and: 'Address'. newName := inVals at: 1. newAddr := inVals at: 2. Note that the user responses are returned in an array of strings. (Actually, a single-field request will return a single string rather than a one-element array). The class modifications in the SUPPORT area for VWLITE contain request methods for up to four inputs, though you should be able to see how to extend "request:and:" to as many fields as you like.

    26. Literate Smalltalk Programming Using Hypertext
    21, No. 2). pp. 138145 Literate smalltalk programming Using Hypertext. Index Terms—Programmingenvironments, literate programming, hypertext, Smalltalk.
    http://www.computer.org/tse/ts1995/e0138abs.htm
    February 1995 (Vol. 21, No. 2) p p. 138-145 Literate Smalltalk Programming Using Hypertext Kasper  Østerbye Abstract—The problem examined in this paper is: How and to what extent can hypertext support literate programming in Smalltalk? In order to examine this question we have created a hypertext system which allows us to write Smalltalk code and documentation, and to link code and documentation freely. The literate programs created in hypertext differ from those created with traditional literate programming tools. The main difference is that hypertext-based program exposition promotes description of program dependencies and is perhaps less suited for the detailed exposition of algorithms. Index Terms—Programming environments, literate programming, hypertext, Smalltalk. The full text of IEEE Transactions on Software Engineering is available to members of the IEEE Computer Society who have an online subscription and a web account

    27. Recording User Actions In A Smalltalk Programming Environment
    Systems August 01 05, 1999 Santa Barbara, California, p. 280 RecordingUser Actions in a smalltalk programming Environment. PDF.
    http://www.computer.org/proceedings/tools/0278/02780280abs.htm
    Technology of Object-Oriented Languages and Systems August 01 - 05, 1999 Santa Barbara, California p. 280 Recording User Actions in a Smalltalk Programming Environment Malcolm Macgregor, Pete Thomas, Mark Woodman Open University ... AESOP (An Electronic Student Observatory Project) is a system for recording, replaying and analysing user actions in LearningWorks, a Smalltalk programming environment. The project aims (i) to inform educators how best to effect object technology transfer by improving their teaching, (ii) to provide an apparatus for identifying problems neophytes experience while learning to program and (iii) to provide empirical evidence for improving the design of the programming environment. Initially AESOP is being targeted on a large-scale distance learning course enrolling 5,000 mature students per year. This paper describes the project and gives a flavour of the research questions of how neophytes learn programming concepts, in particular object concepts as exemplified by Smalltalk. The implementation of a selection of tools is described and sample data is also explained. Current project status is reviewed and many issues are raised concerning what sort of data to collect. The full text of tools is available to members of the IEEE Computer Society who have an online subscription and an web account

    28. Smalltalk Programming Tutorial, And Information For Students On The OU M206 Comp
    A tutorial in using the programming language Smalltalk. Also Smalltalk books, student software and books, hints and tips, links.
    http://members.aol.com/M206ou/m206/index.htm
    s="na";c="na";j="na";f=""+escape(document.referrer) Free Smalltalk Programming Tutorials. Downloadable M206 exams. Hints, tips, error information. Ideal for students of the OU ( Open University ) course " M206 Computing an Object - oriented approach" and North Carolina State University course CSC517.
    Smalltalk Programming Tutorial, M206 and the OU
    More Tutorials
    C Programming Tutorial
    T170,T171 and TT180 Search this site Home Tutorials
    1. Starting Smalltalk, and Terminology
    2. Precedence Rules 3. Classes - Strings 4. Class Browser ... 39. OpenGUI Information
    Smalltalk Books
    Sites Download Smalltalk Coloured code ...
    at special prices
    After communication with a student just completing course CSC517 at NCSU. ( North Carolina State University ) who stated 'I wish I found this site earlier in the semester. So welcome on board CSC517 students. I hope you find the site useful. Home This page
    Books
    On to Smalltalk by Patrick Henry Winston Discovering Smalltalk by Wilf LaLonde The Smalltalk Developer's Guide to VisualWorks Squeak Object-Oriented Design with Multimedia Applications ... Smalltalk Books A description of Smalltalk books, that can be purchased on-line .Updated 20 Jun 01 Tutorial 1. Integers

    29. Help-Site: Smalltalk Programming Computer Help
    smalltalk programming. Search.
    http://help-site.com/c.m/prog/lang/smalltalk/
    [Main Index] -> [Programming] -> [Programming Languages] [Directory] [Forums] Smalltalk Programming
    Search
    options Smalltalk, Objects, and Design Other Smalltalk Programming books to buy at Amazon. If you can't find the help you are looking for on the main site you can now visit the new Help-Site Forums to ask for help. Save 10% on high-quality Crucial RAM. Order online at Crucial's factory-direct Web site. Crucial Technology, The Memory Experts. [New Links]
    [Add Url]
    [About]

    30. 6.13 -Smalltalk Programming On Data ADAMO
    Next Prev Up Top Contents 6. ADAMO data in VisualWorks. 6.13smalltalk programming on data ADAMO. Till now, the possibility
    http://ipt.web.cern.ch/IPT/Papers/AimarThesis/EngThesis_60.html
    [Next] [Prev] [Up] [Top] ... [Contents] 6. ADAMO data in VisualWorks
    6.13 Smalltalk programming on data ADAMO
    Till now, the possibility has been shown to execute the ADAMO data edit through the interface developed in VisualWorks. The access to ADAMO data and their mapping in Smalltalk objects are completely independent from the browser development. For this reason we then performed a verification of the possibility of using Smalltalk as a data analysis language for an experiment of particle physics. To test the usability of Smalltalk for particle physics research, the code was developed to execute, without need of interface, the same calls of the browser for the ADAMO initialization, for the GAF opening and for the data loading. After the data reading, the Smalltalk code was developed to perform data handling similar to the one executed from the FORTRAN code distributed as a sample with the ADAMO system. It has been possible simply by developing the Smalltalk code in a single file and, afterwards, dictating to VisualWorks to "load in" the file and to execute it by interpretation. The different efficiency of the two implementations of the relational attributes was tested in this phase. The implementation by means of the identifier implies that for each edit of the relational attribute the object identified by that certain ID is sought in the collection. If the relational attribute is implemented with an OO approach, with the pointer to the object in relationship, such a search would not be necessary, as the relational attribute would contain the pointer to the Smalltalk row object

    31. Bot-Kit For Dolphin Smalltalk And LEGO MindStorms
    Powerful, easy to use, Dolphin smalltalk programming environment and robot control system, to use with LEGO MindStorms Robotics Invention System.
    http://www.object-arts.com/Bower/Bot-Kit/
    Bot-Kit is a robot control system for use with the
    LEGO MindStorms TM or Cybermaster TM
    and the powerful, but easy to use,
    Dolphin TM Smalltalk programming environment. Click here to find out more LEGO MindStorms WebRing
    Site Owned By: Andy Bower
    Control Panel
    Skip Prev
    Prev Next Skip Next ... Next 5

    32. New Zone Books - Search Results For Smalltalk Programming
    DSS Books. Home Bookstore, smalltalk programming Books. SearchAll Products.
    http://www.spelts.com/bookstore/programming/smalltalk.php
    Search
    Best Sellers
    Art Books Audio Cassettes Audio CD's ... Links
    Search Results for Smalltalk Programming
    Dolphin Smalltalk Companion (With CD-ROM)
    Ted Bracht
    21 December, 2001
    The Design Patterns Smalltalk Companion (Software Patterns Series)

    Sherman R. Alpert, Kyle Brown, Bobby Woolf
    10 February, 1998
    Smalltalk Best Practice Patterns

    Kent Beck
    03 October, 1996
    Application Development With Visualage for Smalltalk and Mqseries
    IBM Redbooks May, 1997 Smalltalk With Style Suzanne Skublics, Edward J. Klimas, David A. Thomas, John Pugh 21 May, 2002 Smalltalk 80: The Language Adele Goldberg, David Robson 01 January, 1989 Didier H. Besset October, 2000 Object-Oriented Programming With C++ and Smalltalk Caleb Drake 30 October, 1997 Smalltalk-80: The Language and its Implementation Adele Goldberg, David Robson Object-Oriented Programming With Smalltalk/V Michele Marchesi February, 1995

    33. NEW SMALLTALK PROGRAMMING ENVIRONMENT AVAILABLE FREE ON THE WEB
    New smalltalk programming Environment Free on the Web Smalltalk Express Designedto Meet Demand for EntryLevel Object-Oriented Programming Environment.
    http://www.parcplace.com/about/press/09-11-96.htm
    New Smalltalk Programming Environment Free on the Web
    Smalltalk Express Designed to Meet Demand for Entry-Level Object-Oriented Programming Environment
    Anaheim, CA, September 10, 1996 - ObjectShare, a division of leading client/server/web tools vendor ParcPlace-Digitalk (NASDAQ: PARQ), today announced the free availability of a new entry-level object-oriented programming environment. The new product, called Smalltalk Express, is designed to introduce developers to the power of object-oriented programming and the Smalltalk language. Coming on the heels of the Company's very successful introduction of its Parts for Java visual toolkit, Smalltalk Express promises to make ObjectShare a primary source for entry into the object-oriented community. "Those of us who know and love this language have always felt bad that there wasn't a commercial grade Smalltalk freely available for self-motivated developers to learn and use," noted Ward Cunningham of Cunningham & Cunningham. "ParcPlace-Digitalk has done us, the developer community, and probably even themselves a tremendous service by assembling this market proven combination of products and giving it away on the net." Smalltalk Express is based on the 16-bit version of Smalltalk/V Windows 2.0 and the WindowBuilder Pro 1.01 graphic user interface development system. It is a complete Smalltalk development system for use on Windows 95 or Windows 3.1, and contains all the documentation, sample programs, and step-by-step tutorials necessary for developers to build working client/server applications.

    34. Smalltalk Literature - Smalltalk Programming For Windows
    smalltalk programming for Windows. Dan Shafer.
    http://www.phaidros.com/DIGITALIS/englisch/lit/lit00028.htm
    Smalltalk Programming for Windows
    Dan Shafer

    35. Smalltalk Literature - IBM Smalltalk Programming For Windows And OS/2
    IBM smalltalk programming for Windows and OS/2. Dan Shafer, Scott Herndon.
    http://www.phaidros.com/DIGITALIS/englisch/lit/lit00014.htm
    IBM Smalltalk Programming for Windows and OS/2
    Dan Shafer, Scott Herndon

    36. Comparison Shop - Comparison Shop For Smalltalk Programming For Windows
    smalltalk programming for Windows. Author Dan Shafer. Publisher Crown PublishingGroup, Incorporated. ISBN 1559582375. Format Paperback. List Price $39.95.
    http://osdn.pricegrabber.com/search_getprod.php/isbn=1559582375
    ABOUT OSDN MY OSDN NEWSLETTERS SHOP ... ADVERTISE
    C O M P A R I S O N S H O P Prices Home Books Computers Electronics ... Books
    All Products Books Computers Electronics Software Video Games Books for

    Smalltalk Programming for Windows
    Author:
    Dan Shafer Publisher: Crown Publishing Group ISBN: Format: Paperback List Price:
    Compare Prices
    Full Book and Author Details Synopsis: Not Available
    Price Comparisons Seller Price + Approx. Tax + Approx. Shipping* Availability Seller Rating
    Merchant Info

    To calculate "YOUR" shipping, tax, and BottomLinePrice Enter Zip Code:
    By entering your zip code above we will calculate and display applicable sales tax, shipping and your total price ("BottomLinePrice") based on your location. Show only merchants who ship internationally See Site
    75 Reviews
    Shipping costs are based on an estimate of UPS ground or equivalent carrier within the US. See an error? Report a pricing error on the OSDN About OSDN Privacy Statement Advertise Self Serve Ad System ... Contact Us Certain supplemental information provided by

    37. Compare Prices On Programming Languages / Smalltalk Books - Comparison Shop
    Pictures On Pictures Off. Programming Languages / Smalltalk Sorted by Title (Resortby Sorted by Popularity). IBM smalltalk programming for Windows and OS2.
    http://osdn.pricegrabber.com/search_attrib_books.php/bkcat2=71576
    ABOUT OSDN MY OSDN NEWSLETTERS SHOP ... ADVERTISE
    C O M P A R I S O N S H O P Prices Home Books Computers Electronics ... Books
    All Products Books Computers Electronics Software Video Games Books for Pictures On Pictures Off

    Programming Languages / Smalltalk: Sorted by Title
    (Resort by: Popularity
    Results 1 - 18 of 18
    Home
    Books Computers > Programming Languages / Smalltalk Design Patterns Smalltalk Companion Author: Sherman Alpert
    Developing Visual Programming Applications Using Smalltalk
    Author: Michael Linderman
    Discovering Smalltalk
    Author: Wilf R. Lalonde
    Distributed Smalltalk Survival Guide

    Subtitle:
    Advice for Effectively Managing Large-Scale Smalltalk Projects Author: Terry Montlick
    Dolphin Smalltalk Companion
    Author: Ted Bracht IBM Smalltalk Subtitle: The Language Author: David Smith IBM Smalltalk Programming for Windows and OS-2 Author: Dan Shafer Introduction To Programming Using SML Author: Michael Hansen Kent Beck's Guide to Better Smalltalk Author: Kent Beck Object-Oriented Programming with C++ and Smalltalk Author: Caleb Drake On to Smalltalk Author: Patrick H. Winston

    38. Chapter 1: Introduction To IBM Smalltalk Programming
    Chapter 1 Introduction to IBM smalltalk programming.
    http://www.cs.ucf.edu/courses/cop4331/hughes/Summer1998/Tutorials/Smalltalk/chap
    Chapter 1: Introduction to IBM Smalltalk Programming
    Return to [ Table of Contents Main Page Previous Chapter Next Chapter
    Smalltalk Development Enviroment
    IBM Smalltalk is a complete development enviroment for implementing object-oriented applications. Smalltalk is a pure object-oriented model which means that everything in the enviroment is treated as an object. Among object-oriented languages, Smalltalk is the most consistent with handling the definitions and properties of the object-oriented paradigm as described in the "Object-Oriented Paradigm" section. Smalltalk is more than just a language, it is an extensive program development enviroment with over two hundred classes and several thousand methods . Smalltalk consists of the following components:
    • A language : IBM Smalltalk supports the Smalltalk language. Because everything in Smalltalk is an object, the language is lean. An object model from which objects are defined: The object model defines how objects behave. The object model supports inheritance, class and instance behavior, dynamic binding, messaging, and garbage collection. A set of reusable classes : Smalltalk has abundant of classes that can be reused in any Smalltalk program. These classes provide the basic functions in Smalltalk plus additional support for cross-platform portability, including protable graphical user interfaces, and support for the definition and management of classes.

    39. Web Directory For The Smalltalk Programming Language
    The smalltalk programming language. The ST/X implementation. Related topics
    http://tronche.com/web-directory/science-and-technology/computer/languages/small
    The Smalltalk programming language
    • The ST/X implementation.
    Related topics:

    40. Minisoft India : Smalltalk Programming Environment
    Smalltalk. We feel that the Smalltalk platform will lead to a greater focus onthe solution to the problem rather than on the tools used in its solution.
    http://www.minisoftindia.com/technology/smalltalk.html
    Smalltalk
    All your ideas clearly in a few words
    Minisoft is moving towards the object oriented and highly productive environment of Smalltalk in an effort to maximise the potential of the Development team. We feel that the Smalltalk platform will lead to a greater focus on the solution to the problem rather than on the tools used in its solution Minisoft accepts customised off-shore and on-site software development assignments in Smalltalk. We intend to leverage our experience of over 7 years in Object-oriented development methodologies in developing in the Smalltalk environment. Please contact for smalltalk specific assignments. We also undertake long term maintenance contracts.

    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 2     21-40 of 113    Back | 1  | 2  | 3  | 4  | 5  | 6  | Next 20

    free hit counter