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

Page 4-136 Windows CE
InsertCells(colsRows)
Inserts cells (true - columns, false - rows).
Example: InsertCells(false)
LastCol([rowNumber] )
Returns the last nonblank cell in the whole sheet (if rowNumber is
not specified) or in the specified row.
Example: last = LastCol()
last = LastCol(15)
LastRow([columnNumber])
Returns the last nonblank cell in the whole sheet (if columnNumber is
not specified) or in the specified column.
Example: last = LastRow()
last = LastRow(15)
ListBox(title, range)
Shows list box dialog with items from range and with the title and
returns the index of the selected item.
Example: med = ListBox("Choose medicine",
Medicines!a1:a50)
ListBox2(title, item, item2, item3... item29)
Shows list box dialog with items: item1, item2, item3... and with the
title and returns the text of the selected item.
Example: car = ListBox("Choose car",
“BMW”, “Jaguar”, “Ferrari”)
Modified([onOff])
Returns true if the Modified flag is true (workbook was modified) and
sets the Modified flag to onOff (true or false).
Example: Modified(false)
MsgBox(text)
Shows the Message Box with the text.
Example: MsgBox("Hello")
Paste([contents, format, skipBlanks, onlyResults])
Pastes the clipboard to the current selection.
Example: Sel(A1:A5)
Copy()
Sel(B1)
Paste()