error

Invalid conversion char to char* - Copying char in string array to another string array

Hi all, I'm a beginner in C++ Programming language. I wanted to write a program that take the alphabets in a string array called str, and copy it in a new array called str_alpha. And the same goes to numbers, the program copies it from str array to str_digit array. There's my humble code, it might be full of errors and stuff. But this...

Strange "java.lang.NoClassDefFoundError" in Eclipse

I have a Java project in Eclipse perfectly running smoothly until this afternoon, when I updated some files (including a ant build.xml file). When I build the project, the following error appears: java.lang.NoClassDefFoundError: proj/absa/FrontEnd/ApplicationStarter Caused by: java.lang.ClassNotFoundException: proj.absa.FrontEnd.Applica...

Can you see anything wrong in this code? 'Cause I can’t, but it still doesn’t work.

// When row is selected - (void)pickerView:(UIPickerView *)pickerTimer didSelectRow:(NSInteger)row inComponent:(NSInteger)component { int minutes; int seconds; if (component == 0) { if (row < 0){ minutes = row; } else { minutes = 0; } } if (component == 1) { ...

How do I diagnose "Microsoft .NET ClickOnce Launch Utility has stopped working"?

Hello StackOverflow! We deploy our application using ClickOnce, installed from a file path. For 24 versions it has been working perfectly - now, on version 25 I get the following error once the application has installed and it launches: If I test a previous deployment on the same machine, it works. Where can I even begin to look to...

How do I properly work with unicode characters in python to keep from getting errors?

I'm working on a python plugin for Google Quick Search Box, and it's doing some odd things with non-ascii characters. It seems like the code works fine up until I try constructing a string containing the non-ascii characters (ü has been my test character). I am using the following code snippet for the construction, with new_task as the v...

ReferenceError: Error #1056 - instance name Problem

Hello, I got a Problem with a Movie Clip I add to the Stage in Flash CS4/AS3. The Flash File consist of two MovieClips, "Inside" and "Outside". The "Inside" Clip is contained by the Outside and has the Instance Name "insideClip". The Clips are attached to Actionscript Class-Files of the same names (Outside and Inside) which are "empty...

string error "nothing in debug" actionscript 3

How do I fix this string error? This numberic counter works without the ADDITION STRING ARGUMENT. It's function is to add zero placeholders to the counter. It's close, but I need a second opinion. COUNTER "all zeros, no count" var timer:Timer = new Timer(10); var count:int = 0; //start at -1 if you want the first decimal to be 0 va...

Is the GWT TimeZone offset backwards?

I'm using com.google.gwt.i18n.client.timezone to try and display a date (as at the server), but GWT automatically adds the current timezone to the date when formatting it, meaning The wrong date is shown in different timezones. To combat this, I'm sending the server's timezone offset to the client and using that when formatting. I live...

Error While Debugging

Hi, I have one web application. while i debug the solution the rendering makes too slow and if i close the browser page i got one error like this WebDev.WebServer.exe has encountered a problem and needs to close. We are sorry for the inconvenience. I got one information from attched proess is that this .exe file related to asp.net dev...

Result consisted of more than one row Error 1172 mysql

Hello im having a hard time with this stored procedure. im getting the error: Result consisted of more than one row. here is my stored procedure: DELIMITER $$ DROP PROCEDURE IF EXISTS `dss`.`COSTRET` $$ CREATE DEFINER=`dwadmin`@`192.168.%.%` PROCEDURE `COSTRET`( TDATE DATE) BEGIN DECLARE done INT DEFAULT 0; DECLARE ls_id VARC...

MySQL Result consisted of more than one row

Hi there im just new here and i have a question regarding my error on mysql it said Result consisted of more than one row. I have no idea how to solve this your help is much appreciated! DELIMITER $$ DROP PROCEDURE IF EXISTS `dss`.`COSTRET` $$ CREATE DEFINER=`dwadmin`@`192.168.%.%` PROCEDURE `COSTRET`( TDATE DATE) BEGIN DECLAR...

An error from appplication written in C# that displays know to all message Send to Microsoft?

I know the title may be misleading but i didn't knew how to describe in title. I've wrote an application in C# 3.5 / MS SQL. Application is 90k lines big. I don't use many Try Catch clauses so when error happens it's usually displayed to user with dialog box saying would you like to Continue and the error message. But recently I've noti...

Needs a cause for a error in MVC

What can be the general reason behind the error below: Error executing child request for handler 'System.Web.Mvc.HttpHandlerUtil+ServerExecuteHttpHandlerWrapper'. ...

Borland linker error

Hello, I am recompling a project using Borland C++ Builder 6 and LMD tool 2010. The recompile process failed due to linker error. The message was: "[Linker Fatal error] Fatal unable to open file LMDOneInstance.OBJ" I searched the whole hard drive, but could not find any reference to LMDOneInstance.OBJ Any help is appreciated. Thanks i...

Error on installing SVN extension with pecl

Hello, I'm trying to install the following PHP extension: http://php.net/manual/en/book.svn.php But when I do pecl install svn-beta I receive an error message that it can't locate the svn_client.h file. I searched the net but couldn't find any useful reference to this error. Thank you for your help. Installation result: root@myUbuntu...

.NET: How to access ExceptionContext object from Exception object

Hello all, I'm writing a custom error-handling method, and am passing it an Exception object. I need to be able to access that Exception's ExceptionContext object, so I can set a property to true before I execute the Error view. Does anyone know how to get to the ExceptionContext, given just an Exception object? For reference, the reas...

Showing icon conditionally in C#/ASP.NET

Hi All! I am having trouble with my GridView in ASP.NET, which is listing a few rows of documents. Some of the rows (i.e. documents) are unpaid and need a shopping icon, which takes the clicker to another page completely. Other rows need no icon since they are paid. This is what I have so far, although HyperLink is throwing an error s...

What does "zend_mm_heap corrupted" mean

All of the sudden I've been having problems with my application that I've never had before. I decided to check the Apache's error log, and I found an error message saying "zend_mm_heap corrupted". What does this mean. OS: Fedora Core 8 Apache: 2.2.9 PHP: 5.2.6 ...

AppEngine 'explicitly cancelled' error.

I'm using Google AppEngine and the deferred library, with the Mapper class, as described here (with some improvements as in here). In some iterations of the mapper I get the following error: CancelledError: The API call datastore_v3.Put() was explicitly cancelled. The Mapper usually runs fine, I used to have a higher batch size, so th...

Getting weird crashes in mixed fortran/C program

I am trying to replace some graphics code in a set of fortran programs (not my own code). I got one of the simpler ones ('psvdraw') to work just fine, replacing the fortran postscript-generating code with C calls that call the Cairo library (graphic_output.c). I have been able to successfully work out the cross-language calls without t...