Archive for the month December 2009

« Older Entries  

DataTable Already Belongs to Another Dataset

I got this error when I was trying to duplicate the datatable.
 
After searching thru internet I found the below easy solution
 
 
 
ds.Tables.Add(new DataTable());
 
 

 
or
 
 
 
ds.Tables.Add(dt.Copy());
 
 
 
 
 
I hope this helps u too…
 
If yes, don’t forget to post your comment.

Photoshop

PHOTOSHOP :
http://www.grafpedia.com/

System.Management.ManagementException: Access denied

I received this error when I was working on one of my application.
 
If EPiServer throws a management exception with error message “Access Denied” the cause is that ASPNET account does not have enough privileges to access certain WMI namespaces.
 
This is a bug that has been fixed in Windows 2000 Service Pack 3 and Windows [...]