Topic profile page for While loop.
This page has aggregated data from forum posts, threads, listings, online discussions, newsgroups, messageboards, and other online sources which contain user generated content for the term: While loop.
Topic "While loop" was discussed 0 times on 0 sites in last 3 months
Started 2 days, 22 hours ago (2009-12-26 10:31:00)
by hellolv
I am trying to send notifier when needed from one while loop to another. What is the difference between initiating the Obtain Notifier outside the MASTER while loop and inside? Does putting it inside mean a lot of memory will be taken after a number of executions?
Started 4 days, 7 hours ago (2009-12-25 01:50:00)
by jyothi_wipro
Hi, Iam trying to add a while loop in my script in the below way which gets value from count file and checks if its not equal to 0.If yes then it shld echo me a message. while["$cat count"!="0"] //count file has some number other than 0 do echo "count is not zero" done But iam getting this error: ./test.sh: line 9: while[ count!=0]: command not found ./test.sh: line 10: ...
Started 6 days, 1 hour ago (2009-12-23 06:56:00)
by lynxus
Hi me again, im starting to get VERY annoyed with my script. I have the below: ( Snippet of offending code ) Basically it should do this: - at the top, it does a while from the restult of a main sql query ( this works ) - It then (inside the while) does anyother sql query to see if that row is already in the DB ) - If it isnt, then it should insert it. - If it is, Then do nothing. ...
Started 1 week ago (2009-12-21 21:29:00)
by verbalicious
I'm trying to insert multiple new lines of text into an iptables script using sed in a while loop. I'm not sure if this is the most effective way. Searching the forums has helped me come up with a good beginning but it's not 100%. I'd like it to search out a unique line in my current iptables file and add new rules above it. The problem now is that it only ends up inserting one new line ...
Started 1 week ago (2009-12-21 14:21:00)
by DBerry
I would like to know if using a Daqmx task constant input to a Daqmx Read vi inside a while loop allocates additional memory on each iteration of the while loop. To further explain my question please see the attached VIs. In DAQ01.vi I wire a task constant to a Start Task outside the loop, and then continue the wire insdie the loop for use by the Daqmx Read. Finally, teh wire exits ...
Started 1 week ago (2009-12-21 13:29:00)
by Peituh
hi everyone my problem is to get a two input data and form a array, them export to a spreadsheet file but i dont know the amounth of inputs data, that's why im using a while loop, then i use a "NEXT" button to put the input data into the array the problem is that the array always have only 1 element, not the entire data that i need heres a simple block code of the case ...
Started 1 week ago (2009-12-21 11:16:00)
by jermaine123
Hello Guys, I have modified the order details form in Northwind 2007 and I am having an issue I hope you can help me with. It is a form with a dataaheet that you use to enter line items into a transaction. Each row contains the fields ITEMNAME, QUANTITY PRICE, DISCOUNT, SUBTOTAL, BENEFIT TYPE. Each line item in a transaction should be assigned to a particular benefit type. I have a ...
Started 1 week ago (2009-12-21 11:05:00)
by metsystemalex
Good afternoon, Could someone please help. I have a project that is very basic. It is replicating the game mastermind in the labview2009 VI. I have got it to work but as soon as all conditions met are true my final or gate sends the signal to the while loop stop button. This means there is no time for my "congratulations string" to show before the game resets. What I need to do ...
Started 1 week, 2 days ago (2009-12-20 07:15:00)
by jermaine123 via AccessMonster.com
Hello Guys, I have modified the order details form in Northwind 2007 and I am having an issue I hope you can help me with. It is a form with a dataaheet that you use to enter line items into a transaction. Each row contains the fields ITEMNAME, QUANTITY PRICE, DISCOUNT, SUBTOTAL, BENEFIT TYPE. Each line item in a ...
Started 1 week, 4 days ago (2009-12-18 05:48:00)
by White_bird
Hello, I am a novice flash programmer, and i recently stumbled upon the following problem, I got the following code ; stop(); import com.greensock.*; import com.greensock.easing.*; var loop1:Number = 0; while (loop1 < 10){ var line_1:MovieClip = new MovieClip(); this.addChild(line_1); var line_1_x = randomNumber(0, 550); line_1.graphics.lineStyle(randomNumber(2,8...
Started 1 week ago (2009-12-21 16:29:00)
by Dennis Knutson
That's not right at all. Since you don't have auto-indexing on, the only thing you will record is the very last iteration of the inner while loop. That may not make a difference with this VI that is apparently simulating some sort of acquisition with those controls but if you are doing real acquisition, it would be throwing away large amounts of data.
Started 2 days, 9 hours ago (2009-12-26 23:45:00)
by tst
smercurio_fc wrote: ...which would happen first - hitting the boundary of an I32 or running out of memory due to references not being closed. Well, 2^31*4 is roughly 8 GB or RAM, so I'm guessing you'll run out of memory on a 32 bit system and possibly reach the limit if you're on a 64 bit system with enough RAM. Also, I'm guessing the reference pool is shared by other resources (...
Started 6 days, 12 hours ago (2009-12-22 20:10:00)
by verbalicious
rdcwayx, Thanks for the reply. I think I need a bit more hand holding. I attempted to plug your solution into my script and finish it a number of different ways, but no luck. Banged my head against the screen for an hour. Lots of errors (IP = No such file or directory). There are some fundamentals I am missing here, and I could use a hand. Could you elaborate a bit more? TIA.
Started 5 days, 4 hours ago (2009-12-24 04:26:00)
by baileyswalk
I think there may be an exception occuring but I don't know where it is obviously outside the scope of my handlers, which I have all over the place. Is there any way I can see what is being executed in the IL code or anything??