Exportacion
Exportacion
Try
exLibro = exApp.Workbooks.Add
exHoja = exLibro.Worksheets.Add()
'Aqui recorremos todas las filas, y por cada fila todas las columnas
Next
Next
Next
exHoja.Rows.Item(1).Font.Bold = 1
exHoja.Rows.Item(1).HorizontalAlignment = 3
exHoja.Columns.AutoFit()
'Aplicaci�n visible
exApp.Application.Visible = True
exHoja = Nothing
exLibro = Nothing
exApp = Nothing
Catch ex As Exception
Return False
End Try
Return True
End Function
End Module