0
votes
2answers
31 views
MySQL foreach alternative for procedure
My problem is fairly simple. I have table sets that store product sets (more products looking like one on the outside - computer, mouse and keyboard for ex.) it's connected M:N usi …
0
votes
6answers
56 views
[PHP] Finding last entry in a foreach() process
Simple one guys.
I have an XML parsed using simplexml_load_file().
The following code:
<?php
foreach($xml->actors->actor as $actors) {
echo $actors.", ";
…
1
vote
3answers
79 views
Foreach in SQL?
I'm not quite sure how to do this in SQL. Here it is in pseudocode:
Take the list of nodes with content type X.
For each node, take the value of field Y.
Insert into term_nodes V …
0
votes
3answers
44 views
foreach loop with textbox names.
how do i make a foreach loop from this, i want to change the size only of the textboxes that ends with txt2
br1txt2.Size = new Size(27, 20);
br2txt2.Siz …
0
votes
6answers
122 views
Basic foreach loop question
Thanks for the help here:
http://stackoverflow.com/questions/1744128/foreach-loops-stdclass-objects
I set up a foreach loop, but the problem is that sometimes the result is:
…
0
votes
6answers
77 views
Loop through controls in TabControl
I am looking for a way to loop through controls on a particular tab of a tabcontrol. For example, I have a tabcontrol with the following tabs:
Cars,
Pets,
Admin
On each of these …
3
votes
2answers
31 views
Custom container requirement to work with Qt’s foreach
What is the bare minimum amount of code to create a custom container that would work with Qt foreach macro?
I have this so far
template< class T >
class MyList
{
public:
…
0
votes
5answers
91 views
Why is there a “&” in ($arr as &$value)?
$arr = array(1, 2, 3, 4);
foreach ($arr as &$value) {
$value = $value * 2;
}
foreach (array_expression as $value)
statement
foreach (array_expression as $key => $va …
0
votes
1answer
31 views
Using foreach to iterate over immutable value-type collections
I am reading through a coding standards document, and one suggestion is to avoid iterating over immutable value-type collections (such as String arrays) with a foreach loop.
I und …
0
votes
3answers
50 views
Hide a column programmatically in MS-Access
I want to hide or show a column based on variable data from a users selection. How do you set a column to hidden in MS-Access 2003?
For Example,
After user change event...
For …
0
votes
3answers
110 views
How can I split and trim a string into parts all on one line?
I want to split this line:
string line = "First Name ; string ; firstName";
into an array of their trimmed versions:
"First Name"
"string"
"firstName"
How can I do this all o …
0
votes
2answers
74 views
iPhone Objective-C foreach design question
I'm trying to implement a design as follows:
Touch class : acts as an interface, several classes inherit from it
MoveTouch class inherits
JumpTouch class inherits
InterfaceTouch c …
0
votes
3answers
66 views
Seemingly simple MVC partial view question
I am trying to display my data (images) in two columns of a table in my partial view. The code below does not seem to work as it displays each image in its own row. What am I missi …
1
vote
7answers
103 views
PHP: how is an array in a foreach loop read?
We have all heard of how in a for loop, we should do this:
<?php
for ($i = 0, $count = count($array); $i < $c; ++$i)
{
// Do stuff while traversing array
}
?>
ins …
3
votes
2answers
62 views
Changing a stuct inside another struct in a foreach loop
The following code prints (when invoking MyMethod):
0
0
0
1
I would expect it to print:
0
0
1
1
Why is this?
Code:
private struct MyStruct
{
public MyInnerStruct in …
