No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.
2 Posted Topics
I found a snippet that converts the SqlDataSource into a DataView using CType as shown. Maybe you need to do something similar with your reader: [CODE] Dim dv As DataView Dim reorderedProducts As Integer dv = CType(SqlDataSource1.Select(DataSourceSelectArguments.Empty), DataView) reorderedProducts = CType(dv.Table.Rows(0)(0), Integer) [/CODE] I hope it helps! :) [QUOTE=mrjimoy_05;1498354]Hi guys, …
[QUOTE=Egypt Pharaoh;851200]How can I save the class in dll[/QUOTE] You need first to compile your class following what Antenka mentioned. The dll will be created at the bin\Debug subdirectory if you're compiling it using Visual Studio.
The End.
gbeltrao