User Lea Cohen - Stack Overflowmost recent 30 from stackoverflow.com2009-12-01T10:15:10Zhttp://stackoverflow.com/feeds/user/278http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/239206/datatable-visualizer-disappeared-from-my-visual-studio0DataTable visualizer disappeared from my Visual StudioLea Cohen2008-10-27T06:29:05Z2009-09-18T01:23:51Z
<p>A while ago I noticed I don't have a magnifying-glass next to my datatables. I used to have it, and somehow, sometime, it disappeared...<br />
Has anyone seen this happen? Do you know how to help me view my datatables again? </p>
<p><strong>Update:</strong> I'm still clueless about this. Could anyone point me in some direction, where should I even start looking for an answer? Thanks a lot. </p>
<p><strong>Update:</strong> I changed to a new computer, and still the same problem. But I pinpointed it to being only in Visual Studio 2005. On Visual Studio 2008 I have perfectly normal DataSet and Datatable visualizers.
So I tried re-installing VS2005, to make sure all the components were installed, nothing left out - but Nada. Still no visualizer.</p>
http://stackoverflow.com/questions/1425677/add-days-to-date-in-actionscript1Add days to Date in ActionScriptLea Cohen2009-09-15T07:30:41Z2009-09-15T19:45:30Z
<p>We have an application in which the user has to enter a date who's value is no more than 30 days after the the current date (the date on which the user uses the application). This is a Flash application, therefore I need a way to add 30 days to the current date, and get the right date. Something like in JavaScript:</p>
<pre><code>myDate.setDate(myDate.getDate()+30);
</code></pre>
<p>Or in C#:</p>
<pre><code>DateTime.Now.Add(30);
</code></pre>
<p>Is there such a thing in ActionScript?</p>
http://stackoverflow.com/questions/446321/global-resource-vs-local-resource-in-asp-net3Global resource vs. Local resource in ASP.NETLea Cohen2009-01-15T10:43:30Z2009-09-01T07:48:59Z
<p>We use resx files to localize our web applications. We usually create local resx files (that map to a specific page) when only one page uses a certain phrase, and a global resx file when more than one page needs the phrase.<br />
But the good thing about global resx files is that they are a class, and you can call the phrases like you call properties of a class: </p>
<p>Resource.UI.iNotFound </p>
<p>So I was thinking - why have local resx files at all? why not use one global resx file for the whole application, and that way avoid runtime errors from calling non-existent phrases? </p>
<p>I'm sure there's a good answer for that, I just don't know what it is....</p>
http://stackoverflow.com/questions/1322194/how-to-decompile-a-dll-in-c1How to decompile a DLL in C++Lea Cohen2009-08-24T12:48:14Z2009-08-24T16:26:54Z
<p>I have an old DLL that stopped working (log2vis.dll) and I want to look inside it to see what objects it uses.<br />
The DLL was written in C++ (not .NET). Is there a tool that will decompile/disassemble C++ files?</p>
http://stackoverflow.com/questions/161230/access-to-remote-computers-msmq-gives-remote-computer-is-not-available1Access to remote computer's MSMQ gives "Remote computer is not available"Lea Cohen2008-10-02T07:41:20Z2009-08-24T13:32:12Z
<p>We have a windows application that runs on a server and accesses 4 other servers (all of them are members in the domain) to get the messages in each of their private queues. We've just installed a new server, and for some reason when the application tries to access that computer, it gets a "Remote computer is not available" message.<br />
The application accesses the other servers with a user who is an admin domain user.<br />
Has anyone encountered such a problem, or have a clue as to what could be causing it?</p>
http://stackoverflow.com/questions/1291817/asp-net-suggest-a-best-option-to-allow-the-user-to-download-the-data-in-the-data/1292023#12920231Answer by Lea Cohen for ASp.NET: suggest a best option to allow the user to download the data in the datagrid in the client side in Excel format.Lea Cohen2009-08-18T05:46:22Z2009-08-18T05:46:22Z<p>We do that in a few of our applications. It's really not difficult:
We use the same aspx page (we send it a parameter to indicate that we want an excel file generated from the aspx), with a few lines of code that make the aspx be generated as an xls file.</p>
<ol>
<li><p>The first lines of code in the Page_Load method should be:</p>
<pre><code>//open as excell file
Response.Buffer = true;
Response.ContentType = "application/vnd.ms-excel";
string FileName = this.Page.ToString().Replace("ASP.", "") + ".xls"; // so the file can be saved as excel
Response.AppendHeader("content-disposition", "filename=\"" + FileName + "\";attachment");
</code></pre></li>
<li><p>It's important that when in this mode, you make sure to disable ViewState. Otherwise it could completely confuse Excel and generate errors.</p></li>
</ol>
<p>That's all we do, and it works wonderfully.</p>
<p>I should add that the Microsoft recommendation is to write the GridView into a HtmlTextWriter when exporting it to Excel, in order to make sure that the HTML generated is one that Excel will understand. It's easy to do (except for an exception that is generated, but is easy to overcome), and is explained nicely in these 2 articles:
<a href="http://dotnetslackers.com/GridView/re-33265%5FGridview%5FExport%5Fto%5FExcel.aspx" rel="nofollow">Gridview Export to Excel</a>, and <a href="http://www.highoncoding.com/Articles/197%5FExtensive%20Study%20of%20GridView%20Export%20to%20Excel.aspx" rel="nofollow">Extensive Study of GridView Export to Excel</a></p>
http://stackoverflow.com/questions/638668/delete-directory-from-asp-net-application-returns-to-new-session3Delete Directory from ASP.NET application returns to new sessionLea Cohen2009-03-12T13:42:11Z2009-07-28T10:27:31Z
<p>I'm deleting a directory from within an ASP.NET application. The deletion goes fine, but when I return from it all my session data from before the delete is lost.<br />
It doesn't matter whether I use:</p>
<pre><code> if (Directory.Exists(folderPath))
Directory.Delete(folderPath, true);
</code></pre>
<p>Or: </p>
<pre><code> System.IO.DirectoryInfo d = new System.IO.DirectoryInfo(folderPath);
if (d.Exists)
d.Delete(true);
</code></pre>
<p>In both cases I lose my session data. </p>
<p>Has anyone run into this problem?</p>
http://stackoverflow.com/questions/1187372/email-notification-with-team-foundation-20050Email notification with Team Foundation 2005Lea Cohen2009-07-27T10:03:49Z2009-07-27T11:48:50Z
<p>I would like to get email notifications whenever a check in is done into Team Server. We have Team foundation server 2005. Is there a way to do that there? I know that the 2008 version has such a feature.</p>
http://stackoverflow.com/questions/1184322/link-to-css-directory-with1Link to CSS directory with ~Lea Cohen2009-07-26T11:24:30Z2009-07-26T11:35:03Z
<p>I have a CSS link that looks like this:</p>
<pre><code><link href="../../css/WW/parts.css" type="text/css" rel="stylesheet" />
</code></pre>
<p>But now I want the CSS directory not to be linked to as "../../", but as "~/", i.e from the top of the project.</p>
<p>So I changed the CSS call to:</p>
<pre><code><link href="~/project/css/WW/parts.css" type="text/css" rel="stylesheet" />
</code></pre>
<p>But what happens is that the path is added to the current paht, instaed of going to the top of the project:</p>
<p><a href="http://localhost:3333/Project/Apps/WW/" rel="nofollow">http://localhost:3333/Project/Apps/WW/</a><strong>~/project/css/WW/parts.css</strong></p>
<p>What am I doing wrong? What's the right way to go about this?</p>
http://stackoverflow.com/questions/1062194/ihtmlelementcollection-sometimes-generates-a-unauthorizedaccessexception0IHTMLElementCollection sometimes generates a UnauthorizedAccessExceptionLea Cohen2009-06-30T07:18:00Z2009-06-30T08:37:59Z
<p>We use the IHTMLElementCollection in an ASP.NET 2.0 application.<br />
Sometimes- not always - it gives us a UnauthorizedAccessException. I think it only happens on our server, and not locally.</p>
<p>I tried searching in searchdotnet.com, and found only 2 <a href="http://www.searchdotnet.com/results.aspx?cx=002213837942349435108%3Ajki1okx03jq&q=IHTMLElementCollection+UnauthorizedAccessException&sa=Search+.NET+sites&cof=FORID%3A9#431" rel="nofollow">results</a>, but in both of them the use of IHTMLElementCollection was the solution to that exception, not the cause...</p>
<p>What could make the IHTMLElementCollection generate that exception?</p>
http://stackoverflow.com/questions/1054404/usingwebbrowser-control-in-asp-net-application1UsingWebBrowser control in ASP.NET applicationLea Cohen2009-06-28T06:38:39Z2009-06-28T06:44:33Z
<p>I want to create site thumbnails through my web application, so I thought I would use the WebBrowser control. However, I get an error: </p>
<blockquote>
<p>System.Threading.ThreadStateException: ActiveX control '8856f961-340a-11d0-a96b-00c04fd705a2' cannot be instantiated because the current thread is not in a single-threaded apartment.</p>
</blockquote>
<p>I tried setting the current thread:</p>
<p><code>Thread.CurrentThread.ApartmentState = ApartmentState.STA</code></p>
<p>But that didn't help. </p>
<p>Is in not possible to use the WebBrowser control in ASP.NET?</p>
http://stackoverflow.com/questions/796999/executenonquery-returns-1-even-though-the-execution-was-successful0ExecuteNonQuery returns -1 even though the execution was successfulLea Cohen2009-04-28T09:29:22Z2009-04-28T09:46:13Z
<p>I'm running an asp.net 2.0 web application. Suddenly this morning, ExecuteNonQuery started returning -1, even though the commands in the SP that ExecuteNonQuery is running, are executing (I see items inserted and updated in the DB), and there is no exception thrown.</p>
<p>This happens only when I am connected to our production DB. When I'm connected to our development DB they return the correct number of rows affected. </p>
<p>Also, interestingly enough, ExecuteDataSet doesn't have problems - it returns DataSets beautifully. </p>
<p>So it doesn't seem like a connection problem. But then, what else could it be?</p>
http://stackoverflow.com/questions/790459/access-data-on-page-from-web-control0Access data on Page from Web ControlLea Cohen2009-04-26T08:03:13Z2009-04-27T01:40:32Z
<p>I created a web control, and it needs some data from its parent page.<br />
How can it access that data?</p>
<p><strong>Update:</strong> Thank you for the quick solutions, however they don't work for me. Visual Studio doesn't recognize the name of the page as a class. I took the name from where the class is defind:</p>
<pre><code>public partial class Apps_Site_Templates_CollegesMain : cUICommonFeatures
</code></pre>
<p>(cUICommonFeatures inherits from System.Web.UI.Page)</p>
<p>But in the control, when I define </p>
<pre><code> protected System.Web.UI.Page parentPage;
parentPage = (Apps_Site_Templates_CollegesMain)Page;
</code></pre>
<p>I get a compliation error:</p>
<p>The type or namespace name 'Apps_Site_Templates_CollegesMain' could not be found (are you missing a using directive or an assembly reference?) </p>
<p>I feel like I'm missing something really basic here, and I'll probably be very embarrassed when I get an answer, but I do need help....</p>
http://stackoverflow.com/questions/355600/virtual-directory-in-asp-net-project0Virtual Directory in ASP.NET projectLea Cohen2008-12-10T10:16:44Z2009-04-02T19:30:53Z
<p>In our web application we have a directory which resides outside of the project. On IIS that's no problem to do, but can I do that also in my project in Visual Studio? </p>
<p><strong>Edit:</strong> My project is running on File System, and not on Local IIS</p>
http://stackoverflow.com/questions/446321/global-resource-vs-local-resource-in-asp-net/694490#6944905Answer by Lea Cohen for Global resource vs. Local resource in ASP.NETLea Cohen2009-03-29T11:25:52Z2009-03-29T11:25:52Z<p>I kept on looking for guidelines, and found this in <a href="http://msdn.microsoft.com/en-us/library/ms227427.aspx" rel="nofollow">MSDN</a>:</p>
<blockquote>
<p><strong>Choosing Between Global and Local Resource Files</strong></p>
<p>You can use any combination of global
and local resource files in the Web
application. Generally, you add
resources to a global resource file
when you want to share the resources
between pages. Resources in global
resource files are also strongly typed
for when you want to access the files
programmatically.</p>
<p>However, global resource files can
become large, if you store all
localized resources in them. Global
resource files can also be more
difficult to manage, if more than one
developer is working on different
pages but in a single resource file.</p>
<p>Local resource files make it easier to
manage resources for a single ASP.NET
Web page. But you cannot share
resources between pages. Additionally,
you might create lots of local
resource files, if you have many pages
that must be localized into many
languages. If sites are large with
many folders and languages, local
resources can quickly expand the
number of assemblies in the
application domain. </p>
<p>When you make a change to a default resource file,
either local or global, ASP.NET
recompiles the resources and restarts
the ASP.NET application. This can
affect the overall performance of your
site. If you add satellite resource
files, it does not cause a
recompilation of resources, but the
ASP.NET application will restart.
When you make a change to a default
resource file, either local or global,
ASP.NET recompiles the resources and
restarts the ASP.NET application. This
can affect the overall performance of
your site. If you add satellite
resource files, it does not cause a
recompilation of resources, but the
ASP.NET application will restart.</p>
</blockquote>
<p>So it seems that it's really up to the programming team to weigh the pros and cons of each method and choose what's good for them.</p>
http://stackoverflow.com/questions/432589/is-there-a-way-to-rotate-text-input1Is there a way to rotate text input?Lea Cohen2009-01-11T08:44:14Z2009-03-20T02:48:18Z
<p>I have to align a textbox and some text, at about 30 degrees, like this:
<img src="http://c3.ort.org.il/Apps/Public/getfile.aspx?inline=yes&f=files/ba3c28fc-8c3e-46d9-b4f3-effda4c7e27b/92512b48-c566-4a05-a955-39003e9c4b5d/3fd286a7-0a1c-4db6-9308-4fe563f5662b/7b39f5d1-0070-4f8a-a6b1-a588173a4dde.JPG" alt="rotated text" /></p>
<p>I would like it to work at least in IE and FF.<br />
everything I found on the net deals with image rotation.<br />
Anyone?</p>
http://stackoverflow.com/questions/589694/datatable-compute-function-for-multiple-colmuns0Datatable Compute Function for multiple colmunsLea Cohen2009-02-26T08:50:24Z2009-02-26T09:03:19Z
<p>I want to count the number of non-null values per column in a Datatable. I could loop through the columns and use the compute function on each column, but I was wondering if there is a more efficient way to do this.</p>
http://stackoverflow.com/questions/4434/can-i-configure-visual-studio-not-to-change-startup-project-everytime-i-open-a-fi/4443#44432Answer by Lea Cohen for Can I configure Visual Studio NOT to change StartUp Project everytime I open a file from one of the projects?Lea Cohen2008-08-07T05:58:25Z2009-02-20T14:58:54Z<p>The way to select a startup project is described in <a href="http://blogs.msdn.com/saraford/default.aspx" rel="nofollow">Sara Ford's blog "Visual Studio Tip of the Day</a>" (highly recommended). She has a post there about <a href="http://blogs.msdn.com/saraford/archive/2008/07/29/did-you-know-how-to-select-the-startup-project-269.aspx" rel="nofollow">setting up StartUp projects</a>. Essentially there are 2 ways, the easiest one being right-clicking on the desired project, and choosing "Set As StartUp Project". That prevents other projects from becoming the StartUp project, even if you click on one their files. </p>
http://stackoverflow.com/questions/564443/excel-dll-for-microsoft-office-interop-excel0Excel dll for Microsoft.Office.Interop.ExcelLea Cohen2009-02-19T08:55:14Z2009-02-19T09:18:48Z
<p>We want to use Microsoft.Office.Interop.Excel in our web application. Everything works fine on our local machines, but on our test machine we're running into problems. It has neither Visual Studio nor Office installed on it.<br />
We're using .NET framework 2.0 and the server is running on Windows Server 2003 with IIS6. </p>
<p>Is there a dll that needs to be installed on the machine or added to the bin of the web application?</p>
http://stackoverflow.com/questions/355500/event-log-messages-get-overrriden-by-another-event-log/550535#5505350Answer by Lea Cohen for Event log messages get overrriden by another event logLea Cohen2009-02-15T08:34:36Z2009-02-15T08:34:36Z<p>It seems that the problem was that we had already created an event log with that name, and even though we deleted it, it didn't help. The solution was to create an event log with a different name.</p>
http://stackoverflow.com/questions/355500/event-log-messages-get-overrriden-by-another-event-log0Event log messages get overrriden by another event logLea Cohen2008-12-10T09:27:02Z2009-02-15T08:34:36Z
<p>I create event logs for asp.net projects error logging. I do it by adding a key in regedit, and then a sub-key.<br />
Sometimes, I create a new key and sub-key, and instead of getting a new, empty event log, I see in the event viewer that it's showing me the logs from a different project. I'm not able to find a pattern as to when this happens.<br />
Has anyone encountered such a problem? Am I doing something wrong? </p>
http://stackoverflow.com/questions/477314/how-can-i-see-all-items-checked-out-by-other-users-in-tfs3How can I see all items checked out by other users in TFS?Lea Cohen2009-01-25T07:22:48Z2009-01-25T08:14:40Z
<p>I want a list of all the checked out files, by all users, in a project in TFS 2005.
All I can see now are <em>my</em> checked out files - in the pending changes window. I remember that in Source Safe there was such an option - is there one in TFS 2005?</p>
http://stackoverflow.com/questions/457275/add-ons-in-a-compiled-language0Add ons in a compiled languageLea Cohen2009-01-19T11:14:12Z2009-01-19T11:43:07Z
<p>We are developing a CMS in ASP.NET. We love the idea of add-ons (like in Wordpress, where any developer can add a menu button or a widget) and would like to enable developers to do the same with our system. </p>
<p>However I think that the fact that C# is a compiled language is an obstacle in the way of add-ons. </p>
<p>Am I right? Or is there a way to create add-ons for a ASP.NET application?</p>
http://stackoverflow.com/questions/268132/invert-if-statement-to-reduce-nesting22Invert "if" statement to reduce nestingLea Cohen2008-11-06T09:55:26Z2008-12-12T13:16:37Z
<p>When I ran Resharper on my code, for example:</p>
<pre><code> if (some condition)
{
some code...
}
</code></pre>
<p>Resharper gave me the above warning (Invert "if" statement to reduce nesting), and suggested the following correction:</p>
<pre><code> if (!some condition) return;
some code...
</code></pre>
<p>I would like to understand why that's better. I always thought that using "return" in the middle of a method problematic, somewhat like "goto".</p>
<p><strong>Update:</strong> I could only choose one correct answer, but almost all the answers were great (even if they contradicted each other....). Thanks everyone!</p>
http://stackoverflow.com/questions/355933/global-member-vs-passing-parameters2Global member vs. passing parametersLea Cohen2008-12-10T12:49:09Z2008-12-10T16:50:51Z
<p>I have a ASP.NET project, in which I have a method with 10 local variables. This method calls about 10 other methods. 3 of the called methods need all the variables. Is it considered good practice to turn all those variables into global members, and then they don't have to passed as parameters?</p>
http://stackoverflow.com/questions/336813/server-transfer-vs-context-rewritepath2Server.Transfer vs. Context.RewritePathLea Cohen2008-12-03T10:57:40Z2008-12-03T11:45:41Z
<p>I understand they both don't change the URL that the client sees. Is there anything in them that makes one of them preferable over the other?<br />
I'm planning to use it in the Application_BeginRequest in Global.asax, but also in regular aspx page.</p>
http://stackoverflow.com/questions/330585/using-applicationbeginrequest-for-url-rewriting2Using Application_BeginRequest for url rewritingLea Cohen2008-12-01T11:37:26Z2008-12-01T21:35:39Z
<p>Up till now we've been rewriting URL's using a custon 404 page: the url would not map to any file in the site, and we configured the IIS to send 404 error to a aspx page which redirected those url's to the correct URL.<br />
Now we want to stop using redirects, so after reading Scott Guthrie's article on Url Rewriting, I want to use the Application_BeginRequest in Global.asax. The thing is that a lot of our url's are not rewrites, and can get to the right place without any intervention. I'm worried that now every single request is going to have to go through the Application_BeginRequest method (even the un-rewritten url's), and I'm afraid it will slow down their loading time.<br />
What do you think? Is loading time an issue when using Application_BeginRequest?</p>
http://stackoverflow.com/questions/145322/webfocus-is-there-a-free-open-source-alternative0WebFocus - is there a free/open source alternative?Lea Cohen2008-09-28T06:13:00Z2008-12-01T20:05:00Z
<p>What is a good free/open source alternative to <a href="http://en.wikipedia.org/wiki/WebFOCUS" rel="nofollow">WebFOCUS</a>? </p>
<p>Is there an ASP.NET way of getting info from an OLAP cube? </p>
<p><strong>Update:</strong> I chose Magnus Smith's answer as the correct one, but <a href="http://stackoverflow.com/questions/145322/webfocus-is-there-a-freeopen-source-alternative#145467">Alexmac's answer</a> was also very good!</p>
http://stackoverflow.com/questions/304824/is-there-a-way-to-restore-a-db-in-sql-2005-from-ldf-only0Is there a way to restore a DB in SQL 2005 from LDF only?Lea Cohen2008-11-20T10:00:45Z2008-11-20T10:03:44Z
<p>Our DB server fell, and we need to restore some of it's DB's. We can find only the LDF file of the needed DB. Is there a tool that can use that for restoring? We're using SQL 2005.</p>
http://stackoverflow.com/questions/34768/setting-a-forms-action-in-net-3-5-sp1-causes-errors-when-compiled/280868#2808680Answer by Lea Cohen for Setting a form's action in .net 3.5 SP1 causes errors when compiledLea Cohen2008-11-11T13:27:56Z2008-11-11T13:27:56Z<p>I just ran into the same problem.
From what I understood it is indeed caused by the fact the my PC has .NET 3.5 SP1 on it, and the server to which I deployed the project doesn't.<br />
From what I understand, one solution is that the server be updated with .NET 3.5 SP1. As I don't want to do that yet, I just removed the "action" attribute from all the forms in the project, and that solved the problem.<br />
<a href="https://connect.microsoft.com/VisualStudio/feedback/ViewFeedback.aspx?FeedbackID=361981&wa=wsignin1.0" rel="nofollow">Read more</a></p>
http://stackoverflow.com/questions/1425677/add-days-to-date-in-actionscript/1427554#1427554Comment by Lea Cohen on Add days to Date in ActionScriptLea Cohen2009-09-17T08:03:05Z2009-09-17T08:03:05ZThat's great! I just want to emphasize that this works only in AS3http://stackoverflow.com/questions/1291817/asp-net-suggest-a-best-option-to-allow-the-user-to-download-the-data-in-the-data/1292023#1292023Comment by Lea Cohen on ASp.NET: suggest a best option to allow the user to download the data in the datagrid in the client side in Excel format.Lea Cohen2009-08-19T05:51:23Z2009-08-19T05:51:23ZTo avoid downloading excess HTML write a server side conditional before the HTML:
<% if (!excelState) {%>
<div>...</div>
<% } %>
As for pagination, you can disable pagination with a condition too:
if (excelState)
{
grdMappingAndForecast.AllowPaging = false;
}http://stackoverflow.com/questions/1187372/email-notification-with-team-foundation-2005/1187396#1187396Comment by Lea Cohen on Email notification with Team Foundation 2005Lea Cohen2009-07-27T11:13:08Z2009-07-27T11:13:08ZThank you very much ! I don't know how I didn't see that option before... But I'm not getting any emails... Could it be a problem in the server?http://stackoverflow.com/questions/1062194/ihtmlelementcollection-sometimes-generates-a-unauthorizedaccessexceptionComment by Lea Cohen on IHTMLElementCollection sometimes generates a UnauthorizedAccessExceptionLea Cohen2009-06-30T08:38:27Z2009-06-30T08:38:27ZYes, I do mean that. Thank you for your correction. I will change the tag from ASP.NET 2.0 to mshtmlhttp://stackoverflow.com/questions/1054404/usingwebbrowser-control-in-asp-net-application/1054408#1054408Comment by Lea Cohen on UsingWebBrowser control in ASP.NET applicationLea Cohen2009-06-28T07:03:17Z2009-06-28T07:03:17ZThank you very much - that's exactly what I neededhttp://stackoverflow.com/questions/239206/datatable-visualizer-disappeared-from-my-visual-studio/974750#974750Comment by Lea Cohen on DataTable visualizer disappeared from my Visual StudioLea Cohen2009-06-14T12:26:59Z2009-06-14T12:26:59ZNo, I never found out what the problem was (there is an accepted answer because I had a bounty on this question, and a question with a bounty always has to get an accepted answer within 7 days). My problem persists on VS2005, but doesn't exist on VS2008.http://stackoverflow.com/questions/477314/how-can-i-see-all-items-checked-out-by-other-users-in-tfs/477364#477364Comment by Lea Cohen on How can I see all items checked out by other users in TFS?Lea Cohen2009-04-30T12:11:30Z2009-04-30T12:11:30ZWe upgraded Team Explorer to 2008! (And stayed with team server 2005)http://stackoverflow.com/questions/796999/executenonquery-returns-1-even-though-the-execution-was-successful/797066#797066Comment by Lea Cohen on ExecuteNonQuery returns -1 even though the execution was successfulLea Cohen2009-04-30T06:42:35Z2009-04-30T06:42:35ZThe problem was indeed NOCOUNT being on, but not in the SP level, but in the Database Server level. It was accidentally set when our DBA ran the following command:
declare @option int
set @option = @@options | 64
exec sp_configure 'user options', @option
RECONFIGURE
And the way to undo it is: In SQL Management Studio, right click the relevant Database Engine, and choose Properties. Then choose "connections" from the "Select a Page" list. There, under "Default connection options", un-check the checkbox near "no count"http://stackoverflow.com/questions/790459/access-data-on-page-from-web-control/790484#790484Comment by Lea Cohen on Access data on Page from Web ControlLea Cohen2009-04-26T11:55:16Z2009-04-26T11:55:16ZMy problem is that Visual Studio doesn't recognize the parent page name as a class... I updated my questionhttp://stackoverflow.com/questions/239206/datatable-visualizer-disappeared-from-my-visual-studio/708056#708056Comment by Lea Cohen on DataTable visualizer disappeared from my Visual StudioLea Cohen2009-04-02T07:04:54Z2009-04-02T07:04:54ZI had an Addin Called "CopySourceAsHtml", so I disabled that, and ran devenv /ResetSettings from an admin console, but still no magnifying glass....http://stackoverflow.com/questions/239206/datatable-visualizer-disappeared-from-my-visual-studio/694565#694565Comment by Lea Cohen on DataTable visualizer disappeared from my Visual StudioLea Cohen2009-04-02T06:52:10Z2009-04-02T06:52:10ZThank you for your continuous help - I tried devenv /ResetSettings but it didn't help :-(http://stackoverflow.com/questions/239206/datatable-visualizer-disappeared-from-my-visual-studio/694565#694565Comment by Lea Cohen on DataTable visualizer disappeared from my Visual StudioLea Cohen2009-04-01T09:50:58Z2009-04-01T09:50:58ZThank you for your edit!
1) No
2) Yes
3) I'm not sure I fully understood the process, but I did open 2 Visual studios and the same project in them, and attached the 2nd's debugger to the 1st VS - and I don't see the DataSetVisualizer in Debug/Windows/Modules http://stackoverflow.com/questions/616970/why-can-i-not-see-the-vs-2005-dataset-visualizer-anymoreComment by Lea Cohen on Why can I not see the VS 2005 dataset visualizer anymore?Lea Cohen2009-03-30T05:32:49Z2009-03-30T05:32:49ZI asked a similar question, but haven't gotten an answer yet..
<a href="http://stackoverflow.com/questions/239206/datatable-visualizer-disappeared-from-my-visual-studio/694565#694565" rel="nofollow" title="datatable visualizer disappeared from my visual studio">stackoverflow.com/questions/239206/…</a>
http://stackoverflow.com/questions/239206/datatable-visualizer-disappeared-from-my-visual-studio/694565#694565Comment by Lea Cohen on DataTable visualizer disappeared from my Visual StudioLea Cohen2009-03-30T05:30:48Z2009-03-30T05:30:48ZI checked, and the file does exist.http://stackoverflow.com/questions/638668/delete-directory-from-asp-net-application-returns-to-new-session/638684#638684Comment by Lea Cohen on Delete Directory from ASP.NET application returns to new sessionLea Cohen2009-03-12T19:16:18Z2009-03-12T19:16:18ZThe directory is in a virtual directory in the application. Is there a way to get around the AppDomain restart?