disable

How can you disable the Windows' "X" close button in the upper right-hand corner for a web-based program that is displayed in IE7?

We are using a software program at our school to enter IEPs (Individualized Education Programs). When entering goals and objectives for a student, users are provided with a Save and a Close button. Close is meant for users not wishing to save the goal they just chose. However, our users are sometimes wanting to back out of the screen ...

Sharepoint Workflow Modification is not disabled

Hi Everybody, I am working on a Sharepoint Server 2007 State machine Workflow. Until now I have a few states and a custom Association/InitiationForm which I created with InfoPath 2007. In Addition I have a few modification forms. I have a Problem with the removing of the modification link in the state-page of my workflow. I have a sta...

How do I disable Tortoise BZR?

I'm a huge fan of bzr and I'm glad they're working on tortoise for it, but currently it's WAY too slow to be useful. The icons are almost always incorrect and when I load a directory in explorer with a lot of branches it locks up my entire system for anywhere from 10 seconds to 2 minutes. I look forward to trying it again in the future...

how to disable/enable network connection in c#

Basically I'm running some performance tests and don't wan't external network to be the drag factor. I'm looking into ways of disabling network LAN. What is effective way of doing it programmatically? I'm interested in c#. If anyone has code snippet that can drive the point home that would be cool. ...

Can you disable an ASP validation on an event click before it postbacks and performs the validation?

(ASP with c#) -Can you disable an ASP validation on an event click before it postbacks and performs the validation? I would like to load some details into a bunch of text-boxes with field validators on them, However I need to Disable the validation of these text-boxes in order to actually fill them as the validation seems to occur at p...

Disable, but not uninstall Resharper 4.x onwards

Any ideas on how to disable, but not uninstall Resharper 4.x or above? ...

Completely Disabling WCF Proxy

How can I configure WCF service and client to completely bypass proxy settings configured in IE. My application works in a LAN and I use both BasicHttp and NetTcp endpoints. ...

Disable button after submit

I'm trying to disable a button when a user submits a payment form and the code to post the form is causing a double post in firefox. This problem does not occur when the code is removed, and does not occur in any browser other than firefox. Any idea how to prevent the double post here? System.Text.StringBuilder sb = new StringBuilder(...

How do you disable cookies in Internet Explorer 7?

I've tried disabling cookies in Internet Explorer 7, I've changed the settings under Internet Options->Privacy and this did nothing, when I reloaded the page. I read somewhere that you need to restart IE7, than physically delete the Internet cache and cookie files first, and finally reload your page to disable cookies. (I also had no l...

Disable drag&drop in solution explorer

Is there a way to disable the drag&drop functionality for Solution Explorer? Why would you ask? I'm using an wacom pen tablet for quite some years and I love it. But when you use it in solution explorer in combination with a source control like TFS or AnkhSvn it's a disaster when you accidentally move a file into an different directory...

prevent values in form from passing

I have 4 elements in my form. Usually, when submitting the form you would get this in the url:index.html?day=01&month=01&year=1999&reporter=Joe+Blogs However, in my interface, users are switching between the date picker and the person picker. Is it possible to only send the values on the select that is active? [I started writing this t...

Disable DTD warning for ant scripts in eclipse?

I'm using Eclipse Ganymede. Everything works fine, but I have an anal-retentive yearning for a warning-free Problems tab. Right now it (correctly) complains about my ant scripts: "No grammar constraints (DTD or XML schema) detected for the document." Any way to turn that off for just those files? Ideally I'd like it to still warn me ...

MSSQL: Disable triggers for one INSERT

This question is very similar to SQL Server 2005: T-SQL to temporarily disable a trigger However I do not want to disable all triggers and not even for a batch of commands, but just for one single INSERT. I have to deal with a shop system where the original author put some application logic into a trigger (bad idea!). That application ...

How to disable a Perl/Tk window close ('X') button on Windows

Hi, Is there a way to make a Perl/Tk window's close ('X') button disabled? I know how to ignore clicking it using the technique described here, but I would much rather have it disabled. I'm using Perl/Tk on Windows. Thanks, splintor ...

disable the CTRL/Wheel zoom effect at runtime

How do you disable the ctrl/wheel zoom effect with css or javascript on certain elements. I create a menu bar that gets distorted when the zoom effect is applied. I would like to disable it for just certain elements. ...

Can I disable exceptions in STL?

Hello, I want to disable exceptions in my C++ aplication, compiled under MSVC. I hve switched the option Enable C++ exceptions to NO, but I get warnings telling me to use the option /Ehsc, which I dont want to. I do not have try/catch blocks in my code, but I use STL. I have found that using macro definition _HAS_EXCEPTIONS=0 should...

Does Firebug have something built-in to disable all javascript for a site/page?

Does Firebug have something built-in to disable all javascript for a site/page? ...

ASP.NET - Separate validation of two forms on one page?

Hi all, I have what should be a fairly simple ASP.NET question, and one I thought I had found a workaround for in the past, but this time I'm having no end of bother trying to get a working solution for it. I have an ASP.NET page with a number of input controls and a series of form validators for them. I wish the page to have separate...

Programatically prevent ASP .NET AJAX scripts from rendering

Does anyone know of a way that I can stop all the .NET AJAX scripts from rendering, even if a ScriptManager exists on the page? The ScriptManager's Visible property has been overridden and disabled so that you receive a NotImplementedException if you try to set the Visible property. The reason I would like to do this is that I don't wa...

How do you disable CBitmapButton?

How do you disable CBitmapButton? I tried using m_bitmapbutton.EnableWindow(false); but it doesn't work. It still fires an event. What I'm trying to do is prevent Button A from firing Event A if Event B is executing (from Button B). So in Event B, I want to disable Button A. ...