Skip to content

Instantly share code, notes, and snippets.

@jsuo
Last active December 28, 2015 11:59
Show Gist options
  • Save jsuo/7497623 to your computer and use it in GitHub Desktop.
Save jsuo/7497623 to your computer and use it in GitHub Desktop.
[受注検索]カスタムタブのXMLファイル
<customUI onLoad="Ribbon_onLoad" xmlns="http://schemas.microsoft.com/office/2009/07/customui">
<ribbon>
<tabs>
<tab id="orderSearchTab" label="受注検索" >
<group id="GroupEmpInfo" label="社員情報">
<comboBox id="cmbEmpId" sizeString="wwwwwwww" getText="cmbEmpId_getText" getItemCount="cmbEmpId_getItemCount" getItemLabel="cmbEmpId_getItemLabel" onChange="cmbEmpId_onChange" label="社員ID:" />
<comboBox id="cmbEmpName" sizeString="wwwwwwww" getText="cmbEmpName_getText" getItemCount="cmbEmpName_getItemCount" getItemLabel="cmbEmpName_getItemLabel" onChange="cmbEmpName_onChange" label="氏 名:"/>
</group>
<group id="GroupCustomerInfo" label="得意先情報">
<comboBox id="cmbCustomerId" sizeString="wwwwwwww" getText="cmbCustomerId_getText" getItemCount="cmbCustomerId_getItemCount" getItemLabel="cmbCustomerId_getItemLabel" onChange="cmbCustomerId_onChange" label="得意先ID:" />
<comboBox id="cmbCustomerName" sizeString="wwwwwwww" getText="cmbCustomerName_getText" getItemCount="cmbCustomerName_getItemCount" getItemLabel="cmbCustomerName_getItemLabel" onChange="cmbCustomerName_onChange" label="得意先名:"/>
</group>
<group id="GroupDateInfo" label="日付">
<editBox id="editDeveryDate" label="受注日:" sizeString="wwwwwwwwww" onChange="edtDeparture_onChange" />
<editBox id="edtSyukkaDate" label="出荷日:" sizeString="wwwwwwwwww" onChange="edtArrival_onChange" />
</group>
<group id="GroupOption" label="検索オプション">
<comboBox id="cmbWhere" sizeString="wwANDww" getText="cmbWhere_getText" getItemCount="cmbWhere_getItemCount" getItemLabel="cmbWhere_getItemLabel" onChange="cmbWhere_onChange" label="条件(OR/AND):" />
<comboBox id="cmbKensu" sizeString="wwANDww" getText="cmbKensu_getText" getItemCount="cmbKensu_getItemCount" getItemLabel="cmbKensu_getItemLabel" onChange="cmbKensu_onChange" label="最大件数:" />
</group>
<group id="GroupExecute">
<button id="btnSearch" label="実 行   " size="large" imageMso="ZoomPrintPreviewExcel" onAction="btnSearch_onAction" />
</group>
</tab>
</tabs>
</ribbon>
</customUI>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment