This commit is contained in:
Kathy Ruffing 2010-03-25 11:26:08 +00:00
parent 3248a411b2
commit 06f23219cd
2 changed files with 3 additions and 2 deletions

View File

@ -798,7 +798,7 @@ namespace Volian.Controls.Library
MessageBox.Show("Must select two items at the step level or below, i.e. no sections, procedures, etc.");
return;
}
linktxt = string.Format("#Link:Transition:{0} <NewID> {1} {2}", listBoxTranFmt.SelectedIndex, toItem.ItemID, rangeItem.ItemID);
linktxt = string.Format("#Link:TransitionRange:{0} <NewID> {1} {2}", listBoxTranFmt.SelectedIndex, toItem.ItemID, rangeItem.ItemID);
}
else if ((etm & E_TransUI.StepFirst) == E_TransUI.StepFirst)
{

View File

@ -2,7 +2,8 @@ using System;
using System.Collections.Generic;
using System.Text;
using System.Text.RegularExpressions;
namespace VEPROMS.CSLA.Library
using VEPROMS.CSLA.Library;
namespace Volian.Controls.Library
{
public partial class LinkText
{