Use Hex format for the RO DB ID for RO Searches.

This commit is contained in:
Rich 2013-09-25 21:23:13 +00:00
parent 18ca100f95
commit 49ef77939a

View File

@ -936,7 +936,7 @@ namespace Volian.Controls.Library
if (cmboTreeROs.SelectedNode.Tag is ROFSTLookup.rodbi) if (cmboTreeROs.SelectedNode.Tag is ROFSTLookup.rodbi)
{ {
ROFSTLookup.rodbi db = (ROFSTLookup.rodbi)cmboTreeROs.SelectedNode.Tag; ROFSTLookup.rodbi db = (ROFSTLookup.rodbi)cmboTreeROs.SelectedNode.Tag;
return _MyRODbID.ToString() + ":" + string.Format("{0}", db.dbiID.ToString("D4")); return _MyRODbID.ToString() + ":" + string.Format("{0}", db.dbiID.ToString("X4"));
} }
else if (cmboTreeROs.SelectedNode.Tag is ROFSTLookup.rochild) else if (cmboTreeROs.SelectedNode.Tag is ROFSTLookup.rochild)
{ {