<customUI xmlns="http://schemas.microsoft.com/office/2006/01/customui"
loadImage="OnLoadImage" onLoad="RefreshMe" >
<!-- Builtin commands section -->
<commands>
<command idMso="DatabaseRelationships" onAction="DisableRelations" />
<command idMso="DatabaseDocumenter" onAction="ShowDbProperties" />
</commands>
<ribbon startFromScratch="false" >
<tabs>
<tab id="custTabEdu" label="Edu Systems" >
<group id="StudGroup" label="Students">
<button id="btnNewStud" imageMso="RecordsAddFromOutlook"
size="large" label="Add Student"
screentip="Add Student" supertip="Enter new student information" 
onAction="RibbonLib.OpenStudentDetails" />
<button id="btnViewAllStud" imageMso="ShowDetailsPage"
size="large" label="View Students"
screentip="View Students" 
supertip="View Current Students"
onAction="RibbonLib.OpenStudentList" />
</group>
<group id="ToolsGroup" label="Special Commands">
<button idMso="FilePrintQuick" size="normal" />
<button idMso="FileSendAsAttachment" size="normal" />
</group>
<group id="ImagesGroup" label="Special Features">
<button id="btnNotes" label="Open Notepad"
image="Note.gif" size="large" 
onAction="OpenNotepad" />
<button id="btnComputer" label="Computer Folder"
image="MyFolder.gif" size="normal" />
<button id="btnRedStar" label="Honor Student"
getImage="OnGetImage" size="large" />
<gallery id="glHolidays" label="Holidays" columns="3" rows="4"
getImage="onGetImage" getItemCount="OnGetItemCount" 
getItemLabel="onGetItemLabel" getItemImage="onGetItemImage" 
getItemID = "onGetItemID" onAction="onSelectedItem" />
</group>
<group id="OtherControlsGroup" label="Other Controls" >
<splitButton id="btnSplit1" size="large">
<button id="btnImport" label="Import More" imageMso="ImportAccess"  />
<menu id="mnuImport" label="More Import Formats" itemSize="normal" >
<menuSeparator id="mnuDiv1" title="Other Databases" />
<button id="btnImportODBC" label="ODBC database"  imageMso="ImportOdbcDatabase" />
<button id="btnImportDBase" label="Dbase file" imageMso="ImportDBase" />
<button id="btnImportParadox" label="Paradox file" imageMso="ImportParadox" />
<menuSeparator id="mnuDiv2" title="Spreadsheet Files" />
<menu id="mnuExcel" label="Excel File Formats" imageMso="ImportExcel" itemSize="normal" >
<checkBox id="xlsFormat" label="xls file" />
<checkBox id="xlsxFormat" label="xlsx file" />
</menu>
<button id="btnImportLotus" label="Lotus 1-2-3 file" imageMso="ImportLotus" />
<menuSeparator id="mnuDiv3" title="Other Files" />
<button id="btnText" label="Text file" imageMso="ImportTextFile" />
<button id="btnXML" label="XML file" imageMso="ImportXmlFile" />
<button id="btnHTML" label="HTML file" imageMso="ImportHtmlDocument" />
<button id="btnOutlook" label="Outlook folder" imageMso="ImportOutlook" />
<button id="btnSharepoint" label="SharePoint List" imageMso="ImportSharePointList" />
</menu>
</splitButton>
<separator id="OtherControlsDiv1" />
<labelControl id="TitleForBox1" label="Areas of Interest (please check below)" />
<box id="boxLayout1">
<checkBox id="chkSafety" label="School Safety"
 enabled="true" visible="true" 
 onAction="DoSomething" />
<checkBox id="chkHealth" label="Health" getEnabled="onGetEnabled_Health" />
<checkBox id="chkSportsMusic" getLabel="onGetLabel" />
</box>
<editBox id="txtFullName" label="First and Last Name:" 
sizeString="AAAAAAAAAAAAAAAA" maxLength="25" 
getText="getEditBoxText" onChange="onFullNameChangeToUcase" />
<separator id="OtherControlsDiv2" />
<comboBox id="cmbLang" label="Languages" 
  supertip="Select Language Guide"
  onChange="onChangeLang" >
<item id="English" label="English" />
<item id="Spanish" label="Spanish" />
<item id="French" label="French" />
<item id="German" label="German" />
<item id="Russian" label="Russian" />
</comboBox>
<dropDown id="drpBoro" label="City Borough" 
supertip="Select School Borough"
  onAction="onActionBoro" >
    <item id="M" label="Manhattan" />
    <item id="B" label="Brooklyn" />
    <item id="Q" label="Queens" />
    <item id="I" label="Staten Island" />
    <item id="X" label="Bronx" />
</dropDown>
<dialogBoxLauncher>
<button id="Launch1"
screentip="Show Product Key"
onAction="OnActionLaunch" />
</dialogBoxLauncher>
</group> 
</tab>
</tabs>
</ribbon>
</customUI>


