 |

|
Do we need to do anything after run installer? I have just install but there is no such option in right-click menu. Please help!
|
|
|
|

|
I always go a bit cross-eyed when I have to start drilling down in the default QuickWatch tool to get to the DataSet data.
This is saving me a lot of time.
Cheers!
|
|
|
|

|
Hi, I don´t know how I can use it in .net 2002. There is a possibility that can I add it to my version of .net? or only it is for .net 2003
My framework is v1.0.3075, and moreover I added it to the IDE and register it with regasm.exe but the problem persist. I looked it in Add-in Manager but it doesn´t appear, please could you help me?
|
|
|
|

|
This is what I am looking for at the time of debuging. WoW!!!
You did a such a Greatttt Job.
Thanks
Chandresh patel
|
|
|
|

|
I am getting following error...
I have installed it, whenever I try to load the plug-in from visual studio 2003 plug-ins menu, it gives following error.
---------------------------
Microsoft Development Environment
---------------------------
The Add-in 'DSWatch' failed to load or caused an exception.
Would you like to remove this Add-in?
If you choose yes, you will need to reinstall the Add-in to use it again.
Error Message:
Error number: 80040154
---------------------------
Yes No
---------------------------
Any idea?
-------------------
Therez No Place like ... 127.0.0.1
|
|
|
|

|
Hi
I'am developing under common account, not being member local Administrators group. DSWatch does't work for me. It even no load into VS, only error message box appeares saying: "The DSWatch plugin failed to load or caused an exception." and Error Number: 80040154.
If I log in as administrator, everything is OK. What can I do? Where I should set what, e.g. permissions? I have tried to give access to my account to any path and any registry key I found and nothing helps.
Thanks
|
|
|
|

|
For me it always tells "This is not a DataSet, DataTable or DataRow!". I tried numerous versions of this plugin - everything works in the same way.
Can anyone give a link where I can download the last version with all fixes?
|
|
|
|

|
hi,
has anyone installed this under VS2005 RTM?
i built and ran the setup, but of course,
it does not show up in the Add-in Manager.
what do i need to do?
thanks...
hong
|
|
|
|

|
Good Job Moh'd keep working and we will wait more ...
|
|
|
|

|
I was getting REAL tired of drilling down through Quick Watch and was thinking of building something like this. Then I decided to do a google search first. Just saved me alot of time on a tool that I didnt HAVE to use but sure made things less frustrating. And unlike many Visual Studio add-in tools I have tried this one actually works!
Great work.
|
|
|
|

|
Another fix here (downloadable source is a wonderful thing):
If you have a dataset in which a column has only null values, that column won't be shown because GetXml() ignores it, and ReadXml() won't introduce the column to the DS.
That's where GetXmlSchema() and ReadXmlSchema() step in.
The changes (roughly, I can send you the source code):
- Connect.Exec(): add
getXmlScehmaExpression="((System.Data.DataSet)"+str+").GetXmlSchema()";
call GetExpression on it too
pass both Values to DatasetWatchFrm.getXml()
- DatasetWatchFrm.getXml(): ReadXmlSchema() before ReadXml()
|
|
|
|

|
Hi,
Thanks for a great tool - I can't work without it...
I poked around the project in the debugger and found that the cause for the "root invalid at 1,1" problem (at least the way I reproduced it) was a timeout of 500 milliseconds (MSDN says 500 minutes, I tend to disagree) in the GetExpression method.
The change I suggest is to increase the timeout to 5 seconds and to show a message if that timeout isn't enough. The code change (tested on VS.NET 2003) is in Connect.cs line 175. Instead of:
expr = debugger.GetExpression(getXmlExpression,true,500);
_DatasetWatchFrm.getXml(expr.Value );
it should be:
int getxml_timeout = 5000;
expr = debugger.GetExpression(getXmlExpression,true,getxml_timeout);
try
{
_DatasetWatchFrm.getXml(expr.Value );
}
catch(Exception)
{
string message = expr.Value;
if(message.IndexOf("timed out") != -1)
message += string.Format(" ({0} msecs)", getxml_timeout);
MessageBox.Show(message);
return;
}
Regards,
Uri Dor
|
|
|
|

|
I'll start to build a small ERP solution,
i want to know about the mos useful refrence about the erp database.
Thanks,
|
|
|
|
|

|
So in your example under the column sex you have 1, 2, 3, 4 so what are the Third and Fourth sex types? Is does that number mean something else? :P
lol
"Your KungFu is not strong enough"
|
|
|
|

|
I have downloaded your viewer and ran the set-up. Everything installed okay. I ran my project and had a breakpoint right after I loaded a dataset. When execution stops I right-click and choose Dataset Quick Watch from the context menu and I get the message, "This is not a dataset." I tried several different attempts to "select the dataset" while suspended. What am I doing wrong?
|
|
|
|

|
Hello,
I wanted to debug your project, 'cause anytime I added the second DataTable to my DataSet and tried to get into the QuickWatch, Visual Studio tells me that "Die gleiche Tabelle (LANGUAGE) kann in zwei geschachtelten Beziehungen nicht ide untergeordnete Tabelle sein." (english: The same Table (LANGUAGE) can't be the slave table in two nested relations).
The names of this two DataTables are LANGUAGE and VALUES and they are independent from each to another. They will be related with a third DataTable, but this DataTable will be created later!
So, I made a demo project and downloaded your source and tried to debug it the way you descriped it in other messages, but it doesn't work. I made stop points in the addin but the addin doesn't stop there. I write messageboxes into the addin... rebuild it... and tried again. The Boxes were displayed but no stop at a stop point again.
Can you help me??
Your work is great but I can't use it this way
binolino
|
|
|
|

|
It worked Great in C# ( .NET 2003). I have some c++ projects. can you please help me with that ?
|
|
|
|

|
Great tool! I use it several times a day...
But every time I try to quickwatch a typed dataset, it only shows the errorbox telling that me that my variable is not a dataset.
I've tryed to change the evaluaton string to:
isDataSetExpression="("+str+" as System.Data.DataSet).Tables";
But this did not work, telling me that the expression is invalid.
Has anyone found a workaround?
|
|
|
|

|
I am using VS 2003 and have the QuickWatch Dataset installed.
So far every dataset that I have tried to check gives me "This is not a Dataset!".
When I mouseover the Dataset name it says its a System.Data.Dataset.
Thanks for any help you can give me.
JefferyS
|
|
|
|

|
I often use just separate DataTables (without DataSets).
Are you planning to enlarge your component for DataTable viewing?
|
|
|
|
|

|
Hello,
Thanks for all of the help you have been providing me so far. I have been able to debug my code now. I have run into a problem with speed now. I have an array of 4096 elements that I wish to view, however when I call debugger.GetExpression() in a loop, the response time is very slow. The task manager is showing 100% usage during this loop. The loop literally takes over 2 minutes to run. I have tried using false for the second argument as well as different values for the max wait time including -1, 5, 10, 200 with hardly any noticable difference in speed.
I have searched the web / google / msn for any answers as to why this is happening.
Thanks in advance for any answer you can provide.
Haiping
|
|
|
|

|
In one message you said: if you want to debug this addin you need to rebuild the project with debug mode and the output folder should be the same dll folder in the programs file
What does this mean?
|
|
|
|

|
I tried to install, repair and remove through .msi setup but it didn't work at all. When I go to Add-In manager, I can see it is installed, but there is a problem with a path so file cannot be found - it is unchecked and when I check it it can't be loaded. Did someone had the same problem? Please help. Thx
|
|
|
|

|
It's nice, but I need a bigger picture. I tried to modify the source but not sure how to get something other than a string. Is there a way to run this in debug mode? Thanks in advance.
Bydia Adams
|
|
|
|

|
Hello,
I have .NET 2002 installed but it does not seem I cand get it work. I installed it but I do not see it in the Tools->Add in page.
Also, I tried to compile it, but the solution file cannot be opwn with .NET 2002.
Best regards,
Alexandru Savescu
P.S. Interested in art? Visit this!
|
|
|
|

|
Your tool is great!
However, some datasets cause an error. The error is:"The data at the root level is invalid. Line 1, Position 1"
The xml for a dataset is included here.
Any Ideas?
Wade
wade.leverett@contibeef.com
|
|
|
|

|
Maybe I'm missing something but it seems that I can only get it to show the first table in the DS. Anybody else have this problem? (Alternately, if the DS stucture contains more than 1 table but only 1 of them has data, does the utility not show any reference to the empty tables at all? )
Thomas
|
|
|
|

|
This tool really helps.....Thank You!
Is it possible to view all of the tables in the dataset?
If I have a dataset with 3 tables, the tool displays only the last one defined.
Thx.
Andy
|
|
|
|

|
A simple tool that is great to have around.
|
|
|
|

|
This is a great idea and i'd really like to get this working.
When I'm debugging, I right click over a dataset name, click on DataSet quickwatch, but I always get the message "This is not a dataset" even though it definetely is.
eg the following line of code gives the error... i've tried it on several other datasets and its the same thing...
DataSet DS_companyTypes = ld_company.Get_CompanyTypes();
any ideas on what could be wrong?
|
|
|
|

|
I get the message: Windows cannot find 'C:\DSWatch\DSWatchSetup\DSWatchSetup.vdproj' when I Open the DSWatchSetup.vdproj file from Windows Explorer.
What is wrong?
Arnt O. Kvannefoss
|
|
|
|

|
When the xml view comes up....
would be good to have some scrollbars to go up and down through the data,..
awesome tool though
|
|
|
|
|

|
it's a useful tool,but it doesn't work
i'm using vs2003.net.
anyone can give me help?
|
|
|
|

|
Excellent idea! You got my 5!
|
|
|
|

|
Would be great if there was direct support view for DataTable variables and DataRows
|
|
|
|

|
Great add-in, thank you... you got my 5
What's a signature?
|
|
|
|
|

|
This is pretty cool, however - you could attempt to serialize the object into xml if it is not a dataset. That would be uber cool.
http://www.lewismoten.com
|
|
|
|

|
I've built and installed this but cannot seem to get it to work. I run another app in debug mode, break at a breakpoint, set my cursor on the dataset, and then right-click. I do not see the DataSet QuickWatch menu item. I'm using VS2003. What could I be doing wrong?
|
|
|
|

|
Great Add-ins. Got my 5.
One question though. Any reason for using that picture as member image?
//Start of joke
Never comment ur code. If it was hard to write, it should be hard to understand !!!
//End of joke
|
|
|
|

|
I like this tool. five star from me.
|
|
|
|

|
:thank you for your nice effort.
assemizm
|
|
|
|
|

|
I ran the install but the Dataset QuickWatch addin did not appear to load in VS2002. Is it compatable with VS2002? Am I missing anything? Thanks.
|
|
|
|

|
Good job. My 5.
Promise only what you can do. And then deliver more than what you promised. This signature was created by "Code Project Quoter".
|
|
|
|

|
Very cool, you might want to enter it into the competition here for the coolest vs.net add in.
|
|
|
|

|
This is a great tool, I can't imagine why no one has done it before. Maybe because I didn't know it COULD be done.
One suggestion, that I already implemented in my own copy: give the XML field scroll bars.
|
|
|
|
 |