error

Visual Studio C# WPF run without debugging - nothing happens

I am new to Visual Studio 2008, and I am learning the old "Hello World" application using a WPF application. When I click 'Start without Debugging' I see a window open for a half-second on my taskbar, and then close. I dont get any window that stays open with my application in it. I cannot figure out why this is happening. If I trying op...

jquery find if its json or xml

i want to know if the response is the json or xml, how can i find that out using jquery? my current code is following, but its giving error, if response is json. var is_xml = ($('status_code', XMLHttpRequest.responseText)) ? true : false; error is: Selector expected. Expected ',' or '{' but found '"}}"'. ...

In Eclipse Websphere 7, how do I resolve "Enumeration cannot be resolved" error message?

I would usually get this message when I was importing or creating a new project. Everything would build fine but the compiler would give me a "Enumeration cannot be resolved" error for all Enum classes/objects. I resolved this by changing compliance from Java 5 to Java 1.4, since Enumeration was added in Java 5 which was not there in Ja...

What does the C++ error message "<near match>" mean?

When compiling my code with the GNU C++ compiler I get something like bla.cxx: In function `int main(int, const char**)': bla.cxx:110: error: no matching function for call to `func(const classA*&, const classB<classC>*&) const' someheader.h:321: note: candidates are: bool func(const classA*, const T*&, const std::string&, std::string&) ...

Missing cxcore110d.dll?

When I try to run a opencv hellow world program I get an error saying that the cxcore110d.dll file is not installed and that I need to reinstall the program, but the dll is C:\Program Files (x86)\OpenCV\bin. Any one know who to fix this? The folder is referenced (maybe thats the wrong term) in the solution that came with opencv 1.1. ...

jQuery AJAX parsererror

I am working on the following page. http://www.ranger.ryerson.ca/library/test/steveDev/testcarousel/test.html it works in firefox, chrome, and opera, but in IE6,IE7, and Safari (the god forsaken browsers) they all give me "parsererror" My page uses the jquery XML parser, and the bad browsers dont like it. The troubled code is the foll...

Weird PHP error: 'Can't use function return value in write context'

I'm getting this error and I can't make head or tail of it. The exact error message is: Fatal error: Can't use function return value in write context in /home/curricle/public_html/descarga/index.php on line 48 Line 48 is: if (isset($_POST('sms_code') == TRUE ) { Anybody knows what's going on??? PS Here's the full functio...

How do I fix an "Illegal start of expression" error in Java?

I am getting an "Illegal start of expression" error in the following code at the location marked by a comment. How can I correct this error? class planetUfo { public static void main (String[] args) { // having data for counting the index char letters[] = {'A','B','C','D','E','F','G','H','I','J','K','L','M','N','O','...

GWT Browser Returns Error, but GWT does not

I made some changes to GWT app without testing it in the client browser. I just now tested it in the browser and now the browser is throwing an error: "Error: uncaught exception: java.lang.IllegalArgumentException: Widget must be a child of this panel." How do I figure out why this is being thrown and where to fix it? I made so many ...

jquery click once, then disable/enable element

i have many rows List item - delete List item - delete List item - delete like above 3 rows.. it has delete link, on click i want to disable that link, until i get response from ajax saying ok delete it or no not ok, dont delete it, user is not an owner, then i have to give the element back to clickable.. if that makes sence basica...

Expression blend solutions won't open in Visual studio

Hi I'm a designer. My key tools are Photoshop, Illustrator and Expression Blend. As much as I love the user interaction of Blend I'm finding problems when I open a Visual Studio file in Blend created by the developer. The same goes for the developer as when he tried to open my files it comes up with an error message. I understand Blend ...

Javascript error: * is not a function

I'm using javascript to call functions that have been put into an object like so: generatewidgets['mywidget'] = function (mystring) { code } Later on, i loop through this object and call each function with a string parameter. argument = 'abcdefg'; for (this.key in generatewidgets) generatewidgets[this.key](argument); This works...

ASP.net Upload Limit Server timeout

Hi I'm having a problem with uploading files in the media section of Umbraco. I'm not sure if the problem is size related as I don’t get an error that give too much details but I'll explain what I’ve done so far and see if you can help. I've added: <httpRuntime maxRequestLength="102400" executionTimeout="3600"/> to the web.config wi...

Javascript Popup IE Error

I've stepped into a new position and am tasked with cleaning up pre-existing code. I will be posting a Javascript function for building hotel reservations by using a base URL and then carrying over variables to the other site. More clearly, this function allows your to access Site A and search for hotel reservations on Site B. The fun...

IPhone SDK: Audio Session Error: -12986 .... after upgrade to 3.1

I am building an iPhone audio app using Audio Sessions. Prototype was functioning till I decided to upgrade to 3.1 After a lot of hunting I finally found that the session activation call was failing with error code 12986. I havent been able to find the reason for this anywhere. The NSError object doesnt give any detail. I used the loc...

How to handle the error if theres a broken link in asp.net mvc?

For example on my site i got links to twitter,facebook etc. and the link to the facebook is wrong, so when click the facebook link on my asp.net mvc page. HTTP 404 will be thrown by the browser, so how can this be handled as this wont be caught by Application_Error in the global ascx page. One way i could think of is tht clicking the li...

getting an error while upgrading my application in android market

Whenever I try to upgrade my application in android market I am getting this error: "The apk must be signed with at least one certificate in common with the previous version" and I have lost my previous keystore. Any help will be appreciated ...

Prolog Problem with "is" function

I am having a problem with prolog that I do not understand. I have used the tracer to follow the problem, and this is what happens .... (8) 8 NEXT value(debt, p9, Orly) (8) 8 *EXIT value(debt, p9, low) (9) 8 CALL P is low S (10) 9 CALL error_handler(21, P is low, eclipse, sepia_kernel) ...error crap, more "leaves" calls.... Wh...

Refused to execute a JavaScript script. Source code of script found within request.

In WebKit I get the following error on my JavaScript: Refused to execute a JavaScript script. Source code of script found within request. The code is for a JavaScript spinners, see ASCII Art. The code used to be working OK, and is still working correct in Camino and Firefox. The error only seems to be thrown when the page is saved vi...

C++ Error: No Match for Call

I'm trying to compile the following code in C++ string initialDecision () { char decisionReviewUpdate; cout << "Welcome. Type R to review, then press enter." << endl; cin >> decisionReviewUpdate; // Processing code } int main() { string initialDecision; initialDecision=initialDecision(); //ERROR OCCURS HERE // Mor...