protected void Page_Load(object sender, System.EventArgs e)
{
if (IsPostBack) return;
FpSpread1.Sheets.Count = 2;
FpSpread1.Sheets[0].Cells[1, 1].Tag = "test";
}
private void Button1_Click(object sender, System.EventArgs e)
{
int x = 0;
int y = 0;
int z = 0;
FarPoint.Web.Spread.SearchFoundFlags sff;
sff = FpSpread1.Search(0, 1, "test", false, false, false, false, false, false, true, 0, 0, 2, 2, ref z, ref x, ref y);
ListBox1.Items.Add(sff.ToString());
ListBox1.Items.Add(x.ToString());
ListBox1.Items.Add(y.ToString());
ListBox1.Items.Add(z.ToString());
}
Private Sub Page_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load
If IsPostBack Then Return
FpSpread1.Sheets.Count = 2
FpSpread1.Sheets(0).Cells(1, 1).Tag = "test"
End Sub
Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click
Dim x As Integer
Dim y As Integer
Dim z As Integer
Dim sff As FarPoint.Web.Spread.SearchFoundFlags
sff = FpSpread1.Search(0, 1, "test", False, False, False, False, False, False, True, 0, 0, 2, 2, z, x, y)
ListBox1.Items.Add(sff.ToString())
ListBox1.Items.Add(x)
ListBox1.Items.Add(y)
ListBox1.Items.Add(z)
End Sub