Reebo99:
Thank you for your time.
I was thinking of something like creating a dataset and
fill it with the same data 30 times or whatever number of lbl. I need then passing the dataset to Crystal Reports.
I'm just wondering if it's possible to get a (same) detail section to print more than one time in CR. Or if anyone knows a way to get a (same) label to print 3-across and 10-down. Thank you in advance for your help.
Here is a short cut to go about getting a PK from a
table w/o using stored procedure:
Dim cn As SqlClient.SqlConnection
Dim cmd As New SqlClient.SqlCommand()
Dim PK As Integer
cn = New SqlClient.SqlConnection("Data Source=......") //Your connection string here
cn.Open()...
Mark:
The message I posted was meant for inserting and
not for updating a record. I did not have a problem
with updating a record because the primary key will
not change if a record is updated/modified.
I temporarily solve the insertion problem by getting
around my code...but it's not a...
I updated my data into the appropriate columns in the Datarow by building a DataAdapter, a CommandBuilder object, and retrieved the Update command object. After that, I submitted the Update statement via the Update method of the DataAdapter...it worked fine except for one thing.
It can't save...
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.