Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

38
votes
27answers
12k views

NotImplementedException - are they kidding me?

This really, really urks me, so I hope that someone can give me a reasonable justification for why things are as they are. NotImplementedException. You are pulling my leg, right? No, I'm not going ...
6
votes
7answers
410 views

Ways to show your co-programmers that some methods are not yet implemented in a class when programming in C++

What approaches can you use when: you work with several (e.g. 1-3) other programmers over a small C++ project, you use a single repository you create a class, declare its methods you don't have a ...
5
votes
3answers
136 views

What are Scala standard exceptions?

What are the common standard exceptions in Scala? I am especially interested in how is .Net's NotImplementedException equivalent called? UPDATE: The answer about the NotImplementedException seems to ...
3
votes
3answers
328 views

Why does Code Analysis not warn about NotImplementedException?

I'm pretty sure that previous versions of Visual Studio Code Analysis warned about the use of NotImplementedException, i.e. any member that contained this throw new NotImplementedException(); would ...
2
votes
2answers
111 views

NotImplementedException from .NET's CustomLineCap constructor

I want to draw a custom line cap - a equilateral triangle with the radius r. Apparently I can't: Dim triangleSide As Single = CSng(3 * r / Math.Sqrt(3)) Dim triangleHeight As Single = CSng(3 * r ...
1
vote
2answers
161 views

NotImplementedException in Silverlight and IronPython

i'm hosting IronPython Scripts in one Silverlight Application and i want to run the script and get one System.Windows.Controls.TextBlock object. so i use this ironPython code: import clr ...
1
vote
1answer
564 views

How to solve “this operation requires IIS integration pipeline mode” in ASP.net MVC2

I'm developing an ASP.net MVC2 application, and implement a export to .csv controller action, but when i add the headers to force the download appears in debug "this operation requires IIS integration ...
1
vote
4answers
307 views

FxCop rule that checks for NotImplementedExceptions

I'd like to have the nightly build check for how many NotImplementedExeptions there are in my .NET code so hopefully we can remove them all before releasing. My first thought is that FxCop might be a ...
0
votes
1answer
30 views

Syncing SQL and Active Directory. C# App NotImplementedException

I have an exception in the EventLog for my application like this: Application: Synchronizator_AD.exe Framework Version: v4.0.30319 Description: The process was terminated due to an unhandled ...
0
votes
4answers
116 views

Python - NumPy - Using isnan(x)

I'm trying to use numpy to check if a user input is numerical, I've tried using: from numpy import * a = input("\n\nInsert A: ") if isnan(a) == True: print 'Not a number...' else: print ...
0
votes
1answer
60 views

WCF Service - notimplementedexception

I'm practicing using WCF with two projects in the same solution. The service is supposed to get info from the northwnd db, and the client displays it. Everything was working ok until I added a new ...
0
votes
1answer
82 views

MySQL c++ not implemented exception

I'm making a c++ program with MySQL cpp connector, and i'm stuck into: sql::MethodNotImplementedException on MySQL_Connection::prepareStatement(const sql::SQLString& sql, int autoGeneratedKeys) ...
0
votes
2answers
169 views

Basic JavaScript crashes/hangs IE9, but not FF, Ch, or Op - “Not Implemented”

I get the following error: SCRIPT16385: Not implemented On the following line of code: document.getElementById("amtcase").style = "background-color: #FFFFFF;"; "amtcase" is a text field This ...
0
votes
1answer
142 views

C# System.Drawing Graphic Not implemented exception

The following code compiles, but when the method is called I get System.NotImplementedException: Not implemented. I'm not using custom classes. private void miterTopLeft(Image img, Graphics gfx) { ...
0
votes
2answers
825 views

webrequest get throws an exception “The remote server returned an error: (501) Not Implemented.”

I'm trying to load a file using webrequest method. First I need to log in then get a file or a directory listing. https:///xxx.yyy.zzz/login_template When I look at the website source in firefox, I ...
0
votes
1answer
73 views

DotNetOpenAuth occasionally throws a NotImplementedException

I have DotNetOpenAuth running on a background thread making calls to Google authorized with OAuth on a regular basis. About once a day, which is about one in 10,000 calls, I get the following ...
0
votes
1answer
38 views

COM+: NotImplementedException

I'm trying to instaniate my own COM+ component (running as a library application) without success. All I get is a NotImplementedException when I try to create it dim myComponent As New ...
0
votes
1answer
117 views

How can keep the debugger from breaking on NotImplementedException exception?

I've tried this, but it doesn't seem to work: Application.SetUnhandledExceptionMode(UnhandledExceptionMode.CatchException); Application.ThreadException += new ...
0
votes
2answers
156 views

Mono Documentation for NotImplementedException and MonoTodo

I'm new to Mono and plan to port my application over, if possible. I've run MoMA and there are some places it has identified that I'm calling that could throw a NotImplementedException or are tagged ...
0
votes
3answers
547 views

How do I intercept a NotImplementedException in a WPF application?

How do I intercept a NotImplementedException in a WPF application? I'll occasionally throw a NotImplementedException while testing my in-progress WPF application: Private Sub ...