Loops are a type of control flow structure in programming in which a series of statements may be executed repeatedly until some condition is met.

learn more… | top users | synonyms (3)

0
votes
0answers
5 views

Symfony2, Doctrine2, EntityManager disable last actions

We have foreach ($rwst as $row) { $loopData = XmlFunctions::getXmlAttrAsArray($row); if (!$loopData) { return false; } $oCharacters = new XmlAccountCharacters(); ...
0
votes
0answers
9 views

Loop by number of Columns in CSV upload Coldfusion

I'm customizing a CSV uploader to allow for column mapping. I've got a function that parses it into an Array, then I'm looping through it to generate select boxes with the uploaded file column names ...
4
votes
2answers
37 views

Stuck on an error in Python 3 (exceptions, loop)

So what I'm trying to do here is that if you put in a string instead of an integer, you go back to the start But for some reason, the program just stops when you put in a string while True: try: ...
0
votes
0answers
5 views

looping through UltraGridRow UltraCombo to get both checked and unchecked rows in the same dataset

The code below return all UNCHECKED rows to a datatable. I need ot also get the rows that are CHECKED and add them to the "selected" column, "dt.Columns.Add("selected", ...
1
vote
1answer
32 views

MYSQL Why While loop returns first record two times?

I have two records in my DB and i want print them out. So i wroted this: <?php $resDB = mysql_connect("localhost", "root", ""); mysql_select_db("xe", $resDB); $aco = mysql_query("SELECT * FROM ...
-1
votes
1answer
18 views

Iterate Sql.result set

I'm totally new in programing with Java. How can I get tables names and references from sql server? Do I need iterate sql.result set or something? I need to create OWL class from the first table ...
0
votes
1answer
34 views

Using loop for data formatting in R

I want to format lot's of df's in the same way - is it possible to write a loop? Let's call them df1, df2, df3,... df1$timestamp<-as.POSIXct(df1$timestamp,format="%Y-%m-%d %H:%M:%S") ...
0
votes
1answer
26 views

Iterating through List<Map<String, String>> in primefaces datatable?

I'm trying to iterate through a List of Map items, i.e. an ArrayList of HashMaps or something similar, and I'm trying to do this in primefaces datatable. This is basically what I'm trying to do: ...
0
votes
1answer
39 views

matlab - while loop until values converge

I need to solve the following equation: old_val = 0.4*U_Z/(log(5/new_val)); where new_val = 0.11*1.5e-5./old_val; In order to calculate new_val and old_val I need to write a loop which ...
-1
votes
3answers
34 views

PHP Foreach Loop Array Access

In this foreach loop: <?php $x=array("one","two","three"); foreach ($x as $value) { echo $value . "<br>"; } ?> How will you be able to access the string "two" individually outside ...
0
votes
4answers
62 views

How to move data from multiple Arraylist to multiple Arrays (in java)

I have 3 arraylist each have size = 3 and 3 arrays also have length = 3 of each. I want to copy data from arraylists to arrays in following way but using any loop (i.e for OR for each). myArray1[1] ...
0
votes
0answers
14 views

JavaScript : how to tiny the JavaScript with loop

The rapheal script seems to be too long, is there any option to make is tiny ? I think loop can make this script small. If any one has good suggestion or advice please help me ...
3
votes
4answers
64 views

MATLAB - Using for loops find all the combinations of x^2 + y

I have two for loops like this: for x = 1:1:15 for y = 1:1:15 values(x,y) = x^2 + y end end This allows me to calculate x^2 + y for every combination of x and y if they are ...
1
vote
2answers
27 views

Show missing dates inside loop even if they don't exist inside MYSQL

I have following mysql query SELECT count(order_id), date FROM tbl_order WHERE campaign_status = 'In Progress' or campaign_status = 'Pending' GROUP BY DATE_FORMAT(date,'%d %b %y') and then ...
0
votes
2answers
42 views

Looping through tables in a table in Lua

I've hit a complete dead end with this. This is probably going to be something incredibly basic and it will most likely result in me smashing my head into a wall for having a major brain fart. My ...
0
votes
5answers
55 views

Python Iterate an integer as long as elements exist in a list

I have a list that looks like this: data = [['info', 'numbers', 'more info'], ['info', 'numbers', 'more info'], ['..*this is dynamic so it could have hundreds*..']] data is read in from a dynamic ...
0
votes
2answers
26 views

Repeat select statement like a foreach loop

Is there a way to make a SELECT statement repeat itself ? Take this query : DECLARE @one INT = 1 SELECT @one + @one AS [MATH] The output would be ------ | MATH | ------ | 2 | ------ What ...
0
votes
2answers
71 views

Continuous Loop is Not Working - Python [closed]

I am a beginner at python however I have used other languages and I wrote this simple program that should be a continuous loop. The program should display and count to 360 and then start back at 0. I ...
1
vote
4answers
52 views

Browser ends PHP infinite loops and then prints the data

I am trying to capture live feeds from a card reader and printing it using PHP. <?php $i=0; for(;;) { $subdata=file_get_contents("/home/openflow/subscribedata.txt"); ...
1
vote
1answer
12 views

Excel VBA: Using a variable when defining a list as a String

Pretty new to VBA but I'm learning quickly. I'm finally getting used to using loops to perform repetitive tasks, and in this case, I want each pass through the loop to define a different variable. ...
0
votes
4answers
49 views

Substitute for if statements when using Constants

I think the best way to describe my question, is to describe what I am doing first. I have a simple activity with 3 listpick options (Buttons that launch a listview). Each ListPicker has 8 items in ...
1
vote
1answer
35 views

how to use a variable in grepl function within a loop-R

I am new to R and, have some problems with looping and grepl functions I have a data from like: str(peptidesFilter) 'data.frame': 78389 obs. of 130 variables: $ Sequence : ...
0
votes
2answers
49 views

Is this an effective way to wait 10 seconds for an IP address?

I have a shell script that basically creates a vm that I use to do some processing on. This VM is given a random IP address that I obtain using VMwares vmrun utility. The machine can take anywhere ...
2
votes
3answers
106 views

Comparing an array to its mirror

Okay so I have a method that needs to take in an array full of ints, then check it against it's mirror to see what the largest mirror is that it matches to. So for example I have array [7, 1, 2, 9, 7, ...
-4
votes
2answers
62 views

What is the best way to study design patterns in C++ which deals with real-life situations? [closed]

eg. if i have to design a basic prototype of robot or any basic gadget , which book or blog/sites provide info pertaining to mainly design oriented programming not the ones with complex problem or ...
-1
votes
2answers
37 views

Loop list and open file if found

Not sure where to start with this... I know how to read in a csv file but if I have a heap of files in the same directory, how can read them in according to whether they are in a list. For example, a ...
0
votes
0answers
34 views

Understanding the program flow of python with tkinter

I am writing a programm to show my notes (like the short notes of windows 7) on the desktop. Therefore i created a main window with a menu from where you can create notes. If you click on "newNote", a ...
0
votes
1answer
25 views

Linux loop script: Cannot allocate memory

I face a huge problem with a script on linux. I work on an apache2 server and I have to execute a php script every seconds to update the database (yes, every second, I'm sure). To do that, I created ...
-2
votes
0answers
30 views

Programming a (medical) database in scheme [closed]

Me and my friend have a problem regarding a database project in scheme we're currently working on, we're creating a database that's supposed to help with giving a patient a correct/or close to correct ...
-1
votes
1answer
28 views

Show array values within an array php

I have a piece of code that loops and displays values for job vacancies: <?php foreach($arrXML as $inner_arr) foreach($inner_arr as $value) { ?> <p>Job Ref: <?php echo ...
0
votes
0answers
8 views

looping through google spreadsheet with gmail search query

I am looking to take values from a google spreadsheet and use gmail search to match the email. Here is my code: var client1 = GmailApp.search('is:1. Daily Backups - KIS Successful subject:'+ ...
0
votes
1answer
40 views

Compare if two items from os.listdir are similar?

Ignore this question. It is completely different than the actual question I needed to ask. For the people who already answered the question, I'm sorry. Hopefully this will help someone in the future, ...
2
votes
2answers
30 views

Loop through and list a 2 column db table from Tinytds via ruby with column1 values as headings and column2 values as a list

I've been trying to learn the basics of loops and I'm getting there but I'm struggling to get my brain around the following requirement where, for example, I've got data from a database table via ...
-3
votes
2answers
80 views

array searching vs nested if else in c++

What would be the array searching version of this loop? So this same loop below without the nested if else. Test t; int A; int B; int C; int D; int F; for(int i = 0; i < gradeCount;i++){ ...
0
votes
1answer
14 views

How can i get a setMethod to input value one time, while being in a loop? is it impossible?

A loop that has a setMethod for a private variable. I want this set-method to add value in the first turn of the loop, and then just stop. How can i do that? Code: for(int x = 0; x > 5; x++) ...
0
votes
1answer
33 views

I'm trying to create a paging system.This is not the complete code. Getting “path doesn't exist ” when running the code

I'm new to powershell, any idea on why i'm getting the error? Yesterday_Date = (get-date).AddDays(-1).ToString("yyyMMdd") $jsb={ $file = ...
1
vote
3answers
26 views

How do I schedule a print statement upon completion of 4 independent threads?

I have a simple java application which calculates prime numbers up to a certain user-given number and prints out the numbers. I've built upon this to include four separate threads which iterate ...
3
votes
2answers
63 views

PHP an array of arrays to one string or one BIG ARRAY

This code opens all excel files in a folder then it gets all emails in the file opened and puts them in an array. In the end I need ONE BIG array from all the content from all the array of arrays. I ...
0
votes
1answer
32 views

printing output in assembly x86

I have this code: INCLUDE Irvine32.inc .data arry BYTE ? prompt1 BYTE "Enter first hex number: ",0 prompt2 BYTE "Enter second hex number: ",0 prompt3 BYTE "The sum is ",0 prompt4 ...
0
votes
3answers
80 views

loop through an array in c++

I want to loop through an array that I have that has a max value of 1000. I am filling the array with values from a text file. I am trying to loop through that array but in my for loop, I do not know ...
0
votes
0answers
90 views

Exit a method called in another class Java

I have been fighting with this but gave up and decided to ask for help. My main class calls the method DUNGWALKTEST.Start. The main class then calls another method END from another class once this ...
-1
votes
1answer
38 views

iferror statement for macros in vba excel

I have a macro that at one point creates a pivot table. My problem is sometimes not all the values are in the second column and I get an error. I figured a way around this by getting the values from ...
-1
votes
2answers
56 views

How to change a variable every iteration of a loop (Java)

How can I have my variables change after every loop. I need the stated arraylist variables to go where the code is marked "HERE". //variables i need to cycle through static ArrayList<Integer> ...
0
votes
2answers
58 views

Issue when using iterative loops inside recursive methods [closed]

Hey I was making a method that uses recursion inside for loops, and for some reason the for loops never iterated... Here is an example of what i was doing but with simpler code. The code never ...
1
vote
1answer
49 views

PHP double loop problems in Wordpress

First of all, I'm using Wordpress. I have a loop that displays a custom content type called events. I have user accounts that get tied to this event in the backend and I have it setup to output ...
0
votes
0answers
17 views

Grabbing the attributed from option items and building a conditional around the result

here is my issue. So on the site I'm working on there is a product where all the variations are out of stock. There are two variations....products, in which, you can only select a color and products ...
3
votes
5answers
109 views

Exit while loop in Python

In the code below, I'd like the while loop to exit as soon as a + b + c = 1000. However, testing with print statements shows that it just continues until the for loops are done. I've tried while True ...
0
votes
5answers
37 views

Simple jQuery loop & Return the current value

I am trying to figure out how to write what I believe is a pretty simple jQuery function, but could use some help. So I have a var called "linkr" and I am using it like so. ...
-1
votes
2answers
25 views

How to iterate data horizontally in jstl

I want to iterate 10 data in table but horizontally. <table> <c:forEach var="i" begin="1" end="10"> <tr> <td>${i}</td> <td>${i}</td> ...
-1
votes
3answers
59 views

Concatenating a char into a string

I am trying to read a string from the console. But I want to read it char by char. And I'm having trouble with concatenating the char into the string AND with breaking the loop. Here is the code: ...

1 2 3 4 5 254