error

Crystal Reports - "A string is required here" formula error.

I have a command line utility that generates one simple crystal report. I recently updated the project from .NET 1.1 to .NET 3.5 using the Visual Studio 2008 migrator and am now getting an error that I had never received before. The problem is in the work_order formula which is as follows: stringVar nvl_ship_wrk_id := "0"; stringVar n...

Change The Character Encoding

Hello, I'm having some problems when i try to save my project in Eclipse. The error is because of the character encoding that is Cp1252 that is because i copyed the file from another that i have created in my Linux computer, then i cant save my file in Eclipse, but how i can solve this problem? But if is needed here is an screenshot of ...

Google Webmaster error: "We've detected that your 404 (file not found) error page returns a status of 200 (Success) in the header."

I have an asp.net website (SQL Server, Windows 2003, IIS 6) and I am using google.com/analytics/ to track visits. It all works fine. Now I would like to use Google Webmaster to get better information about my site but when I try to verify it by uploading a html file I get this error: "We've detected that your 404 (file not found) error...

Cross Domain JavaScript parent location setting firefox error

Here is the case: page A contains iframe B, B contains iframe C, A and B are under the same domain, C under another. C tries to reset parent B's location with extra information following "#" to solve cross domain communication using Fragment Id Messaging. IE6/7/8 just works fine with this case, while Firefox blocks parent.location settin...

SharePoint error whan adding user as site owner.

Hi there. I have a MOSS 2007 site which I'm an admin for. In the 'People and Groups' area for a site, I'm trying to add a user as a site owner. On the 'Add User' page, I add the name of the user and click 'OK', after which I get this totally useless error: Exception from HRESULT: 0x80040E37 at Microsoft.SharePoint.Library.SPRequ...

After working for years, videos in my Flex Application won't play, just "buffering"

An application I wrote for a client almost 2 years ago using Flex 2 has stopped playing the .flv videos. It's been nearly 9 months since I've had to perform any updates to the app, so I don't have the source code on the computer I'm using at the moment. I'm not sure how often the client uses the application, so I can't say exactly when...

ruby openssl.so: 14001 error

When trying to run a simple ruby program I wrote, I am getting this error. Just reinstalled everything the other day, before the code was working fine. ruby/1.8/i386-mswin32/openssl.so: 14001: The application has failed to start because its side-by-side configuration is incorrect. Please see the application event log for more detail. ...

What does error conflicting types for '' mean?

i got an error that said "error: conflicting types for '____'. What does that mean? ...

Generic Class Problems!

I have been research this all day and I cannot find a solution. I understand the problem of using subclasses and how the compiler wont know what the class will actually be because of the possibility of setting setting it to something else before calling add. I have look everywhere and I still don't know how to fix this problem. I have an...

What does error "request for member 'selectedCountry' in something not a structure or union" mean?

My code is: dvController.selectedCountry = selectedCountry; Why do I get the error "request for member 'selectedCountry' in something not a structure or union"? ...

IE8 & FF XHTML error or badly formed span?

I recently have found a strange occurrence in IE8 & FF. The designers where using js to dynamically create some span tags for layout (they were placing rounded corner graphics on some tabs). Now the xhtml, in js, looked like this: <span class=”leftcorner” /><span class=”rightcorner” /> and worked perfectly! As we all know dynamically ...

How can I load a package and keep the debugger working?

I'm using TJvPluginManager in the JVCL to create and load BPL-based plugins for my program. Problem is, one of the plugins isn't loading properly, and I can't debug it. Every time I try to trace into the loading sequence, it gets as far as the LoadLibrary API call, and then the debugger seems to forget what it's there for. It complete...

Chromium Build Fails on Windows

I am attempting to build Chromium for windows (using Visual Studio 2008 SP1) and it fails with about 37 errors. Here's a selection: Error 1 error LNK2005: "wchar_t const * const switches::kProcessChannelID" (?kProcessChannelID@switches@@3QB_WB) already defined in ipc.lib(ipc_switches.obj) common.lib chrome_dll Error 2 error LNK2005:...

PHP help, I have a "for loop" problems?

Here is my code: $today = date('Y-m-d'); for ($i = 1; $i <= 10; $i ++){ $var_b[$i] = date('Y-m-d', strtotime('-' . $i .' day', strtotime($today))); $var2_b[$i]_name = date('d', strtotime($var_b[$i])); Error message: Parse error: syntax error, unexpected T_STRING in XXX\index.php on line XX EDIT: I put the curly brackets, the erro...

Hudson git clone error

I have created free-style software project in Hudson. I want to clone a public Git repository: git://github.com/bret/watir.git Build fails with error message: Started by user anonymous Checkout:workspace / C:\Documents and Settings\Administrator\.hudson\jobs\watir\workspace - hudson.remoting.LocalChannel@1a1f370 Last Build : #4 Checko...

exit failed script run (python)

I have seen several questions about exiting a script after a task is successfully completed, but is there a way to do the same for a script which has failed? I am writing a testing script which just checks that a camera is functioning correctly. If the first test fails it is more than likely that the following tests will also fail; there...

PHP eval error when assigning value to variable

Hello, all SO users! I have a bit of PHP code (for the module feature of my CMS (not drupal) which allows people to view pages, comments, forum posts, blog posts, etc...): if(isset($_GET["m"])) { //Does the module exist and activated, and has it a function called view? if(isset($module_exists[$_GET["m"]]) && method_exists($_GET...

PHP Classes problem, class not found

I solved this question my own. The filename was wrong lolz. Hello everyone! I'm building a CMS like Drupal and Joomla. I'm working on the module feature (plugins), and I got the following error: Fatal error: Class 'settings' not found in C:\wamp\www\SYSTEM\view.php on line 22 Here is my code: start.php <?php //First of all, start ...

Odd Sed Error Message

bash-3.2$ sed -i.bakkk -e "s#/sa/#/he/#g" .* sed: .: in-place editing only works for regular files I try to replace every /sa/ with /he/ in every dot-file in a folder. How can I get it working? ...

Problem with lseek

Hi, I have the following code in C long from = atol(buffer); printf("From: %ld\n", from); int file_fd = open(fullPath, O_RDONLY); if (file_fd == -1) error("Error opening file"); if (from > -1) { int a = lseek(file_fd, from, SEEK_SET); if (a == -1) error("Error in lseek"); } The lseek operation is returning Error in ...