Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  1. Cornstarch

    Crystal Reports--Getting the Same Label to Print 3-Across and 10-Down

    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.
  2. Cornstarch

    Crystal Reports--Getting the Same Label to Print 3-Across and 10-Down

    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.
  3. Cornstarch

    Updating Rows in a DataSet

    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()...
  4. Cornstarch

    Updating Rows in a DataSet

    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...
  5. Cornstarch

    Updating Rows in a DataSet

    Please ignore this message. The code now works fine. Ann
  6. Cornstarch

    Updating Rows in a DataSet

    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...

Part and Inventory Search

Back
Top