Ver Mensaje Individual
  #5 (permalink)  
Antiguo 19/11/2006, 18:10
yesmina
 
Fecha de Ingreso: diciembre-2004
Mensajes: 133
Antigüedad: 20 años, 3 meses
Puntos: 0
hola, he intentado hacer un reporte pero no me salen los registros en la pagina web...

aki va el codigo:
------------------------------------------------------------

Dim oConn As SqlClient.SqlConnection = New SqlClient.SqlConnection(ConfigurationSettings.AppS ettings("conexion").ToString)
oConn.Open()
Dim STR_SQL As String

STR_SQL = "SELECT *FROM FSopTec"
Dim oCmd As New SqlCommand(STR_SQL, oConn)
Dim da As New SqlDataAdapter(oCmd)
Dim ds As New DataSet
da.Fill(ds)

Dim cr As New CrystalReport4

cr.SetDataSource(ds)
crvPrueba.ReportSource = cr

DONDE : crvPrueba es el CrystalReportViewer
---------------------------------------------

espero me puedan dar una pista sobre el problema...
__________________
Mina

Última edición por yesmina; 19/11/2006 a las 18:38