User Manual
Table Of Contents
- Allegro CE™ Owner's Manual
- Table of Contents
- Chapter 1 Introduction
- Chapter 2 Hardware Components
- Chapter 3 Memory Configuration and Data Storage Options
- Chapter 4 Windows CE Operating System
- Chapter 5 Technical Reference
- Chapter 6 Software Developer’s Guide for Allegro CE 3.0 and CE .NET
- Chapter 7 FCC Information, Warranty, and Software License Agreement
- Chapter 8 Expansion Pods
- Index
- Table of Contents
- Chapter 1 Introduction
- Chapter 2 Hardware Components
- Case Design
- Keyboard
- Display
- System Tray Indicators
- Batteries
- Main Power Source
- Setting Battery Charge
- Battery Life
- Recharging the NiMH Battery Pack
- Battery Gauging Explained
- Battery Status Icons
- When the Battery Voltage Drops
- Power Management Feature
- Changing NiMH Battery Pack
- Alkaline Battery Holder: Inserting Batteries and Usage Information
- Storing the Allegro CE During Inactive Periods
- NiMH Battery Pack's Useful Life
- Spare NiMH Battery Packs
- Short-Term Backup Supply
- Real Time Clock
- Main Power Source
- Communication Ports
- USB/Power Dock
- PC Cards
- Expansion Pods
- Chapter 3 Memory Configuration and Data Storage Options
- Chapter 4 Windows CE Operating System
- Windows CE Overview
- CE .NET Viewers
- ActiveSync Transfer
- Downloading ActiveSync from the Internet
- Installing ActiveSync
- Establishing a First Time ActiveSync Connection
- Establishing Additional ActiveSync Connections
- New Partnership Set Up
- USB MultiSync
- USB MultiSync Connections
- Transferring Files Between the Allegro CE and the Desktop PC
- Windows Explorer
- Storing Files and Programs
- System Save/Restore Utilities
- Application Command Bars
- PTab Spreadsheet Program
- Pocket Word/WordPad
- Internet Explorer and Inbox
- Calculator Program
- Terminal Program
- Chapter 5 Technical Reference
- Chapter 6 Software Developer’s Guide for Allegro CE 3.0 and CE .NET
- Chapter 7 FCC Information, Warranty, and Software License Agreement
- Chapter 8 Expansion Pods
- Index

Windows CE Page 4-127
Text Functions
Char(number) Returns the character specified by a number.
Example: Char(66) equals B.
Code(text) Returns a numeric code for the first character in a text
string.
Example: Code(“ABC”) equals 65.
Exact(text1, text2) Returns TRUE if two text strings are identical (case
sensitive).
Example: Exact(“palm”, “PALM”) equals FALSE.
Find(findText, withinText, start) Finds string (findText) within another
text string (withinText), and returns its starting position.
Example: Find(“A”, “CBA”, 1) equals 3.
Left(text, num_chars) Returns the leftmost characters from a text string.
Example: Left(“Allegro”, 2) equals “Al”.
Len(text) Returns the number of characters in a text string.
Example: Len(“Allegro”) equals 7.
Lower(text) Converts text to lowercase.
Example: Lower(“Allegro FPC”) equals “allegro fpc”.
Mid(text, start, count) Returns a specific number of characters from a text
string, starting at the position start.
Example: Mid(“Allegro”, 3, 2) equals “le”.
Proper(text) Capitalizes the first letter of all words. Converts all the other
letters to lowercase.
Example: Proper(“this CHAPTER”) equals “This Chapter”.
Replace(oldText, start, count, newText) Replaces part of a text string
oldText, based on the number of characters you specify (start, count), with a
newText.
Example: Replace(“Allegro”, 5, 1, “-Size”) equals “Alle-sizero”.
Rept(text, nTimes) Repeats text the given number of times.
Example: Rept(“-”, 5) equals “——”.
Right(text, num_chars) Returns the rightmost characters from a text
string.
Example: Right(“Allegro”, 2) equals “ro”.
Substitute(text, oldText, newText, n) Substitutes newText for oldText in a
text string. N specifies which occurrence of the oldText you want to replace.
Example: Substitute(“1/1/1999”, “1”, “2”, 2) equals “1/2/1999”.
T(value) Returns the text referred to by value.
Example: A1 contains “AAA” then T(A1) equals “AAA”.










