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-138 Windows CE
Set(reference, value)
Sets cell specified by reference to the value.
Example: Set(a1, 12.34)
SheetName(sheetNum)
Returns name of the specified sheet.
Example: name = SheetName(1)
SheetsCount()
Returns a number of sheets in workbook.
Example: MsgBox("Sheets count is "&SheetsCount())
ShowPicture(pictureFile [,Time])
Shows a picture (file of types: *.jpg, *.gif, *.bmp, *.2bp, *.xbm). Use the
second (optional) parameter to close a picture window after time
seconds. Without specifying the time parameter a picture can be
closed by tapping on it.
Example: ShowPicture(“car.bmp”)
Sort(firstBy[, ascending, secondBy, ascending, thirdBy, ascending,
headerRow, caseSensitive, sortRows] )
Sorts the current selection. FirstBy, secondBy, thirdBy - column
numbers (or row numbers if sortRows is true). Sorts ascending
(ascending = true) or descending (ascending = false).
For more info see Sort dialog in Tools menu.
Example: Sel(a1:c20)
Sort(1)
TopLeftCell(reference)
Returns the top left cell on the screen and sets it if reference is
specified.
Example: TopLeftCell(A1)
YesNoBox(text)
Shows the box giving the choice yes or no and returns true if user
selects Yes.
Example: if YesNoBox("Stop") then
Return()
end
Zoom([magnification])
Returns current value of zoom magnification and sets it to
magnification if specified.
Example: Zoom(65)
Zoom(Zoom()-10)