Posts
 
Reputation
Joined
Last Seen
0 Reputation Points
Unknown Quality Score

No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.

0 Endorsements
~341 People Reached
Favorite Forums

4 Posted Topics

Member Avatar for vanathi_vb

[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 …

Member Avatar for kashy!
0
128
Member Avatar for gdkons
0
19
Member Avatar for ttqtrang146

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

Member Avatar for gdkons
0
154
Member Avatar for gdkons

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.

0
40

The End.