i created new customize form which content suspended transaction so now i need to Retrieve suspended transaction
so after research about that i found this way on frmSuspendedTrans
try
{
DataRow dataRow = this.gridView1.GetDataRow(this.gridView1.GetSelectedRows()[0]);
this.suspendedTransactionId = (string)dataRow["SUSPENDEDTRANSACTIONID"];
}
catch (Exception)
{
this.suspendedTransactionId = null;
}
finally
{
base.Close();
}
but i was wondering about this suspendedTransactionId what is that if gridView1 pass date and me also try to pass date but show empty when i try to retrieve suspended transaction
*This post is locked for comments
I have the same question (0)