No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.
4 Posted Topics
[QUOTE=vanathi_vb;902756]Hi, please guide me how to use crystal reports in vb6.0.anyone can explain with small example.say for example select the db and tables and fiels and links between tables ,sorting fields..how to call that report using vb.. Thanks in advance, vanathi[/QUOTE] first of all install Crystal Report software. Then are …
please find the following code ---------------------------------------- Dim rs as Recordset Set rs = New Recordset sSQL = "SELECT GroupNo FROM CenterMembers " rs.Open sSQL, con, adOpenForwardOnly, adLockOptimistic Combo1.clear While Not rs.EOF Combo1.AddItem rs!GroupNo rs.MoveNext Wend rs.Close -------------------------------------------- Note that con is connection object
How can I create group report in Data Report by writing code without using Data Environment. I'm using VB 6 and SQL server 2000.
The End.
gdkons