The tag has no wiki summary.

learn more… | top users | synonyms

0
votes
0answers
25 views

webView:didFailLoadWithError - (null) phone gap app for ios

I'm getting this error while loading paypal checkout page. I'm using in app browser of phonegap for this.Any idea? webView:didFailLoadWithError - (null) *** WebKit discarded an uncaught exception in ...
0
votes
2answers
48 views

Warning: implode(): Invalid arguments passed in functions.php on line 674

i tried to go online after finishing the website but a error occurs Warning: implode(): Invalid arguments passed in functions.php on line 674 foreach ( $one_array_font as $font => $variants ) { ...
0
votes
1answer
52 views

c# Invalid argument for Index, null value

i just made a file editor, it contains a listview and a textbox, i made that when i select and item from the list view it appears in the textbox, the text is japanese, and when i select a japanese ...
1
vote
1answer
48 views

cudaMallocPitch 'Invalid Arguments' despite copying guide?

I have been happily ignoring this for a while, but it has become quite a problem now - I hope you guys can help me out. I am calling cudaMallocPitch, but whatever I try, It keeps giving me the red ...
0
votes
0answers
63 views

Thread creation failed (err=Invalid argument)

this line above is present in my LogCat. I think it belongs to the following code, because Eclipse lines it green (as a breakpoint) new Thread(new Runnable() { public void run() { ...
0
votes
1answer
147 views

LINQ saying invalid arguments for insertonsubmit

I seem to be running into this issue with inserting data into a table in a SQL Server 08R2 using LINQ in C#. No matter what I've tried I keep getting an error with INSERTONSUBMIT(). Here is the ...
0
votes
2answers
101 views

C++ handling invalid parameters [closed]

I'm writing a C++ class. Some of its fields are STL containers, some aren't. While writing the methods I began wondering, how should I handle invalid values passed to methods? For example, some ...
2
votes
1answer
117 views

Array multiplication in Cuda produce in error [closed]

I want to multiply two arrays and I have a problem with Cuda RunTime API. There is an error: cuda runtime API error 11: invalid argument. What is the argument? Help me, please The code: // includes, ...
0
votes
3answers
135 views

UIButton UIButtonTypeCustom error.Unrecognized selector sent to class

I have this error with my code. I am designing a custom checkbox. For that i have a UIView which i have customized to look like a Checkbox. I have another copy of my project where i used the code and ...
1
vote
1answer
82 views

Invalid arguments in MVC3

I am having trouble getting this code to compile. I am new to MVC/Stackoverflow/programming and trying to follow a tutorial. Also, I tried looking some things up and saw some options with Nullable ...
0
votes
0answers
185 views

JS getElementById with empty string: Invalid procedure call or argument

I have a function, which has a parameter sCellId passed in. I'm trying to get its element using var tdElement = document.getElementById(sCellId) Now I have a null check after it, and I fully expect ...
0
votes
1answer
142 views

Using UIDocument saveToUrl throws an NSInvalidArgumentException on NSURL

I'm attempting to make a quick test to synchronize a file to iCloud. This is the simple snippet I have: url = [[ubiquityContainerURL URLByAppendingPathComponent: @"Documents"] ...
0
votes
1answer
523 views

listbox1.SelectedIndex (arguement out of range exception) c#/.net

I am trying to browse web pag1es using a listbox, I have added three links to it. All three links are loading well but when third link finishes loading I got this exception. Exception is: ...
0
votes
0answers
59 views

Selinux context_new throwing Invalid argument error

I am trying to fix third party code. The code is basically trying to get Selinux Domain Label. Here is the snippet : security_context_t sctx; int ec = getpidcon(pid, &sctx); if (ec == ...
0
votes
0answers
117 views

Can we map any part of file out of a large file with java.nio package?

I am trying to upload a large file (typically in Gigabytes) to internal central repository by dividing it in a small chunks (typically 100 MBs of each). I am using java.nio package to achieve this. ...
1
vote
1answer
758 views

Java web start fails to launch with “Invalid argument exception”

I am working on some application that must start another app using Java web start. The way it is designed is like this : String commandArg = new String( ...
0
votes
2answers
450 views

Delayed Centered Popup Javascript using setTimeout

Trying to get a centered popup to display after a set value of time, something like this: <script type="text/javascript"> <!-- function popup(url) { var width = 300; var ...
0
votes
1answer
97 views

Joomla Xmap Implode Error on Sitemap

I am getting the following error on an 'xmap' sitemap plugin used on Joomla v2.5 with the K2 cck on one of my sites as below: Warning: implode() [function.implode]: Invalid arguments passed in ...
0
votes
0answers
19 views

Invalid argument reason playbackFinishedCallback

unrecognized selector sent to instance 0xdb52580 2012-07-12 21:37:19.743 SmileGH[4900:11f03] * Terminating app due to uncaught exception 'NSInvalidArgumentException', reason: '-[GHVideos ...
0
votes
1answer
156 views

JavaScript Error in add method using IE8

I have a piece of code here which is working fine in FireFox, Chrome and InternetExplorer 9 but is not working in the InternetExplorer 8. I'm dealing with select boxes. var finalExclusionList = ...
1
vote
1answer
696 views

Invalid Argument in IE8

this has baffled me for a couple of hours now. Why do i get a 'Invalid Argument' error when testing this in IE8? function resizeContainer() { wHeight = window.innerHeight; ...
-2
votes
2answers
185 views

Still Need Help! The best overloaded method match for 'XDevkit.IXboxDebugTarget.GetMemory(uint, uint, byte[], out uint)' has some invalid arguments [duplicate]

Possible Duplicate: The best overloaded method match for 'XDevkit.IXboxDebugTarget.GetMemory(uint, uint, byte[], out uint)' has some invalid arguments Not sure why this is being ...
0
votes
1answer
430 views

getting /dev/disk0 error when using dd command on iPhone mobile terminal

I am using the command dd if=/dev/disk0 | ssh username@labtop ip address 'dd of=iphone-dump.img' but am getting this: dd: reading '/dev/disk0': Invalid argument. I am using iPhone 4 with iOs 5.1 and ...
1
vote
1answer
260 views

pyPdf error invalid argument

I'm actually using pyPdf to open, read and write the content of a PDF file. for that I use these lines of code : from pyPdf import PdfFileWriter, PdfFileReader pdf = ...
2
votes
1answer
1k views

CUDA cudaMemcpy: invalid argument

Here is my code: struct S { int a; int b; float c; float d; }; class A { private: S* d; S h[3]; public: A() { cutilSafeCall(cudaMalloc((void**)&d, ...
0
votes
3answers
2k views

IE Invalid argument with jquery

I have a portlet application that works flawlessly in Firefox and Chrome, but is bombing out in IE 8 and 9, BUT only if I have 5 or more instances of the portlet on the portal page. If there are 4 or ...
-1
votes
1answer
123 views

Warning: Invalid argument supplied for foreach()

I need a help to clarify why I get this warning. data: [/* DATA ...
1
vote
1answer
251 views

save pictures to harddrive

I'm trying to resize and safe a picture I've done some research and tried to get sommething working. Almost everythin works but the saving gaves me an invalid argument exception. This is what I have: ...
0
votes
1answer
164 views

IE - Invalid Argument jQuery error

I'm getting the invalid argument error and can't figure out what's causing it. Hoping someone could help me out. The script stops running after this piece (probably) of code: if (type == "all") { ...
0
votes
1answer
528 views

'-[__NSDate managedObjectContext]: unrecognized selector sent to instance

I have some entities in core data, and they are all sub classes of a super class which has a NSDate attribute, and all others works well when I save them, but one of them would seemingly ...
0
votes
1answer
222 views

invoking remote java process via ssh command

It works like charm form solaris to linux(RHEL5) but gives error when executing from RHEL5 to RHEL5 apache log error: tcgetattr: Invalid argument Connection to server20 closed. it also gives this ...
0
votes
2answers
516 views

Very simple query with implode gives implode: invalid arguments passed

It's friday, so I am obviously not seeing things strait so I thought to ask here. I want to get a list of names from the database using: $test = mysql_query("SELECT Names FROM Content ORDER BY ...
2
votes
1answer
2k views

Trouble saving file in SD card with special characters in filename

My application has a function to save file on SD card. Following is my code to save the file try { File mediaDir = new File( Environment.getExternalStorageDirectory(), ...
1
vote
1answer
961 views

“Invalid argument” when sending UDP packet, but which?

My C++ application is sending binary data as UDP packets. The sendto() call returns EINVAL (Invalid argument), but I don't see anything wrong with the parameters I'm passing. I did an strace of the ...
0
votes
0answers
450 views

IE8 and IE9 Invalid Argument Given URL is not allowed by the Application configuration

I've facebooker2's fb_login_and_redirect('/go_to_here', :perms => 'email') integrated into my website. The code renders a fb-login button correctly in Firefox, Chrome, Safari. However in IE8and IE9, ...
2
votes
1answer
698 views

Cufon IE Invalid Argument

Okay, I'm a little stumped with this one. I am usng Cufon to replace my text with a non-web standard font. This is a script I've used an aweful lot & never had a problem with it in the past. Along ...
1
vote
1answer
126 views

Strange NSNumberFormatter crash

The code is simple: static NSNumberFormatter *numberFormatter = nil; if (numberFormatter == nil) { numberFormatter = [[NSDateFormatter alloc] init]; [numberFormatter ...
0
votes
1answer
445 views

Powershell: Format-Table : Illegal key count

I'm getting the following error and I don't understand why or what it's asking for. The object I'm trying to display in a table is: function newURLObject() { # param ([String]$Value, [Int]$Count = ...
1
vote
2answers
1k views

BSD Sockets Invalid Argument at connection

I keep getting an invalid argument error when I try to connect the client to the server. A couple threads online said this can happen when addrlen is not right, but I tried changing it to a literal ...
1
vote
4answers
3k views

Need help with simple powershell command copy using foreach

I'm new to powershell and this question will prove that point. I'm trying a simple task from the command line where I have a txt file containing filenames separated by semicolons like... ...
2
votes
1answer
1k views

Perl IO::Socket::INET confusing “Invalid argument” error

Consider the following snippet of a Perl script: use IO::Socket; # ... my $sock = IO::Socket::INET->new( PeerAddr => $host, # e.g. "google.com" PeerPort => $port, # e.g. 80 Proto ...
1
vote
2answers
336 views

getting odd error when calling python script within another python script

I am getting an IOError when calling a python script(script2) within another python script(script1). Script 2 runs fine if called stand alone, however, if I call it from within script one, i get the ...
0
votes
1answer
359 views

How to fix “invalid argument” error in LESS

How can I fix "invalid argument" in LESS when using IE?
0
votes
2answers
1k views

Using a vb.net dll in c#. Getting 'invalid argument'

Got a strange one and I know it is something silly but I can't see it for anything! I have a DLL created in VB.net (No I can't change it! :-)) and am calling it from C#. The problems come at the ...
1
vote
2answers
526 views

Invalid Argument error in IE8 when drawing point features with Openlayers in AJAX application

I would kindly request some help because I have been struggling with an issue occurring only in IE8 with my code. You can take a look at a demo page that illustrates the problem at ...
0
votes
1answer
452 views

IE6 reporting invalid argument when injecting PNG fix into head of document with jQuery

Am having problems with the following code reporting an 'invalid argument' in IE6. function LoadScriptsAndExecute(url) { this.url = url; this.loadScript = function() { $.ajax({ ...
2
votes
5answers
3k views

IE8 gives error “Invalid argument” when using prototype.js, how do I find where the error is?

I have a fairly complex piece of Javascript that works flawlessly with no errors in Google Chrome, Firefox, Safari, and Opera. However, as tends to always be the endlessly annoying case, it ...
0
votes
1answer
2k views

jQuery, IE, invalid argument

I coded a simple sliding gallery with jQuery. It's a narrow container with a wide table inside that changes it's 'left' property through .animate() Works beautifully on Firefox, Safari and IE8. ...
0
votes
2answers
940 views

jQuery, IE and invalid argument

EDIT: OP here. Well, the problem is at the jQuery.JS archive. I just downloaded the last one, uncompressed, and the error changed to line 4619 character 4. I went to that line and there's an '}' ...
1
vote
1answer
1k views

IOError: [Errno 22] Invalid Argument with clock() being passed in

I have not had much luck hunting for finding a good explanation of what invalid argument errors are and what would cause them. My current sample I am working with is import sys mylog="mylog.log" ...

1 2