This commit is contained in:
Kathy Ruffing 2011-02-14 15:47:51 +00:00
parent c3cc1f3417
commit 001c92567c
2 changed files with 18 additions and 4 deletions

View File

@ -187,7 +187,7 @@ namespace VEPROMS
}
void frmVEPROMS_Activated(object sender, EventArgs e)
{
if (ActiveControl == tc) tc.HideCaret();
//if (ActiveControl == tc) tc.HideCaret();
// refresh anything that pertains to external files or programs:
// if ro.fst was 'updated' from the roeditor, enable the update ro.fst values on
@ -267,15 +267,15 @@ namespace VEPROMS
}
void frmVEPROMS_Deactivate(object sender, EventArgs e)
{
tc.HideCaret(); // Hide the pseudo caret
//tc.HideCaret(); // Hide the pseudo caret
}
void tc_Leave(object sender, EventArgs e)
{
tc.ShowCaret();// Show the pseudo caret
//tc.ShowCaret();// Show the pseudo caret
}
void tc_Enter(object sender, EventArgs e)
{
tc.HideCaret();// Hide the pseudo caret
//tc.HideCaret();// Hide the pseudo caret
}
//void displayRO_EnabledChanged(object sender, EventArgs e)
//{

View File

@ -0,0 +1,14 @@
using System;
using System.Collections.Generic;
using System.Text;
namespace VEPROMS.CSLA.Library
{
public partial class GridInfo
{
public void ResetContent(Grid myGrid)
{
RefreshFields(myGrid);
}
}
}