error

ASP.NET 2.0 Compilation Error BC30002: Type is not defined.

First of all, let me explain the situation, I know this is a bit complicated. And I apologize for my poor English. I have created a dll library which contains the classes I created. I tested the library with Console Application and web site created with Visual Studio 2005, everything works fine. So I copied the dll to the "Bin" folder ...

[Ruby] Sequel example won't run

Hi, I've just installed "sequel" gem for Ruby. I wanted to try example from Sequel website and it won't work :( test.rb: require 'rubygems' require 'sequel' DB = Sequel.sqlite # memory database DB.create_table :items do primary_key :id String :name Float :price end items = DB[:items] # Create a dataset # Populate the tab...

Error compiling Visual Studio C++ project - error with cl.exe

Hi all, I'm running Visual Studio 2005 Pro, and have been getting the following error recently: Error 1 Error result -1 returned from 'C:\Program Files\Microsoft Visual Studio 8\VC\bin\cl.exe'. Reading some of the other posts around here, I've learned that cl.exe is native to VS 2008. I do have an install of 2008 Express (but C# onl...

PHP mail() errors: Hide attempted email but still show error

I am working on a 'forgot password' form, currently I am working locally so the mail function will not work but the errors come up like this: Warning: mail() [function.mail]: Failed to connect to mailserver at "localhost" port 25, verify your "SMTP" and "smtp_port" setting in php.ini or use ini_set() in ... on line 508 Error Sending Em...

Excel VBA Error when adding attachments using CDO.Message "Object doesn't support this property or method"

VBA/Excel Macro Programming - I'm trying to automate sending out an email with an Excel attachment. When I try and add an attachment, I get the following error: "Object doesn't support this property or method". Anyone have any ideas? It's not filename, filepath issues, the file exists, and the path is correct. Dim wbOld As Workbook D...

What in my app could cause "repllog.exe" to not execute?

I have a mobile app, that when installed on my mobile devices, is causing an alarming percentage (65%ish) of them to show this message : Cannot execute repllog.exe I have done some googling and I am still not even 100% sure what this message means. If any one knows why my app could be causing this, I would love to hear why. (A bit of...

Confusing error E_UNEXPECTED(0x8000FFFF).

No error message available, result code: E_UNEXPECTED(0x8000FFFF). I couldn't find any solutions through google. Encountered this while parsing an excel file. Does anyone know why this even occurs? It would be fine and all if it allowed me to recover from the error, but it even goes through the try catch and finally clause and rende...

error: 'INT32_MAX' was not declared in this scope

I'm getting the error error: 'INT32_MAX' was not declared in this scope But I have already included #include <stdint.h> I am compiling this on (g++ (GCC) 4.1.2 20080704 (Red Hat 4.1.2-44) with the command g++ -m64 -O3 blah.cpp Do I need to do anything else to get this to compile? or is there another C++ way to get the constant ...

hibernate startup error

I am getting a weird message printed to standard our when hibernate starts up and i am having trouble diagnosing it. here is the message that prints out (it shows up red in my eclipse console, so i believe that means it was written to standard error): initialPoolSize-> coercedPropVal: 1 maxIdleTime-> coercedPropVal: 1500 maxPoolSize-> ...

Cannot get declared variables in javascript

Hello, Consider a javascript file script.js which contains the code alert(theVar); Now, i linked the js file to the document like <script type="text/javascript"> var theVar= 'a alert'; </script> <script type="text/javascript" src="script.js"></script> //Contains alert(theVar); The variable theVar is used and i get a alert. This ...

PHP values inside an arrays in a PHP file are displaying an error when that file is called via Ajax!

I call a php file in the following way using Fancybox index.php: <div class="pic"> <a id="showcase1" href="showcase/showcase1.php"><img src="images/showcase1t.png"/></a> </div><!-- .pic --> inside showcase/showcase1.php I have the following code: <?php include_once '../localization.php'; ?> <div id="inline"> ...

On Submit - Check at least one checkbox

Hi, I have multiple check boxes. When the Submit button is clicked I want to check if at least one checkbox is selected. Its not working function doSubmit(){ function check_checkboxes() { checked=false; var c = document.getElementsByTagName('input'); for (var i = 1; i < c.length; i++) { if (c[i].type...

Javascript validation

I have two input fields holidayDate and Description(id=tags) <html> <head> <script type="text/javascript"> $(document).ready(function() { $('#holidayDate').datepicker(); var availableTags = ["New years Day", "Martin Luther King Day","Groundhog Day", "Valentine's Day", "Washington's Birthday", "Easter", "Earth Day", "National Arb...

Why am I getting this java.io.exception "Can't allocate memory" from Hudson?

Here's what I believe to be the relevant error message: Caused by: java.io.IOException: Cannot run program "/usr/bin/git" (in directory "/var/lib/hudson/jobs/Goals/workspace"): java.io.IOException: error=12, Cannot allocate memory at java.lang.ProcessBuilder.start(ProcessBuilder.java:474) at hudson.Proc$LocalProc.<init>(Proc.jav...

getThirdMondayInJanuary(): Not working

I need to get third monday in january. I am trying this is javascript **@guys who commented: I was trying to implement this. <script type="text/javascript"> $(document).ready(function() { $('#holidayDate').datepicker(); var availableTags = ["New years Day", "Martin Luther King Day", "Groundhog Day", "Valentine's Day", "Wash...

RoutingError on Ruby Rails?

Hey everyone, thanks for reading this. Ihave the next issue: When I call my "New" template (generated by scaffold) I got the next error: <h1>ActionController::RoutingError in Flujos_de_trabajo#new</h1> Showing app/views/flujos_de_trabajo/new.html.erb where line #3 raised: flujos_de_trabajo_url failed to generate from {:controller=>"f...

obtaining error number of an error

I need to obtain the error number from an error that has occurred in Python. Ex; When trying to transfer a directory via the Paramiko package, an error is caught with this piece of code: try: sftp.put(local_path,target_path) except (IOError,OSError),errno: print "Error:",errno For which I get the outpu...

Is there an industry standard for error messages?

Is there an industry standard for error messages? I'm hoping that it would be from a technology standard organization like w3c or an industry organization like ARTS (association of retail technology standards). ...

Custom error message in Django admin actions

I've written custom admin actions that basically do QuerySet.update() for certain fields in the model. There are times when these actions shouldn't be allowed to complete -- instead, they should display an error and not do anything. I've tried message_user, but that displays a green checkmark, whereas I'd like it to display the Django ad...

Django Template Error in App Engine

Hello All, This is the piece of code I am using to generate a template: path = os.path.join(os.path.dirname(__file__), 'tag.html') tag = cgi.escape(self.request.get("tag")) query = DeliciousTags.all() query.filter("tags =", tag) query.order('creation_date') results = query.fetch(20) siteList = '' if results : siteList = resul...