RequestInvoicesProvider.getInvoices Method
Returns a data table containing the following columns:
index, issuerVAT, invoiceProviderMark, invoiceUid, authenticationCode
in that order.
DataTable dt = rqd.getInvoices();
DataGridView1.DataSource = dt; // Load DataTable directly to a DataGridView
For (var i = 0; i <= dt.Rows.Count - 1; i++) // GO THROUGH ALL OF THE DATABASE'S ROWS
{
int index = dt.Rows(i).Item(0);
string issuerVAT = dt.Rows(i).Item(1);
string invoiceProviderMark = dt.Rows(i).Item(2);
string invoiceUid = dt.Rows(i).Item(3);
string authenticationCode = dt.Rows(i).Item(4);
}
This language is not supported or no code example is available.
Dim dt As DataTable = rqd.getInvoices()
DataGridView1.DataSource = dt 'Load DataTable directly to a DataGridView
For i = 0 To dt.Rows.Count - 1 'GO THROUGH ALL OF THE DATABASE'S ROWS
DataGridView1.DataSource = dt
Dim index As Integer = dt.Rows(i).Item(0)
Dim issuerVAT As String = dt.Rows(i).Item(1)
Dim invoiceProviderMark As String = dt.Rows(i).Item(2)
Dim invoiceUid As String = dt.Rows(i).Item(3)
Dim authenticationCode As String = dt.Rows(i).Item(4)
Next
This language is not supported or no code example is available.