error

iis 7 handler error

The resource you are looking for does not have a handler associated with it. This is the error that i get when trying to load an asp file from iis 7.0 I am using windows vista home basic I got to know that the solution for this is to enable the static file handler also, there is no file handler installed in vista home basic ........C...

Is there a safe way to clean up stack-based code when jumping out of a block?

I've been working on Issue 14 on the PascalScript scripting engine, in which using a Goto command to jump out of a Case block produces a compiler error, even though this is perfectly valid (if ugly) Object Pascal code. Turns out the ProcessCase routine in the compiler calls HasInvalidJumps, which scans for any Gotos that lead outside of...

Compilation error while porting from gfortran to ifort

I'm trying to port a program from gfortran to ifort (Intel Fortran Compiler 11). I'm stuck with two files that only compile with gfortran: gfortran -x f77 -c daedrid.ff gfortran -x f77-cpp-input -c daedris.ff when I try to run intel fortran compiler with these files, I get: ifort -fpp -c daedrid.ff ifort: warning #10147: no action pe...

Can't apply 3d properties to autoshape

The workbook I am working on in Excel uses graphics with 3d properties which are set in VBA. I just changed an image in the workbook, and now Excel complains that it can't execute any of the following lines of code: Selection.ShapeRange.ThreeD.Depth = fsdoord Selection.ShapeRange.ThreeD.ExtrusionColor.RGB = carcol Selection.ShapeRange....

Error 1310. Error writing to file: C:\Config.Msi\997da2c.rbf

Greetings Friends, I am facing a peculiar problem; i am creating a setup.exe in Installshield 2008 Primer Edition and install the setup in a laptop which has the Operating System Windows XP Professional. The setup runs fine and install all the files successfully; but when i click the Uninstall icon during Uninstallation process the bel...

iPhone - SQLite Database Read problem

i trying to do basic application. my files list; DatabaseClass.h and .m, IDRGameAppDelegate.h and .m, scoredb.sqlite, ScoreViewController.h and .m, MainWindow.xib // Main Window ScoreWindow.xib //Show Score Window 1.) my database is ; CREATE TABLE "game" ("id" INTEGER PRIMARY KEY ,"name" VARCHAR(32),"score" VARCHAR(20)); INSERT INTO ...

Unix 'find' + 'grep' syntax vs. awk

I was using this line to find the phrase, 'B206' within files in the directory I was in and all of its sub directories. find . -exec grep -s "B206" '{}' \; -print It crashes when it tries to read certain files and actually changes the title bar in putty to a bunch of weird characters For example, it crashes all the time when it hits ...

Maven Eclipse volume label syntax error

When I do a clean all on my maven project in Eclipse, it always comes back with the following error: The filename, directory name, or volume label syntax is incorrect I have the maven builder and java bulider enabled. Does anyone know what this error means? thanks, Jeff ...

Trouble compiling a header file in VC++

I just reorganized the code for a project and now I'm getting errors I can't resolve. This header is included by a .cpp file trying to compile. #include "WinMain.h" #include "numDefs.h" #include <bitset> class Entity { public: Entity(); virtual ~Entity(); virtual bitset<MAX_SPRITE_PIXELS> getBitMask(); virtual void ge...

ASP.Net MVC Exception Logging combined with Error Handling

Hi. I am looking for a simple solution to do Exception Logging combined with Error Handling in my ASP.Net MVC 1.0 application. I've read lots of articles, including Questions posted here on StackOverflow, which all provide varying solutions for different situations. I am still unable to come up with a solution that suits my needs. Here...

Type problems with native Java classes.

Hello, I have the following problem, maybe someone can help me (or explain, where my mistake is). Given are a trait and a class: trait TextAttr[T <: {def setText(s:String); def getText : String}] { val obj : T def txt_= (s:String) = obj.setText(s) def txt = obj.getText } class ScalaText { private var t = "" def setText(s:Str...

Import Error on Dates (Import from oracle 10g to sql server 2005)

Hi all, I've been trying to import a table from oracle 10g into SQL Server 2005 using the task import wizard and i keep getting this error: - Copying to [PersonDB].[PEOPLE] (Error) Messages Error 0xc0202009: Data Flow Task: SSIS Error Code DTS_E_OLEDBERROR. An OLE DB error has occurred. Error code: 0x80004005. An OLE DB record is avai...

webbrowser disable script debugging in Visual Basic 6

Hi, I want to disable script errors from popping up in a VB6 application. (I have VB6 installed on this machine). Currently, if I navigate to a particular page, it pops up saying "INternet Explorer Script Error: An error has ocurred in the script on this page" ... "Do you want to continue running scripts on this page?" Setting the we...

Firefox Error: Permission Denied to get Window.Document

I have a standard 3-frame layout; "fnav" on the left, "fheader" at the top and "fcontent" below the header. All files are located locally on the hard drive. This is the JS function that is throwing the error: function writeHeaderFrame() { try { var headerFrame = window.top.frames['fheader']; var headerTable = docu...

My class is not a servlet error

I have the following servlet code public void doPost(HttpServletRequest request, HttpServletResponse response){ Backup bup = new Backup(); bup.doBackup(); response.setContentType("text/html"); PrintWriter out; try { out = response.getWriter(); out.println("You backed up your data - well hopefully"); out.flush(); out.close()...

Persuading the business that fundamental design flaws are worth fixing

This is the second project I've worked on where an incorrect assumption has been made in the design of the software. In both cases it has resulted in a solution that is: More likely to get bugs related to the flaw More messy to work with as workarounds are implemented to get around it Harder to understand as the assumption does not mat...

Using a global (dumb) error page for all ASP.NET MVC errors?

I've set up and configured ELMAH to log all of my errors on an ASP.NET MVC project I'm working on. It will be used by a small group of users who don't need to know too much so whenever there is any sort of error (404, InvalidOperation, Y2K... anything!) I just want to show them a generic default error view with instructions to call our h...

How to overcome <customErrors> error in a .NET remote hosting environment?

I am hoping that someone around here already confronted this error and is an easy fix. We are unable to see the real error, and we have done all that we think we can do. Any ideas, apparently we cannot see the error because of security. We are always able to setup hosting internally but we want to avoid that. Any ideas? The screensho...

how to Ignore definitions (VS2008)

Hi, i have some sourcecode that I want to compile with VS2008 but there are many errors i have to fix. Now there are some Enums like: enum { BACKGROUND = 0x00000001, WEAPON = 0x00000002, TRANSPARENT = 0x00000004 } The problem is that TRANSPARENT is defined as: #define TRANSPARENT 1 in WinGDI.h That will cause a comp...

Unusual std::map runtime error

I'm hacking together an editor for a game I'm working on and as part of that editor, I need to have textures, obviously. I've created a std::map variable as so, std::map<std::string, unsigned int> textures; In my image loading code, I have the following snippet. unsigned int id; glGenTextures(1, &id); glBindTexture(GL_TEXTURE_2D, id)...