473,789 Members | 2,785 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

Clone DataTable or Copy DataTable Problem

Hi All,

Due to can't insert new row between row and row while current
DataTable looping.
In order to solve the problem, I need to clone it as new DataTable,
while the DataTable Looping, it also insert both of new row and
existing datarow into new DataTable, but I don't know how to do that,
Here is my souce code, Please advise.

if ( myTable.Rows.Co unt > 0 )
{
msg.Text = "";

y = myTable.Rows.Co unt;

for (i=0; y > i ; i++ )
{

DataRow dataRow = myTable.Rows[i];

if ((Convert.ToStr ing(myOrderNo) == "") ||
(Convert.ToStri ng(myOrderNo) == null))
{
myOrderNo = Convert.ToStrin g(dataRow["OrderNo"]);
}

if (myOrderNo != Convert.ToStrin g(dataRow["OrderNo"]))
{
// DataRowCollecti on rc = myTable.Rows;
mySubTotal = Convert.ToDoubl e(myTotalPrice) - (
Convert.ToDoubl e(myTotalPrice) *
Convert.ToInt16 (dataRow["HeadDiscou nt"]) /100 );

dr1 = myTable.NewRow( );
dr1["OrderNo"] = myOrderNo;
dr1["TotalPrice "] = Convert.ToDoubl e(mySubTotal);

// myTable.Rows.Ad d(dr1);
myTable.Rows.In sertAt(dr1,i);
myTable.AcceptC hanges();

myGrandTotal = Convert.ToDoubl e(myGrandTotal) +
Convert.ToDoubl e(mySubTotal);
myOrderNo = Convert.ToStrin g(dataRow["OrderNo"]);

myTotalPrice = 0;
}
myTotalPrice = myTotalPrice +
Convert.ToDoubl e(dataRow["TotalPrice "]);

// Add Last Record
if (y == i + 1)
{
DataRowCollecti on rc = myTable.Rows;
mySubTotal = Convert.ToDoubl e(myTotalPrice) - (
Convert.ToDoubl e(myTotalPrice) *
Convert.ToInt16 (dataRow["HeadDiscou nt"]) /100 );

dr1 = myTable.NewRow( );
dr1["OrderNo"] = myOrderNo;
dr1["TotalPrice "] = Convert.ToDoubl e(mySubTotal);

//myTable.Rows.Ad d(dr1);
myTable.Rows.In sertAt(dr1,i);
myTable.AcceptC hanges();

myGrandTotal = Convert.ToDoubl e(myGrandTotal) +
Convert.ToDoubl e(mySubTotal);
}

}
Nov 16 '05 #1
0 5832

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

0
2670
by: Jason Evans | last post by:
Hi All, I am writing my own implementation of queue via a linked list, note not a LinkedList, and was running into trouble with the clone method. I was wondering if anyone could point out some not so obvious errors I have made.. Cheers
4
2281
by: Vincent | last post by:
Hey, I have a problem to understand the underlaying of clone method. Hope someone can help me out. Let's say, clonedObject = originalObject.clone() (syntax may be wrong, but you know what I mean, I hope ) Why can't I just do this, instead?
6
2151
by: Steve | last post by:
I can't find a straight answer on what to use? I need a deep copy, so I implemented IConeable and the Clone() method. However, I'm not sure I did it correct. Is it suposed to be an allocation of a new object, then the assignment of each member? Is that all or is there something else I need to do? Here is my code <code> public Object Clone() {
2
1748
by: Danny Ni | last post by:
Hi, I would like to know the fastest way to clone a dataset with filter inVB.Net or C#. Say I have a dataset that has one datatable having several data rows. I want to clone the structure to another dataset but with selection of datarows. Please Help!
2
25311
by: Doug Bell | last post by:
Hi, I am trying to clone a DataRow (see below) but I have a syntax error refering to the implicit conversion from object to datarow. How can I convert the object into a datarow without itterating through the elements? Thanks Doug
4
2532
by: csharpula csharp | last post by:
Hello, Have a basic question about Clone() If I am using the clone method on some object ,are the Cloned object properties going to change at every property change in original object? Thanks! *** Sent via Developersdex http://www.developersdex.com ***
5
1871
by: DavidB | last post by:
I have a situation where a user needs to clone an existing BE database (stored on a server) to his local machine. Assume the followings... User goes into the database FE which has linked BE. BE is stroed on a server. User needs to be able to click a button on the FE that will clone the copy of the BE on the server to C:\. If a copy of the BE already exists at C:\, the clone process should overwrite the existing copy at C:\.
4
1779
nev
by: nev | last post by:
I have a datatable dtt1 with data in it. It is bind to bs1 Then I do... dtt2 = dtt1.copy Thinking that I will be able to manipulate dtt2 without affecting dtt1... I assign a bindingsource bs2.datasource = dtt2
7
2845
by: =?Utf-8?B?Sm9lbCBNZXJr?= | last post by:
I have created a custom class with both value type members and reference type members. I then have another custom class which inherits from a generic list of my first class. This custom listneeds to support cloning: Public Class RefClass Public tcp As TcpClient Public name As String End Class Public Class RefClassList Inherits List(Of RefClass) Implements ICloneable
0
9666
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However, people are often confused as to whether an ONU can Work As a Router. In this blog post, we’ll explore What is ONU, What Is Router, ONU & Router’s main usage, and What is the difference between ONU and Router. Let’s take a closer look ! Part I. Meaning of...
0
10408
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers, it seems that the internal comparison operator "<=>" tries to promote arguments from unsigned to signed. This is as boiled down as I can make it. Here is my compilation command: g++-12 -std=c++20 -Wnarrowing bit_field.cpp Here is the code in...
1
10139
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows Update option using the Control Panel or Settings app; it automatically checks for updates and installs any it finds, whether you like it or not. For most users, this new feature is actually very convenient. If you want to control the update process,...
0
9983
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each protocol has its own unique characteristics and advantages, but as a user who is planning to build a smart home system, I am a bit confused by the choice of these technologies. I'm particularly interested in Zigbee because I've heard it does some...
0
9020
agi2029
by: agi2029 | last post by:
Let's talk about the concept of autonomous AI software engineers and no-code agents. These AIs are designed to manage the entire lifecycle of a software development project—planning, coding, testing, and deployment—without human intervention. Imagine an AI that can take a project description, break it down, write the code, debug it, and then launch it, all on its own.... Now, this would greatly impact the work of software developers. The idea...
0
6769
by: conductexam | last post by:
I have .net C# application in which I am extracting data from word file and save it in database particularly. To store word all data as it is I am converting the whole word file firstly in HTML and then checking html paragraph one by one. At the time of converting from word file to html my equations which are in the word document file was convert into image. Globals.ThisAddIn.Application.ActiveDocument.Select();...
0
5417
by: TSSRALBI | last post by:
Hello I'm a network technician in training and I need your help. I am currently learning how to create and manage the different types of VPNs and I have a question about LAN-to-LAN VPNs. The last exercise I practiced was to create a LAN-to-LAN VPN between two Pfsense firewalls, by using IPSEC protocols. I succeeded, with both firewalls in the same network. But I'm wondering if it's possible to do the same thing, with 2 Pfsense firewalls...
0
5551
by: adsilva | last post by:
A Windows Forms form does not have the event Unload, like VB6. What one acts like?
3
2909
bsmnconsultancy
by: bsmnconsultancy | last post by:
In today's digital era, a well-designed website is crucial for businesses looking to succeed. Whether you're a small business owner or a large corporation in Toronto, having a strong online presence can significantly impact your brand's success. BSMN Consultancy, a leader in Website Development in Toronto offers valuable insights into creating effective websites that not only look great but also perform exceptionally well. In this comprehensive...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.