3
votes
2answers
42 views
jQuery: Possible to wait for $.get to finish loading before continuing?
The folowing script does not wait for $.get to finish loading the page before continuing with the loop:
$.each(data.songs, function(index, val) {
$('#nowartist')
.app …
0
votes
4answers
74 views
Loop Until Condition Reached, iPhone
Hi there,
I have a problem here...
After a button is pressed I want a loop to run until a condition is reached:
- (IBAction)buttonclick1 ...
if ((value2ForIf - valueForIf) > …
0
votes
1answer
23 views
Why does this slides-creating loop in VBA Power Point not work?
Hello,
I have tried to create this script that would create 10 empty slides, but it doesn't work for some reason:
Sub CreatingSlides()
'
Dim oPresentation As Presentation
Set oP …
0
votes
2answers
96 views
How to filter a list?
This is a method that should take already assigned users out of a list
and keep non-assigned ones in a list. The GuidList has the userId added
to it on a button click. The profile …
0
votes
6answers
76 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 …
1
vote
3answers
51 views
Looping Over Result Sets in MySQL (Resolved: Using Cursors)
I am trying to write a stored procedure in MySQL which will perform a somewhat simple select query, and then loop over the results in order to decide whether to perform additional …
1
vote
1answer
79 views
Undirected (Multi) Graph (Hierholzers Algorithm)
I am very stuck with the looping structure for my graph to work out Eulers tour.
This is the graph I am drawing, remember it's undirected, so a journey from N1 to N4 is the same a …
1
vote
4answers
91 views
Checking condition inside a loop
Hi,
If "flag" is true I have to perform step no. 1 otherwise skip it. Is there a way out to skip this unnecessary repetitive check within the loop. (As the value of flag is not ch …
1
vote
4answers
92 views
Loops within Switch statement
my switch statement has about ten outcome, but some of them need 1/2 loops to check, so i can't write them within case(condition), so i've tried using more than one default case, i …
1
vote
6answers
268 views
Is there a better way? While loops and continues
There are many functions within the code I am maintaining which have what could be described as boilerplate heavy. Here is the boilerplate pattern which is repeated ad nausea thro …
1
vote
3answers
70 views
“for each” or “every” keywords in Scheme
Is there a for loop or for each loop in Scheme ?
I've been searching around and found there is a keyword "every" but the scheme compiler language I'm using does not have this func …
0
votes
3answers
45 views
sql while loop with date counter
I need to do something like this in sql:
declare @StartDate varchar(10)
declare @EndDate varchar(10)
set @StartDate='12/31/2008'
set @EndDate='1/11/2009'
Declare @date varchar = …
0
votes
4answers
97 views
Loop and MySQL help!
Okay, basically... i am trying to store the dates and month name from my database in this format. I am aiming store the month and then count the entries in that month and then stor …
1
vote
4answers
58 views
In ActionScript 3, how can I pass the current value of an array in a loop to an event listener
Code Example:
var gospels : Array = ["john", "mark", "matthew", "paul"];
for each (var book : String in gospels)
{
var loader : URLLoader = new URLLoader();
loader.load(new U …
0
votes
4answers
48 views
Deleting rows from a table using a loop
Why does my Do Until loop try to run raw.Delete even though raw.EOF is true? If I have an empty table, this crashes. Why?
Dim raw As Recordset
Set raw = db.OpenRecordset("tblSampl …
