|
Hey guys, I've removed some of the complexities of my needs to the core of what I need to know.
I want to send a collection of Values to a method, and inside that method I want to test the Value against, say, a property of an Entity. The property will...
Started by andy on
, 4 posts
by 4 people.
Answer Snippets (Read the full thread at stackoverflow):
Your issue really comes when you have values that would be considered "equal... .
The short answer is "yes", but the longer answer is that it's possible but will take a non-trivial amount of effort on your part and some assumptions in order to make it work .
|
|
Just thought I'd say hello.
I've listed myself as unknown for now. I'm here to learn!
Glad to meet you.
Started by Mercuria on
, 7 posts
by 6 people.
Answer Snippets (Read the full thread at personalitycafe):
Unknown....
Personalitycafe.com/members/dog.html I was expecting your name to be Unknown Welcome @ Mercuria Originally Posted by MrShatter I was expecting your name to be Unknown I thought the name was Unknown, lol Welcome to PerC.
|
|
(N is unknown)
$controller->$action($params);
must be
$controller->$action($param1, $param2, $param3... $paramN);
Started by Delirium tremens on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
) ?>
Not really sure what you want, but if you want to call a method with an unknown number.
|
Ask your Facebook Friends
|
If I safe an Array and reload it, is there a possibility to get the size if its unknown? Thanks
Started by wellenreiter on
, 9 posts
by 8 people.
Answer Snippets (Read the full thread at stackoverflow):
What do you mean by "unknown"? You can get the length of any java array with the length field.
|
|
I have values returned by unknown function like for example
# this is an easy case - parabolic function # but in my case function is realy unknown as it is connected to process execution time [0, 1, 4, 9]
is there a way to predict next value?
Started by tig on
, 10 posts
by 10 people.
Answer Snippets (Read the full thread at stackoverflow):
See also.
Squares can get you the unknown coefficients for the best fit using those basis functions.
|
|
While compiling some code I receive the following:
"error C2018: unknown character '0x40'"
I wonder how to resolve such issue?
Started by Roman Kagan on
, 5 posts
by 5 people.
Answer Snippets (Read the full thread at stackoverflow):
Have you missed a semi-colon somewhere?
Have you accidently used object > data instead of object -> data anywhere in your code?
Have you... .
Here is where I would begin:
Have you included any non-standard include files? If so, check those for errors .
|
|
Hi ....
The Title pretty much says it all. I have an XML document that I am processing with XSLT .... but I don't know how many columns (fields) that are in the XML document (therefore, obviously, I don't know their names). How can I determine the number...
Started by OneSource on
, 4 posts
by 4 people.
Answer Snippets (Read the full thread at stackoverflow):
How can I determine the number of "unknown" fields the attributes, if any, for the unknown fields....
Your question clearer on exactly what you'd like to do with the data and the unknown columns you'd like to match?
That kind of thing.
|
|
I get this error when debugging my ASP.NET web application after I trigger an UpdatePanel:
htmlfile: Unknown runtime error
and "updatePanelElement.innerHTML=rendering" is hilighted in a ScriptResource.axd file.
Started by Zack Peterson on
, 5 posts
by 4 people.
Answer Snippets (Read the full thread at stackoverflow):
<ol> ....
And I've got list item <li> tags within my UpdatePanel's ContentTemplate .
This seems to happen because I've got my UpdatePanel within an ordered list <ol> container .
There's a conversation about this error at eggheadcafe.com.
|
|
How do I disable the security certificate unknown/untrusted warning in firefox(the state where it asks you to add an exception)?
Started by Jonathan Kushner on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at superuser):
Check this discussion out
this addon should do it for you https://addons.mozilla.org/en-US/firefox/addon/10246 but i would recommend turning it off wherever you're planning to use your credit card on. .
|
|
How do I make a pointer to a multidimensional array, which have a unknown size? I've tried this:
int **triangles;
triangles = new int[numTriangles][3];
But i get this error:
cannot convert 'int (*)[3]' to 'int**' in assignment
Started by Xunil on
, 4 posts
by 4 people.
Answer Snippets (Read the full thread at stackoverflow):
Int a[n][m];
is equivalent to
int a[n*m];
so you just need a regular pointer - i.e.:
int *triangles; triangles = new int[numTriangles*3];
Well, the error message says it :) If you 'new an array... .
Multidimensional arrays in c++ are just syntactic sugar.
|