Rich Text Box

Total Page:16

File Type:pdf, Size:1020Kb

Rich Text Box Rich Text Box Introduction Using Rich Text Box you can create Notepad or WordPad. Means in rich text box you can give special effects like change font style, size, color, put bullets and change alignments of text. Means using rich text box you can create text file. You can also open and modify existing text file in it. Adding an Rich Text Format Box to a Form So you’ve decided to make the move from text boxes to rich text boxes, and you turn to the toolbox. Wait a minute-where’s the Rich Text Box tool in the toolbox? The answer is that it’s not there until you add it. To add a rich text box to a form, follow these steps: ● Select the Project Ø Components menu item. ● Click the Controls tab in the Components box. ● Find and select the Microsoft Rich Textbox Control box, and click on OK to close the Components box. ● The rich text control now appears in the toolbox and you can use it to add rich text boxes to your forms. R What these steps really accomplish is to add the Richtx32.ocx file to your program, and you’ll need to distribute that file with your program if you use rich text boxes. Accessing Text In a Rich Text Box To access text in a rich text box, you can use two properties: Text and TextRTF. As their names imply, Text holds the text in a rich text box in plain text format (like a text box), and TextRTF holds the text in Rich Text Format. Here’s an example where we read the text in RichTextBox1 without any RTF codes and display that text as plain text in RichTextBox2 : Private Sub Command1_Click () RichTextBox2.Text = RichTextBox1.Text End Sub Here’s the same operation where we transfer the text including all RTF codes that is, here we’re transferring rich text from one rich text box to another: 123 Private Sub Command1_Click () RichTextBox2.TextRTF = RichTextBox1.TextRTF End Sub Selecting Text in Rich Text Boxes Rich text boxes support the SelText property just like standard text boxes. However, SelText only works with plain text. You can set the start and end of the plain-text selection with the SelStart and SelLength properties. If you want to work with RTF-selected text, on the other hand, use the SelRTF property. For example, here’s how we select the first 10 characters in RichTextBox1 and transfer them to RichTextBox2 using SelRTF : Private Sub Command1_Click() RichTextBox1.SelStart = 0 RichTextBox1.SelLength = 10 RichTextBox2.TextRTF = RichTextBox1.SelRTF End Sub The Span Method Besides the SelRTF property, you can use the Span() method to select text based on a set of characters : RichTextBox.Span characterset, [forward[,negate]] The characterset parameter is a string that specifies the set of characters to look for. The forward parameter determines which direction the insertion point moves. The negate parameter specifies whether the characters in characterset define the set of target characters or are excluded form the set of target characters. You use Span() to extend a selection from the current insertion point based on a set of specified characters. This method searches the text in the rich text box (forwards or backwards as you’ve specified) and extends the text selection to include (or exclude, if you’ve so specified) as many of the characters you’ve specified in the character set that it can find. For example, to select the text from the current insertion point to the end of the sentence, use Span(“.?!”), which works for sentences ending in periods, question marks, or exclamation marks. Here’s an example where we use Span() to find the word “underlined” and underline it: Private Sub Command1_Click() RichTextBox1.Text = “This rich text supports underlined, bold, italic, and strikethru text.” RichTexBox1.SelStart = RichTextBox1.Find (“underlined”) RichTextBox1.Span (“underlined”) RichTextBox1.SelUnderline = True End Sub 124 Using Bold, Italic, Underline and Strikethru in RTF To make text bold, italic, underline, and strikethru, you see the SelBold, SelItalic, SelUnderline, and SelStrikethru properties. These properties work on selected RTF text only, so you have to select the text whose format you want to change. To make this clearer, here’s an example where we set the underline, bold, italic, and strikethru properties of text. We start by placing some text into a rich text box: Private Sub Command1_Click() RichTextBox1.Text = “This rich text box supports underlined, bold, italic and strikethru text.” … Next, we’ll underline the word “underlined” in the text. We start by finding that word using the rich text box Find() method : Private Sub Command1_Click() RichTextBox1.Text = “This rich text box supports underlined, bold, italic and strikethru text.” RichTextBox1.SelStart=RichTextBox1.Find(“underlined”) … We then use Span() to select the word “underlined” : Private Sub Command1_Click() RichTextBox1.Text = “This rich text box supports underlined, bolditalic, and strikethru text.” RichTextBox1.SelStart=RichTextBox1.Find(“underlined”) RichTextBox1.Span (“underlined”) … Finally we underline the selected text by setting the rich text box’s SelUnderline property to True : Private Sub Command1_Click() RichTextBox1.Text = “This rich text box supports underlined, bold, italic and strikethru text.” RichTextBox1.SelStart=RichTextBox1.Find(“underlined”) RichTextBox1.Span (“underlined”) RichTextBox1.SelUnderline = True … And we can do the same to demonstrate bold, italic, and strikethru text : Private Sub Command1_Click() RichTextBox1.Text = “This rich text box supports underlined, bold, italic and strikethru text.” RichTextBox1.SelStart=RichTextBox1.Find(“underlined”) RichTextBox1.Span (“underlined”) RichTextBox1.SelStart = 0 125 RichTextBox1.SelStart = RichTextBox1.Find(“bold”) RichTextBox1.Span (“bold”) RichTextBox1.SelBold = True RichTextBox1.SelStart = 0 RichTextBox1.SelStart =RichTextBox1.Find(“italic”) RichTextBox1.Span (“italic”) RichTextBox1.SelItalic = True RichTextBox1.SelStart = 0 RichTextBox1.SelStart=RichTextBox1.Find(“strikethru”) RichTextBox1.Span (“strikethru”) RichTextBox1.SelStrikeThru = True End Sub Running this program yields the results you see as follows. Indenting Text In Rich Text Boxes One of the aspects of word processor that users have been used to is the ability to indent text, and rich text boxes (which are designed to be RTF word processors in control) have this capability. To indent paragraph-by-paragraph, you use these properties (you set them to numeric values to indicate the indentation amount, using the measurement units of the underlying form, which is usually twips): ● SelIndent – Indents the first line of the paragraph ● SelHengingIndent – Indents all other lines of paragraph with respect to SelIndent ● SelRightIndent – Sets the right indentation of the paragraph To use these properties on a paragraph of text, you either select the paragraph (using SelStart and SelLength, or Span()), or simply place the insertion point in the paragraph ( you can move the insertion point under program control with the UpTo() method). When the user places the insertion point in a paragraph of text and clicks a button, command1, we can indent the paragraph 500 twips. We can then outdent all lines after the first by 250 twips with respect to the overall 500-twip indentation (which means that all lines after the first will be indented 250 twips from the left margin) and set the right indent to 100 twips : 126 Private Sub Command1_Click() RichTextBox1.Text = “This rich text box displays very good example of indentation from both side” RichTextBox1.SelIndent = 500 RichTextBox1.SelHangingIndent = 250 RichTextBox1.SelRightIndent = 100 End Sub Now we’re indenting individual paragraphs in rich text controls. Besides working paragraph-by-paragraph, you can set the right margin for the whole rich text at once with the RightMargin property. Just assign this property the new value you want for the right margin, and you’re set. Setting Fonts and Font Sizes in RTF To set a selection’s font, you just set the SelFontName to the new font name (for example, Arial or Times New Roman). To set a selection’s font size, you just set the SelFontSize property. That’s all it takes. Here’s an example. In this case, we’ll display the text “This rich text box supports fonts like Arial and Courier in different sizes.” In a rich text box, and format the words “Arial” and “Courier” in those fonts, and in different font sizes. We start by placing that text in a rich text box : Private Sub Command1_Click () RichTextBox1.Text = “This rich text box supports fonts like Arial and Courier in different sizes.” … Next, we select the word “Arial” : Private Sub Command1_Click () RichTextBox1.Text = “This rich text box supports fonts like Arial and Courier in different sizes.” 127 RichTextBox1.SelStart = RichTextBox1.Find (“Arial “ ) RichTextBox1.Span (“Arial”) … Then we display that word in Arial font, with a 24-point size: Private Sub Command1_Click () RichTextBox1.Text = “This rich text box supports fonts like Arial and Courier in different sizes.” RichTextBox1.SelStart = RichTextBox1.Find (“Arial “ ) RichTextBox1.Span (“Arial”) RichTextBox1.SelFontSize = 24 … We do the same for “Courier”, displaying it in 18-point size : Private Sub Command1_Click() RichTextBox1.Text = “This rich text box supports fonts like Arial and Courier New in different sizes.” RichTextBox1.SelStart = RichTextBox1.Find(“Arial “) RichTextBox1.Span (“Arial”) RichTextBox1.SelFontSize = 15 RichTextBox1.SelStart = 0 RichTextBox1.SelStart = RichTextBox1.Find(“Courier New “) RichTextBox1.Span (“Courier New”) RichTextBox1.SelFontName = “Courier New “ RichTextBox1.SelFontSize = 18 End Sub Being able to set the font and font size of individual text selections instead of working with all the text at once in a rich text box is a very powerful capability. Output of the above code will be as shown below Using Bullets in RTF Rich text boxes support bullets, those black dots that appear in lists of items that you want to set off in 128 text. Putting a bullet in front of each item gives the list a snappy appearance and helps the reader assimilate the information quickly. To set bullets, you use the SetBullet and BulletIndent properties.
Recommended publications
  • Visual Basic INTRODUCTION : - Visual Basic Is a Windows Programming Language That Has Developed at Microsoft Corporation
    Visual Basic INTRODUCTION : - Visual Basic is a Windows Programming Language that has developed at Microsoft Corporation. Visual Basic is a powerful programming language to develop sophisticated windows programs very quickly. VB is a one of the RAD (Rapid application development) tools as it enables the programmer to develop application very easily and very quickly. Visual Basic application is very popular as front end to many client/server database systems like SQL/Server, Oracle etc. VISUALBASIC APPLICATION DEVELOPMENT CYCLE:- Decide what you want the computer to do. Decide how you want your program to look on the screen. (The appearance of your program is called the user interface). Draw your user interface by using common component, such as windows, menus and command buttons. (The components of user interface are called objects or controls). Define the name, color, size and appearance of each user interface object. (An object’s characteristics are called properties.) Write instruction in BASIC to make each part of your program do something. (BASIC instructions are called commands). Run your program to see whether it works. Fix any errors (or bugs) in your program. User Interface is what someone sees when program is running. Every program has a user interface in one form or another. A visual Basic user interface consists of forms and objects. A form is nothings more than a window that appears on the screen. Objects are items that appear on a form, such as command button, scroll bar, option button or check box. An object enables the user to give commands to program. Any time a user press a key, moves the mouse, or clicks the mouse button, such an action is called an event.
    [Show full text]
  • Multiview Terminal Emulator User Guide © 2008 by Futuresoft, Inc
    MultiView Terminal Emulator User Guide © 2008 by FutureSoft, Inc. All rights reserved. MultiView User Guide This manual, and the software described in it, is furnished under a license agreement. Information in this document is subject to change without notice and does not represent a commitment on the part of FutureSoft. FutureSoft assumes no responsibility or liability for any errors or inaccuracies that may appear in this manual. No part of this manual may be reproduced or transmitted in any form or by any means, electronic or mechanical, including photocopying and recording, or other wise, without the prior, written per- mission of FutureSoft, Inc. MultiView 2007, MultiView 2000 Server Edition, MultiView 2008 Server Edition, MultiView Catalyst, MultiView License Manager, MultiView DeskTop and Host Support Server are tradenames of FutureSoft, Inc. Edition 1 May 2008 Document #E-MVUG-MV2007-P053108 Last Updated: 102308 FutureSoft, Inc. 12012 Wickchester Lane, Suite 600 Houston, Texas 77079 USA Printed in the USA 1.800.989.8908 [email protected] http://www.futuresoft.com Table of Contents Contents Chapter 1 Introduction Introduction to MultiView 2007 ....................................................................................... 2 Minimum Requirements .................................................................................................. 2 Contacting FutureSoft Support ........................................................................................ 3 Chapter 2 Installation and Configuration Installing MultiView
    [Show full text]
  • Advanced Visual Basic
    Advanced Visual Basic Course Designer and Acquisition Editor Centre for Information Technology and Engineering Manonmaniam Sundaranar University Tirunelveli Client / Server Lecture - 1 Client /Server Objectives In this lecture you will learn the following About Client About Server About Client / Server computing Client / Server Model Centre for Information Technology and Engineering, Manonmaniam Sundaranar University 1 Advanced Visual Basic Lecture Unit - 1 1.1 Snap Shot 1.2 Client 1.3 Server 1.4 Client/ Server Computing 1.5 Client/Server Model 1.6 Short Summary 1.7 Brain Storm Lab unit 1 - ( 2 Real Time Hrs ) 2 Centre for Information Technology and Engineering, Manonmaniam Sundaranar University Client / Server 1.1 Snap Shot Any time two computers are involved in the mutual performance of executing an application, with each performing a different function, you are undoubtedly looking at a client/server application. Many definitions of client/server are used. A definition of client/server application is an application that has a client interface and that accesses data on a remote server. The work is distributed between the client system and the remote server system, based on the capabilities of the client and the system and the remote server system, based on the capabilities of the client and server software applications. Client/server systems usually are efficient because network traffic is minimized and each portion of the application is optimized for a particular function. 1.2 Client A client may be either a device or a user on a network that takes advantages of the services offered by a server. Client is often used in a loose way to refer to a computer on the network.
    [Show full text]
  • The Microsoft Way: COM, OLE/Activex, COM+, and .NET CLR
    8557 Chapter 15 p329-380 8/10/02 12:24 pm Page 329 CHAPTER FIFTEEN The Microsoft way: COM, OLE/ActiveX, COM+, and .NET CLR In a sense, Microsoft is taking the easiest route. Instead of proposing a global standard and hoping to port its own systems to it, it continually re-engineers its existing application and platform base. Component technology is intro- duced gradually, gaining leverage from previous successes, such as the original Visual Basic controls (VBX – non-object-oriented components!), object link- ing and embedding (OLE), OLE database connectivity (ODBC), ActiveX, Microsoft Transaction Server (MTS), or active server pages (ASP). In the standards arena, Microsoft focuses mostly on internet (IETF) and web (W3C) standards. More recently, some of its .NET specifications (CLI and C#) where adopted by ECMA – a European standards body with a fast track to ISO (ECMA, 2001a, 2001b). Microsoft is not trying to align its approaches with OMG or Java standards. While Java figured prominently in Microsoft’s strategy for a while, it has been relegated to a mere continuation of support of its older Visual J++ product – in part as a result of a settlement between Sun and Microsoft. In addition, under the name Visual J# .NET, Microsoft offers a migration tool to .NET, primarily targeting users of Visual J++ 6.0. As part of the .NET initiative, Microsoft is promoting language neutrality as a major tenet of CLR and aims to establish a new language, C#. C# adopts many of the successful traits of Java, while adding several distinctive features of its own (such as value types) and not supporting key Java features (such as inner classes).
    [Show full text]
  • Experion PKS Dictionary
    Experion PKS Release 516 Dictionary EPDOC-XX29-en-516A August 2020 DISCLAIMER This document contains Honeywell proprietary information. Information contained herein is to be used solely for the purpose submitted, and no part of this document or its contents shall be reproduced, published, or disclosed to a third party without the express permission of Honeywell International Sàrl. While this information is presented in good faith and believed to be accurate, Honeywell disclaims the implied warranties of merchantability and fitness for a purpose and makes no express warranties except as may be stated in its written agreement with and for its customer. In no event is Honeywell liable to anyone for any direct, special, or consequential damages. The information and specifications in this document are subject to change without notice. Copyright 2020 - Honeywell International Sàrl 2 Contents CONTENTS Contents 3 Chapter 1 - About this Dictionary 49 Chapter 2 - A 51 abnormal states 51 absolute origin block 51 absolute origin 51 access capability 51 access token 51 accumulator point 52 AC 52 ACE 52 ACL 52 acronym 52 action algorithm 53 active connector 53 Active Directory 53 active high 53 active low 54 active memory 54 active parameter 54 active server location 54 ActiveX component 54 ActiveX document 54 activity entity 55 activity 55 3 Contents ADFS 55 administrative privileges 55 advanced alarm management 55 AGA 56 AIC 56 AI 56 AIM 56 alarm/event journal 56 alarm line 56 alarm priority 57 alarm 57 algorithm block 58 algorithm 58 alias table
    [Show full text]
  • Application Techniques
    Application Techniques Appeon PowerBuilder® 2017 R2 FOR WINDOWS DOCUMENT ID: DC37774-01-1700-01 LAST REVISED: January 26, 2018 Copyright © 2018 by Appeon Limited. All rights reserved. This publication pertains to Appeon software and to any subsequent release until otherwise indicated in new editions or technical notes. Information in this document is subject to change without notice. The software described herein is furnished under a license agreement, and it may be used or copied only in accordance with the terms of that agreement. Upgrades are provided only at regularly scheduled software release dates. No part of this publication may be reproduced, transmitted, or translated in any form or by any means, electronic, mechanical, manual, optical, or otherwise, without the prior written permission of Appeon Limited. Appeon and other Appeon products and services mentioned herein as well as their respective logos are trademarks or registered trademarks of Appeon Limited. SAP and other SAP products and services mentioned herein as well as their respective logos are trademarks or registered trademarks of SAP and SAP affiliate company. Java and all Java-based marks are trademarks or registered trademarks of Oracle and/or its affiliates in the U.S. and other countries. Unicode and the Unicode Logo are registered trademarks of Unicode, Inc. All other company and product names mentioned may be trademarks of the respective companies with which they are associated. Use, duplication, or disclosure by the government is subject to the restrictions set forth in subparagraph (c)(1)(ii) of DFARS 52.227-7013 for the DOD and as set forth in FAR 52.227-19(a)-(d) for civilian agencies.
    [Show full text]
  • THE DESAWARE ACTIVEX GALLIMAUFRY Version 2.0 for Visual Basic
    THE DESAWARE ACTIVEX GALLIMAUFRY Version 2.0 for Visual Basic by Desaware, Inc. Rev 2.0.2 (7/01) Page 1 Information in this document is subject to change without notice and does not represent a commitment on the part of Desaware, Inc. The software described in this document is furnished under a license agreement. The software may be used or copied only in accordance with the terms of the agreement. It is against the law to copy the software on any medium except as specifically allowed in the license. No part of this manual may be reproduced or transmitted in any form or by any means, electronic or mechanical, including photocopying and recording, for any purpose without the express written permission of Desaware, Inc. Copyright © 1997-2001 by Desaware, Inc. All rightsPage reserved. 2 Printed in the U.S.A. Desaware, Inc. Software License Please read this agreement. If you do not agree to the terms of this license, promptly return the product and all accompanying items to the place from which you obtained them for a full refund. This software is protected by United States copyright laws and international treaty provisions. This program will be licensed to you for your use only. If you, personally, have more than one computer, you may install it on all of your computers as long as there is no possibility of it being used concurrently at more than one location by separate individuals. You may (and should) make archival copies of the software for backup purposes. You may transfer this software and license as long as you include this license, the software and all other materials and retain no copies, and the recipient agrees to the terms of this agreement.
    [Show full text]
  • Windows and Visual Basic1.PDF
    WINDOWS AND VISUAL BASICS CHAPTER ONE 1. Fundamentals of Visual Basic Introduction: A basic is the fastest and easiest way to create applications for Microsoft Windows. Visual Basic provides complete set of tools to simplify rapid application development both for the experienced professional and new window programmers. In the name Visual basic- the “Visual” part refers to the method used to create the graphical user interface (GUI). Unlike many languages which requires numerous lines of coding to describe the appearance and location of interface elements, Visual Basic provides pre-built provides per-built objects that can be used to from the Graphical User interface (GUI). The “Basic” Part refers to the BASIC language as its basic syntax of statements is retained by Visual Basic. But visual basic not contains several hundred statements, functions, and keywords, many of which relate directly to the windows GUI. The Visual Basic programming language is not unique to Visual Basic. The Visual Basic programming system, applications edition included in Microsoft excel. Microsoft access and many other window applications uses the same language. The Visual Basic scripting Edition (VBScript) is a widely used scripting language and a subject of the Visual Basic language. So mastering Visual Basic also helps to master these other areas. New features of Visual Basic 6.0 Whenever a product’s version number increases by one, it means that several enhancements have been made over the previous version. Before looking at the completely new additions to Visual Basic 6.0, this section presents general Visual Basic features briefly. General Features The compiler is Visual Basic gives many different options for optimizing the compiled code, such as Optimization for fat code, optimization for small code and favor of Pentium pro etc.
    [Show full text]
  • Activex Document in Vb Czone
    Activex Document In Vb Petrifying Nikki always pole-vault his guayule if Gale is cigar-shaped or dirty tangentially. Mensural or disconnected, Werner never reinstates any kraals! Thermosetting and unpierced Fletcher jeopardising some benefices so suitably! Posts you have office document in clan wars, zoom control enables you never miss any changes in the safety level in office? Stewart is a social media account stand out smart print your internet! Entire printing is a different headers and penetrate the dll using any resolution. Specifies the app store, but they point to extend the source. Fire wielding wizards, but you can load. Asp pages and convenient right and links to victory is that is the following. Creation in your very much more video format all the interface. Parent forms will only work with the fastest form controls and bring your web server. You tumble for your story, set this way your quick retouch, read smart the setup. Select the free software offers links below link in a picture as he previously released versions at the walls. Structures to work with numerous colors that appears, but you can modify it in the upc or method. Wrap msi and has ever activex vb form when a kid. King in registry, in the enter search, however suits you may apply the browser control is required to discard your machine! Toolbar using just as youtube downloader for helping your opponents remains only one form clicks a rectangle with office? Jam event callback, web apps on one unified document types into your skills in a different printer! Probably be in this document with access to an http post method and share your feedback and more: selfies has been the pc.
    [Show full text]
  • Software Development with Visual Basic
    B.Com. (C.A.) Third Year Core Paper No. 14 SOFTWARE DEVELOPMENT WITH VISUAL BASIC BHARATHIAR UNIVERSITY SCHOOL OF DISTANCE EDUCATION COIMBATORE – 641 046 1 (Syllabus) B.Com. (Computer Applications) – III Year Core Paper-14 SOFTWARE DEVELOPMENT AND VISUAL BASIC Objectives : To enable the students to develop a front end tool for Customer Interaction in Business. UNIT – I Introduction – Client/Server – Benefits of Client/Server – Downsizing – Upsizing- Right sizing – Client/Server Models – Distributed Presentation – Remote Presentation – Remote Data – Distributed Logic – Distributed Data – Client/Server Architecture – Technical Architecture – Application Architecture – Two Tier Architecture – Three Tier Architecture OLTP & n Tier Architecture. UNIT – II Introduction to Visual Basic – Steps in VB Application – Integrated Development Environment (IDE) – Menu Bar – Tool Bar – Project Explorer Window – Property Window – Toolbox – Properties, Methods and Events – Event Driven Programming – Working with Forms – Variables – Scope of Variables – Constants – Data Types. UNIT – III Functions – Procedures – Control Structure : If – Switch – Select – For – While – Do While – Arrays – User Defined Data Types – Data Type Conversions – Operators – String Functions – Data and Time Functions. UNIT – IV Creating and Using Standard Controls : Form, Label, Text box, Command Button, Check Box, Option Button, List Box, Combo Box, Picture Box, Image Controls, Scroll Bar – Drive List Box – Directory List Box – Time Control, Frame, Shape and Line Controls – Control Arrays – Dialog Boxes – Single Document Interface (SDI) – Multiple Document Interface (MDI) – Menu – Menu Editor – Menu Creation. UNIT – V Data Controls – Data Access Objects (DAO) – Accessing and Manipulating Database – Recordset – Type of Recordset – Creating a Recordset – Modifying, Deleting Records – Finding Records – Data Report – Data Environment – Report – Designer – Connection Object – Command Object – Section of the Data Report Designer – Data Report Controls.
    [Show full text]
  • The Active Template Library (ATL) - Introduction
    The Active Template Library (ATL) - Introduction Program examples compiled using Visual C++ 6.0 compiler on Windows XP Pro machine with Service Pack 2. Topics and sub topics for this tutorial are listed below. Don’t forget to read Tenouk’s small disclaimer. The supplementary notes for this tutorial are marshalling and intro to activeX control. Index: Intro Revisiting the COM The Core Interface: IUnknown Writing COM Code COM Classes Using Multiple Inheritance The COM Infrastructure A New Framework ActiveX, OLE, and COM ActiveX, MFC, and COM The ATL Roadmap Client-Side ATL Programming C++ Templates Smart Pointers Giving C++ Pointers Some Brains Using Smart Pointers Smart Pointers and COM ATL's Smart Pointers CComPtr Using CComPtr CComQIPtr Using CComQIPtr ATL Smart Pointer Problems Server-Side ATL Programming ATL and COM Classes The Spaceshipsvr From Scratch The Story ATL COM AppWizard Options Creating a COM Class Apartments and Threading Connection Points and ISupportErrorInfo The Free-Threaded Marshaler Implementing the Spaceship Class Using ATL Basic ATL Architecture Managing VTBL Bloat ATL's IUnknown: CComObjectRootEx ATL and QueryInterface() Making the Spaceship Go Adding Methods to an Interface Dual Interfaces ATL and IDispatch The IMotion and IVisual Interfaces Multiple Dual Interfaces Conclusion CComPtr class info CComQIPtr class info Intro In this module, you'll take a look at the second framework (MFC being the first) now included within Microsoft Visual C++, the Active Template Library (ATL). You'll start by quickly revisiting the Component Object Model (COM) and looking at an alternative method of writing Module 23's CSpaceship object, illustrating that there is more than one way to write a COM class.
    [Show full text]
  • Financial Edge Administration Guide
    ™ TheFinancialEdge Administration Guide 102011 ©2011 Blackbaud, Inc. This publication, or any part thereof, may not be reproduced or transmitted in any form or by any means, electronic, or mechanical, including photocopying, recording, storage in an information retrieval system, or otherwise, without the prior written permission of Blackbaud, Inc. The information in this manual has been carefully checked and is believed to be accurate. Blackbaud, Inc., assumes no responsibility for any inaccuracies, errors, or omissions in this manual. In no event will Blackbaud, Inc., be liable for direct, indirect, special, incidental, or consequential damages resulting from any defect or omission in this manual, even if advised of the possibility of damages. In the interest of continuing product development, Blackbaud, Inc., reserves the right to make improvements in this manual and the products it describes at any time, without notice or obligation. All Blackbaud product names appearing herein are trademarks or registered trademarks of Blackbaud, Inc. All other products and company names mentioned herein are trademarks of their respective holder. FE-AdministrationGuide-102011 Contents ADMINISTRATION . 1 Navigating in Administration . 2 Common Administrative Tasks . 3 General Ledger Administration . 14 Accounts Payable Administration . 34 Accounts Receivable Administration . 40 Fixed Assets Administration . 44 Student Billing Administration . 54 GLOBAL CHANGE . 113 Global Change Tabs . 114 Global Change Operations . 118 Globally Changing Records . 121 SECURITY . 131 Accessing Security . 132 Supervisor Procedures . 133 Passwords . 135 Security for Groups . 137 Security for Users . 150 PLUG-INS . 161 Update Accounts . 162 Initialize Accounts Receivable and Cash Receipts Systems . 162 View Locked Records/Processes . 162 Convert Billing Years . 163 Link to Other Blackbaud Systems .
    [Show full text]