klo saya sih nampilin nya begini :
strsql = "exec sp_store_procedure '" & var 1 & "', '" & var 2 & "'" 'dst
ds = strCon1.GetTableRow(strsql)
With GVReport
.DataSource = ds.Tables(0)
End With
lblRow.Text = ds.tables(0).Rows.Count & " Row(s)"
--------------------------------------------------------------------------------------
Public Function GetTableRow(ByVal strsql As String) As DataSet
Dim sDa As New SqlDataAdapter(strsql, StrCon1)
Dim ds As New DataSet
Try
sDa.Fill(ds)
Catch ex As Exception
End Try
sDa.Dispose()
Return ds
End Function