Developing E-Business Applications Using Lotus Enterprise Solution Builder R3.0

Total Page:16

File Type:pdf, Size:1020Kb

Developing E-Business Applications Using Lotus Enterprise Solution Builder R3.0 Developing e-business Applications Using Lotus Enterprise Solution Builder R3.0 Seiji Hamada, Masaya Higuchi, Isao Kadowaki, Makoto Katayama, Shuhichi Murai, Kaori Nanba, Takashi Saitoh, Naomi Zenge International Technical Support Organization www.redbooks.ibm.com SG24-5405-00 SG24-5405-00 International Technical Support Organization Developing e-business Applications Using Lotus Enterprise Solution Builder R3.0 March 2000 Take Note! Before using this information and the product it supports, be sure to read the general information in Appendix B, “Special notices” on page 269. First Edition (March 2000) This edition applies to Lotus Enterprise Solution Builder for Domino Release 3.0. Comments may be addressed to: IBM Corporation, International Technical Support Organization Dept. JLU Building 107-2 3605 Highway 52N Rochester, Minnesota 55901-7829 When you send information to IBM, you grant IBM a non-exclusive right to use or distribute the information in any way it believes appropriate without incurring any obligation to you. © Copyright International Business Machines Corporation 2000. All rights reserved. Note to U.S Government Users – Documentation related to restricted rights – Use, duplication or disclosure is subject to restrictions set forth in GSA ADP Schedule Contract with IBM Corp. Contents Figures....................................................ix Tables....................................................xiii Preface...................................................xv The team that wrote this redbook. ..................................xv Commentswelcome............................................ xvii Chapter 1. Introduction ......................................1 1.1Businessenvironment.....................................1 1.2FeaturesofESB..........................................1 1.3PositioningESB..........................................3 1.3.1 Domino Enterprise Connection Services: Data virtualization.....3 1.3.2LotusEnterpriseIntegrator:Datamovement.................3 1.3.3LotusEnterpriseSolutionBuilder:Completecustomization.....4 1.3.4 Lotus Domino Connectors . ............................4 1.4ESBfunctions...........................................5 1.4.1Runtimeenvironment..................................6 1.4.2Developmentenvironment..............................7 Chapter 2. Architecture and configuration .......................9 2.1ESBarchitecture.........................................9 2.1.1ESBRuntime........................................9 2.1.2ControlbetweentheclientandESBRuntime................9 2.1.3Clientapplicationprogramminginterface...................9 2.1.4 Connection to backend data sources .....................10 2.2 Supported platforms and system requirements. ................14 2.2.1 Supported platforms . .................................14 2.2.2 Windows NT version ESB Runtime. ......................14 2.2.3AIXversionESBRuntime..............................15 2.2.4SolarisversionESBRuntime...........................15 2.2.5 ESB Developer......................................15 2.2.6 Windows version of Client Enabler . ......................16 2.2.7 AIX version of Client Enabler ...........................17 Chapter 3. Getting started with ESB ...........................19 3.1Lesson1:CreatingyourfirstESBprogram.....................19 3.1.1StartingtheESBIDE.................................19 3.1.2 Editing the Initialize procedure ..........................20 3.1.3 Running and stopping the programs ......................21 3.1.4Savingtheprograms.................................21 iii 3.2Lesson2:DefiningaPublishedclass.........................21 3.2.1ClassCreationtool...................................21 3.2.2 Installing a member . .................................23 3.3Lesson3:Creatingaclientprogram..........................23 3.3.1ClientCodeCreationtool..............................23 3.3.2 Running a program. .................................25 3.4Lesson4:CreatingaclientprogramusingNotesLotusScript.......25 3.4.1Creatinganewclientform.............................25 3.4.2Creatingaform(forNotesR5)..........................26 3.4.3Creatingaform(forNotesR4)..........................28 3.4.4Creatinganeventscript...............................30 3.4.5Savingaform.......................................32 3.4.6 Running a program. .................................33 3.5Lesson5:Handlingerrors.................................33 3.5.1Editingaform(forNotesR5)...........................33 3.5.2Editingaform(forNotesR4)...........................34 3.5.3Editinganeventscript................................35 3.5.4 Running a program. .................................36 3.6Lesson6:Obtainingclientinformation........................36 3.6.1Editingaserverprogram..............................36 3.6.2 Running a program. .................................37 3.7Lesson7:CreatingaclientprogramusingVisualBasic...........37 3.7.1Creatingaclientprogram..............................37 3.7.2 Running programs . .................................39 3.8Lesson8:TheLSServerclass..............................39 3.8.1Editingserverprograms...............................39 3.8.2 Running a program. .................................41 Chapter 4. Server application programming.....................43 4.1ESBRuntime...........................................43 4.1.1 ESB Runtime development procedure ....................44 4.2Publishedclass.........................................48 4.2.1ExampleofthePublishedclass.........................49 4.2.2Objectinitializationanddeletion.........................52 4.2.3TransmittingdatafromESBRuntime.....................53 4.2.4Transferringarraydata................................54 4.2.5Transferringuser-defineddata..........................56 4.3SharingdataandresourcesbetweenPublishedclassobjects......58 4.3.1 ESB threads . ......................................58 4.3.2 Global variables and Published classes . ................59 4.3.3LSServerclass......................................61 4.3.4 Global threads and serialization . ......................64 4.3.5SsSharedStorageclass...............................65 iv Developing e-business Applications Using Lotus Enterprise Solution Builder R3.0 4.4 Error handling ..........................................67 4.4.1ONERRORstatementandRESUMEstatement.............67 4.4.2 Runtime error handling when client program ended abnormally . 69 4.5Security...............................................69 4.5.1 Authentication and access control . ......................69 4.5.2 Authentication when using DCOM . ......................71 4.5.3 Authentication when IIOP is used . ......................72 4.5.4 Anonymous authentication . ...........................72 4.5.5 OS authentication. .................................72 4.5.6 Authentication using LDAP . ...........................73 4.5.7 Authentication using a user-defined exit routine . ...........73 4.5.8Accesscontrol......................................76 4.5.9ProgrammableaccesscontrolusingLotusScript.............76 4.5.10 Declarative access control using project environment variables 78 4.5.11 Declarative access control using Notes database ACL . .....80 4.6DesigninganESBapplication..............................81 4.6.1 Programming model for ESB applications. ................81 4.6.2 Synchronizing Notes user and ESB user authentication . .....82 4.6.3DesigningaPublishedclassinadistributedenvironment......83 4.6.4ESBprojectdesignrelatedhints.........................84 4.7Othertopics............................................86 4.7.1Timer.............................................86 4.7.2CallingtheDLLfunction...............................87 4.7.3Obtainingaccesslogsusingtheexitroutine................88 Chapter 5. Client application programming .....................91 5.1Overview..............................................91 5.1.1 Clients supported by ESB. ...........................92 5.1.2Clientapplicationcreationflow..........................93 5.1.3Theserverprogramtobeused..........................94 5.2Notesapplication........................................95 5.2.1Creatingaclientform.................................95 5.2.2CreatingaPublishedclassobject........................97 5.2.3 Calling a procedure . .................................98 5.2.4Displayingtheresult..................................99 5.2.5 Error handling. ......................................99 5.2.6Deletingobjects....................................100 5.2.7Summary.........................................100 5.3Webapplications.......................................102 5.3.1 Creating a client page................................103 5.3.2CreatingaPublishedclassobject.......................113 5.3.3 Calling a procedure . ................................114 5.3.4Displayingtheresults................................115 v 5.3.5 Error handling. .....................................116 5.3.6Deletinganobject...................................116 5.3.7Summary.........................................116 5.4VBapplication.........................................119 5.4.1Creatingaclientscreenview..........................119 5.4.2CreatingaPublishedclassobject.......................121 5.4.3 Calling a procedure . ................................122 5.4.4Displayingtheresult.................................122 5.4.5 Error handling. .....................................122 5.4.6Deletinganobject...................................123 5.4.7Summary.........................................123 5.5Programminghints......................................125 5.5.1
Recommended publications
  • {PDF EPUB} Lotusscript for Visual Basic Programmers by IBM
    Read Ebook {PDF EPUB} Lotusscript for Visual Basic Programmers by IBM Redbooks Sep 01, 1996 · Lotusscript for Visual Basic Programmers Paperback – September 1, 1996 by IBM Redbooks (Author) See all formats and editions Hide other formats and editions This chapter describes the differences and similarities between Visual Basic Release 4 and LotusScript, which comes as part of Lotus Notes Release 4 and other Lotus products, such as Word Pro, Freelance, and Approach. We will compare the syntactical language portions of LotusScript and Visual Basic. Jun 03, 2003 · LotusScript is an object oriented programming language used by Lotus Notes (since version 4.0) and other IBM Lotus Software products. LotusScript is similar to Visual Basic. Developers familiar with one can easily understand the syntax and structure of code in the other. The major differences between the two are in their respective Integrated Development Environments and in the … SG24-4856-00, LotusScript for Visual Basic Programmers: SG24-4862-00, VisualAge DataAtlas Multiplatform Version 2 and Version 2.5: SG24-4864-00, AS/400 and Novell NetWare Interoperation: SG24-4867-00, TME 10 Cookbook for AIX Systems Management and Networking: SG24-4868-00, RS/6000 SP PSSP 2.2 Technical Presentation Oct 24, 2014 · Visual Basic. Dim PSObject as Object Set PSObject = CreateObject("PCOMM.autECLPS") PSObject.SetConnectionByName("B") LotusScript Extension. dim myPSObj as new lsxECLPS("B") An HACL connection name is a single character from A-Z or a-z. Oct 27, 2008 · this are free from IBM. You can download the Redbook(s) you need to get the job done. The books you need are: SG24-5670- 00 COM Together - with Domino SG24-4856 Lotusscript for Visual Basic Programmers These books are a bit of a tutorial on what you can and cannot do, and in what context(s).
    [Show full text]
  • LIST of NOSQL DATABASES [Currently 150]
    Your Ultimate Guide to the Non - Relational Universe! [the best selected nosql link Archive in the web] ...never miss a conceptual article again... News Feed covering all changes here! NoSQL DEFINITION: Next Generation Databases mostly addressing some of the points: being non-relational, distributed, open-source and horizontally scalable. The original intention has been modern web-scale databases. The movement began early 2009 and is growing rapidly. Often more characteristics apply such as: schema-free, easy replication support, simple API, eventually consistent / BASE (not ACID), a huge amount of data and more. So the misleading term "nosql" (the community now translates it mostly with "not only sql") should be seen as an alias to something like the definition above. [based on 7 sources, 14 constructive feedback emails (thanks!) and 1 disliking comment . Agree / Disagree? Tell me so! By the way: this is a strong definition and it is out there here since 2009!] LIST OF NOSQL DATABASES [currently 150] Core NoSQL Systems: [Mostly originated out of a Web 2.0 need] Wide Column Store / Column Families Hadoop / HBase API: Java / any writer, Protocol: any write call, Query Method: MapReduce Java / any exec, Replication: HDFS Replication, Written in: Java, Concurrency: ?, Misc: Links: 3 Books [1, 2, 3] Cassandra massively scalable, partitioned row store, masterless architecture, linear scale performance, no single points of failure, read/write support across multiple data centers & cloud availability zones. API / Query Method: CQL and Thrift, replication: peer-to-peer, written in: Java, Concurrency: tunable consistency, Misc: built-in data compression, MapReduce support, primary/secondary indexes, security features.
    [Show full text]
  • Visustin Features and Versions
    Visustin features and versions v8 v7 v6 v5 v4 v3 Flow chart styles to choose from 2 2 1 1 1 1 UML Activity Diagrams Y Y Y Y Y Flowchart large files (>3000 lines) Y Y Y Flowchart individual procedures Y Y Y Print in high quality Y Y Y Save BMP, GIF, JPG, PNG, EMF, WMF, DOT, HTML, MHT Y Y Y Y Y Y Save TIFF Y Y Y Y Save PDF, single page and printer pages Y Y Y Save PDF, multipage Y Y Save PowerPoint PPT - Y Y Y Y Save Word DOC Y Y Y Y Y Save Word DOCX Y Load images Y Y Y Y Y Metrics Y Y Y Y Y Option: Each statement in its own box Y Y Option: Wrap lines Y Y Option: Configure colors and labels Y Y High-density display support (high DPI) Y Y Pro Edition features Export Visio VSD [Pro] Y Y Y Y Y Y Export Visio VSDX [Pro] Y Editor [Pro] Y Y Y Y Bulk flowcharting [Pro] Y Y Y Y Y Y Bulk flowcharting jobs (.vjb) [Pro] Y Y Y Y Bulk flowcharting individual procedures [Pro] Y Y Y Compatibility Windows version, newest supported 10 8 7 Vista 2003 2003 Office version, newest supported 2016 2013 2010 2007 2007 2003 Language support on next page. ©2016 Aivosto Oy www.aivosto.com Visustin language support v8 v7 v6 v5 v4 v3 ABAP Y Y ActionScript, MXML Y Y ActionScript, semicolon-less Y Ada Y Y Y Y Y Y Assembler: MASM, NASM, IAR/MSP430 Y Y Y Y Y ASP Y Y Y Y Y Y AutoIt Y Batch files Y Y C/C++ Y Y Y Y Y Y C# Y Y Y Y Y Y Clipper Y Y Y Y Y COBOL Y Y Y Y Y Y ColdFusion Y Y Y Y Fortran Y Y Y Y Y Y GW-BASIC Y (Y) HTML Y Java Y Y Y Y Y Y JavaScript Y Y Y Y Y Y JavaScript, semicolon-less Y JCL (MVS) Y Y Y JSP Y Y Y Y Y Y LotusScript Y Y Y Y Y MATLAB Y Y Y Pascal/Delphi Y Y Y Y Y Y Perl Y Y Y Y Y Y PHP Y Y Y Y Y Y PL/I Y Y Y PL/SQL Y Y Y Y Y Y PowerBASIC Y PowerScript (PowerBuilder) Y Y Y Y Y PureBasic Y Y Y Y Y Python Y Y Y Y Y QuickBASIC Y Y Y Y Y Y REALbasic Y Y Y Y Y Rexx Y Y Y RPG Y Ruby Y Y SAS Y Y Y Shell script (bash, csh, tcsh, ksh, sh) Y Y Tcl Y Y T-SQL Y Y Y Y Y Y VBScript Y Y Y (Y) (Y) (Y) Visual Basic, VBA Y Y Y Y Y Y Visual Basic .Net Y Y Y Y Y Y Visual FoxPro Y Y Y Y Y XML Y XSLT Y Y Y Y Languages have been updated to newer syntax from version to version.
    [Show full text]
  • N2pdf Online-Hilfe
    Developer manual © 2003-2018 SoftVision Development GmbH, Fulda, Deutschland n2pdf ...PDF your Notes Version 7.0 SoftVision Development GmbH Kurfürstenstraße 15 36037 Fulda Germany Phone: +49 661 25100-0 Fax: +49 661 25100-25 E-Mail: [email protected] WebSite: http://www.softvision.de n2pdf Online-Hilfe © 2003-2018 SoftVision Development GmbH, Fulda, Deutschland All rights reserved. No parts of this work may be reproduced in any form or by any means - graphic, electronic, or mechanical, including photocopying, recording, taping, or information storage and retrieval systems - without the written permission of the publisher. Products that are referred to in this document may be either trademarks and/or registered trademarks of the respective owners. The publisher and the author make no claim to these trademarks. While every precaution has been taken in the preparation of this document, the publisher and the author assume no responsibility for errors or omissions, or for damages resulting from the use of information contained in this document or from the use of programs and source code that may accompany it. In no event shall the publisher and the author be liable for any loss of profit or any other commercial damage caused or alleged to have been caused directly or indirectly by this document. Printed: November 2020 in Fulda Publisher SoftVision Development GmbH Kurfürstenstraße 15 36037 Fulda Authors Bernd Engelhardt Marcus Fehl I n2pdf Online-Hilfe Table of Contents Part I n2pdf Online Help 1 Part II Introduction 2 1 Intro..d..u..c..t.i.o..n.. ..................................................................................................................... 2 2 Wha..t.'.s.. .n..e..w..?.
    [Show full text]
  • Team Computing with Lotus Notes
    Table of Contents Introducing SmartSuite 97 ................................................. Page 1 The SmartSuite 97 Team ....................................................... 2 Productivity: Getting Work Done Quickly and Easily ............................... 5 Getting Started ............................................................. 6 SmartCenter ........................................................... 6 SuiteStart .............................................................. 7 Lotus Common User Interface ............................................. 7 SmartIcons ............................................................. 7 Lotus InfoBox ........................................................... 8 Day-to-Day Tasks ........................................................... 9 New! 1-2-3 AutoTotal .......................................................... 9 New! Word Processing Switch Kits .............................................. 9 New! Dynamic Print Preview ................................................... 10 SmartMaster and Content SmartMaster Sets ................................ 11 PowerClick Reporting .................................................... 12 Maps ................................................................. 12 User Assistance ........................................................... 13 Lotus Assistants ........................................................ 13 Ask the Expert ......................................................... 13 Help Cards ...........................................................
    [Show full text]
  • SAP/R3 Vs LOTUS NOTES a Description of the Two Products with Analyse of Lotus Notes Connection to SAP/R3
    View metadata, citation and similar papers at core.ac.uk brought to you by CORE provided by Göteborgs universitets publikationer - e-publicering och e-arkiv Göteborg University Hattab Hashim Department of Informatics [email protected] SAP/R3 vs LOTUS NOTES A description of the two products with analyse of Lotus Notes connection to SAP/R3 Abstract This master thesis contains a description of SAP/R3 and Lotus Notes with their major features, components, and functionalities. The paper consists of a concise analyse of the underlying principles such as Process-Orientation and GroupWare that the two products are based on. Further this thesis identifies the differences between SAP/R3 and Lotus Notes from the perspectives of architecture, Business Process Reengineering, implementation, and new technologies. I consider SAP/R3 and Lotus Notes to be complementing rather than competing products. That is why I found out that Notes connection to SAP/R3 is an interesting concept for improved information management. Master of Science Thesis for Instructor: Roy Corneliusson Informatics January 1999 1. INTRODUCTION ......................................................................................................3 1.1 Background ................... ................................... ................................. .................. 3 1.2 Purpose ................................................................................................................... 3 1.3 Hypothesis..............................................................................................................
    [Show full text]
  • Chapter 1 Domino/Notes Programmability Overview
    Java/Domino 4.6, Bob Balaban Chapter 1 Domino/Notes Programmability Overview Believe it or not, this is a big topic all by itself. If we use a broad definition of the word programmabilty, we have to mention LotusScript, cover the Notes Object Interface (NOI), and at least touch on each of the ways in which LotusScript and Java programs can be formulated (agents vs. applications vs. servlets vs. applets vs. CGI), triggered (foreground, HTTP, scheduled, new mail), where each kind of program can run (client, server, both), and how each can be edited and debugged. Were we to cover all these topics in depth, you’d be holding an encyclopedia instead of a book. Still, we can at least categorize, compare, and contrast to give you an overview of which technology you might want to use when and where. The Notes Object Interface (NOI) We'll be talking a lot in this book about NOI: how to use it and what you can do with it. In fact, there are five whole chapters that document every call in the Java version of the API. For now, we'll say only that NOI is a class library, that is, a group of objects that you can program using LotusScript or Java (this book focuses on the Java interface) that manipulate the Domino/Notes groupware development platform. If you are already a Notes/Domino user, you're familiar with such product concepts as servers, databases, views, and documents. NOI provides a programming interface to those objects. As of Domino Release 4.6, those objects are available in Java.
    [Show full text]
  • Tips for Using OLE in Notes by John Thornton (With Barbara Burch)
    Tips for using OLE in Notes by John Thornton (with Barbara Burch) [Editor’s note: This article resides in “Iris Today”, the technical Webzine located on the http://www.notes.net Web site produced by Iris Associates, the developers of Domino and Notes.] From the very beginning, Notes has played well with other applications. Whether using import/export capabilities in R1, or OLE features and NotesFX (Notes Field Exchange) in R3, or ActiveX support and beyond, you've always been able to easily transfer data in-and-out of Notes. In fact, according to former Iris developer Jack Ozzie, "Notes R3 was one of the first, if not the first, OLE container." Since then, Notes has continuously expanded its support of OLE as a powerful design tool. R4 included rich OLE features like in-place editing, drag-and-drop support, NotesLinks, and the extension of NotesFX to include Notes actions (NotesFlow). In addition, you could use Notes as an automation object with LotusScript, or use Notes as an OLE automation controller. Notes R4.6 enhanced its OLE features further by adding ActiveX support. This introduced several OLE properties to control how OLE and OLE custom controls (OCX) load and display in Notes. For example, these properties allow an object to size to the window, size below a field, update from a document instead of from a form, or run in read mode. You can see examples of these features when you use Lotus Word Pro or Microsoft Word as your mail editor in Notes R4.6. In the rest of this article, we'll take a closer look at some of the OLE features in Notes.
    [Show full text]
  • Eztwain Programmer's Guide
    EZTwain Pro User Guide A developer's guide to the EZTwain library version 3.91 Hyperlinks EZTwain Pro page: http://www.eztwain.com/eztwain3.htm Support: http://www.atalasoft.com/products/dotimage/forums Author Spike McLarty for Atalasoft Revised 11/30/2011 Copyright © 2003-2011 by Atalasoft, a Kofax company. All rights reserved. Trademarks EZTwain Pro is a trademark of Atalasoft. Microsoft and Windows are trademarks of Microsoft Corporation. All other trademarks are the property of their respective owners. EZTwain Pro User Guide Table of Contents Table of Contents ............................................................................................. 1 Introduction ..................................................................................................... 3 Overview ......................................................................................................... 4 EZTwain Components .................................................................................... 4 EZTwain Developer Files ................................................................................ 6 How-To Guide .................................................................................................. 8 How To: Use the Code Wizard to get started ..................................................... 8 How To: Use EZTwain from other languages ................................................... 10 How To: Statically Link to EZTwain ................................................................ 11 How To: Redistribute EZTwain with your
    [Show full text]
  • Helping Developers to Help Each Other: a Technique to Facilitate Understanding Among Professional Software Developers
    Helping developers to help each other: a technique to facilitate understanding among professional software developers Gail Ollis Faculty of Science and Technology Bournemouth University August 2019 A thesis submitted in partial fulfilment of the requirements for the degree of Doctor of Philosophy This copy of the thesis has been supplied on condition that anyone who consults it is understood to recognise that its copyright rests with its author and due acknowledgement must always be made of the use of any material contained in, or derived from, this thesis. 2 Abstract Helping developers to help each other: a technique to facilitate understanding among professional software developers Gail Ollis Much of a professional software developer’s work involves amending or extending pre-existing software; creating new software from scratch represents only a small proportion of their time. Even in a brand new project they still need to make sense of work others have done in the emerging software system. This research addresses how developers are helped or hindered in their own daily tasks by the actions of their peers. The literature commonly focuses on a specific aspect of the work such as code comprehension or the processes by which a project is run. This research instead takes a holistic view that considers all the activities involved in the job, but from a single uniting perspective: rather than conventional measures such as coding errors or delivery timescales, the criterion here is how a developer personally experiences their own productivity to be affected by their peers. The research used one-to-one interviews to identify common behaviours that help or hinder fellow software developers.
    [Show full text]
  • Formatting Syntax Formatting Syntax
    2021/01/28 22:10 1/15 Formatting Syntax Formatting Syntax DokuWiki supports some simple markup language, which tries to make the datafiles to be as readable as possible. This page contains all possible syntax you may use when editing the pages. Simply have a look at the source of this page by pressing “Edit this page”. If you want to try something, just use the playground page. The simpler markup is easily accessible via quickbuttons, too. Basic Text Formatting DokuWiki supports bold, italic, underlined and monospaced texts. Of course you can combine all these. DokuWiki supports **bold**, //italic//, __underlined__ and ''monospaced'' texts. Of course you can **__//''combine''//__** all these. superscript You can use subscript and , too. You can use <sub>subscript</sub> and <sup>superscript</sup>, too. You can mark something as deleted as well. You can mark something as <del>deleted</del> as well. Paragraphs are created from blank lines. If you want to force a newline without a paragraph, you can use two backslashes followed by a whitespace or the end of line. This is some text with some linebreaks Note that the two backslashes are only recognized at the end of a line or followed by a whitespace \\this happens without it. This is some text with some linebreaks\\ Note that the two backslashes are only recognized at the end of a line\\ or followed by\\ a whitespace \\this happens without it. You should use forced newlines only if really needed. Links DokuWiki supports multiple ways of creating links. Computer Science Courses - https://courses.cs.purdue.edu/ Last update: 2020/05/01 06:38 wiki:syntax https://courses.cs.purdue.edu/wiki:syntax External External links are recognized automagically: http://www.google.com or simply www.google.com - You can set the link text as well: This Link points to google.
    [Show full text]
  • North September 1994
    Price $2.00 North - -----.- ------...-...--- .......... -~ ...-.~- -.-~ .... -- -.-.......... --....• -- -.----_- ~ ------- ------ ~--- ------- -- -- ~- North Texas PC Users Group, Inc. September 1994 VOLUME 13 • NUMBER 9 Submitting Articles for Publication in North Texas PC NF\I\'S 1. Article Style. Type all copy flush the main menu. Your default fill' North Texas PC NEWS left without justification. This includes transfer protocol will be displayed. J f headings, bylines, and the first line of you want to change your defa u I t Published monthly by members of. North Texas Personal Computer Users Group for their uSe. Members each re­ each paragraph. Place a credit byline protocol, use the (P}rofile option. Once ceive a free subscription; for others, price of the NEWS is (author's name) between the title and you have set the file transfer protocol, $2 per copy. Members are requested to notify the Mem­ bership Director in writing of address changes. Send all first paragraph. Leave a blank line select the (A)rticle option from the editorial correspondence to: Editor, North Texas PC between paragraphs. upload menu. You will be prompted NEWS, 218 VJ!girua Ave., Waxahachie, TX, 75165-2418 for the filename to upload. Enter the Send address changes to: Membership Director, N'lPCUG, P.O. Box 780066, Dallas, TX 75373-0066. 2. Media. All copy exceeding 10 lines filename (don't use drive or path should be submitted via the NTPCUG name). The BBS will prompt you to Publisher Reagan' Andrews (Acting) BBS or on floppy diskette(s) - (5.25" or begin the file . transf~r. (Refer to your (214) 8~8-0699 3.5" .
    [Show full text]