For Loop Not Working?
Jun 7, 2011
when i try to increment the for loop it jumps to case 5 of the select case statement. What i actually want is when i press the Next button it shows me a set of options which is case 2, but now it straight away jumps to case 5.
Private Sub btnNext_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles btnNext.Click
Dim counter1 As Byte = 1
For counter1 = 1 To 5
Select Case counter1
[code]....
View 8 Replies
ADVERTISEMENT
Mar 1, 2009
What I'm trying to do is first calculate the deductions (0.5 and %7) amount form entered visa amount, then send remaining amount to cell "B6" in my workbook sheet1. if there is more than one visa then I need to see total of all visas after deductions in cell "B6". [code]
View 16 Replies
Nov 4, 2011
I can't get the loop to work.
View 1 Replies
Dec 3, 2010
Dim cv As Integer
Dim cc As Integer
Dim CurrentValue As Double
Dim ObsoleteValue As Double
[code]....
Basically this code works for the first column of the DataGridView. It sort of stops iterating after the last calculation of the row is performed and doesn't change the cc value at all. Meaning the loop gets stuck after the first iteration.
View 1 Replies
Oct 28, 2011
I have a list of string in an array. I'm loop through those strings and if the text of a combo box matches one of those strings, I want a message to appear. If they don't match, I want a method to be executed.
[CODE...]
The messagebox appears, but the method is still executed. Which means it isn't stopping when it finds the match. I tried exiting the loop, but it still doesn't work.
View 4 Replies
Nov 30, 2008
Basically, what I'm doing is navigating to a website with a backgroundworker.In the WebBrowser1_DocumentCompleted event, I put code to fill in a form and I set the value of a boolean called "formFinished" to true once the form has been finished and submitted. The problem I'm having is that it only posts data to the second website, no matter the order of the websites. I'm wondering how this is possible since I have a boolean in state which only gets set to true once the first form has been submitted. So I have no clue as to why it only submits the second one, but not the first one.
[Code]...
View 1 Replies
Jan 18, 2012
I'm using a DO interation to loop a function I'm using to test for internet connectivity. The code is working fine, except that when one of the tests is satisfied the loop stops. I want this to continue in the background while the program is running. How can I get this to work?
Private Sub checkInternet()
Dim InetChecker As Boolean
InetChecker = CheckForInternetConnection()
Do While LabelCount.Text <> ""
Thread.Sleep(10)
[Code] .....
View 3 Replies
May 8, 2011
Im currently making a tower defense game and im on my last bug for the game and i cannot get it solved. For some reason my For Loop to check if a shot hits a person is not working properly. Ill set it to "For Me.x = 1 To NumOfFaces 'Const for 5' and itll only check the first enemy and last enemy. Here is the code to check for if a shot hits an enemy, this runs on a timer through out the game.
Private Sub HitFace()
For Me.x = 1 To NumOfFaces
If Shot1Firing = True Or Shot2Firing = True Or Shot3Firing = True Or Shot4Firing = True Or Shot5Firing = True Or Shot6Firing = True Then[code].....
View 7 Replies
Dec 17, 2010
Is there a way to start same Thread form foreach loop
Sub
For Each lvItem As ListViewItem In _ListView.SelectedItems
tThread = New Thread(AddressOf Me.myFunction())
[Code]....
In my case, when i select one item from list it is working fine...but when i select more than one files it odes not work.
View 3 Replies
Jan 19, 2012
I'm using loop to read data from sql and then make some calculations then save it again to another table but when application loop for 3 or 4 times it's freeze but the job is done but if loop = 10 or more then it is freeze and hangup for long time .i need to learn how to make my application working better and never freeze and make application working with any count for loop without freeze .
View 7 Replies
Mar 14, 2011
Makes the following statement about the code below:
**"The computer evaluates the loop condition in the Do...Loop statment to determine whether the loop instructions should be processed. In this case, the inputsales <> String.Empty condition compares the contenst of the input sales variable to the String.Empty value. As you know the String.Empty value represents a zero length, or empty, string if the inputsales variable is empty, the loop condition evaluates to True and the computer process the loop instructions. *If on the other hand the inputsales variable is not empty, the loop condition evaluates to false and the computer skips over the loop instructions.
Based on the code I think it is the opposite: ...that while the inputsales value is not empty it should evaluate to true and process the loop and if it is empty it should evaluate to false and skip the loop?
See below.
Option Explicit On
Option Strict On
Imports System.Globalization
[CODE]...
View 2 Replies
Mar 9, 2011
I know I am missing the obvious. I would like a label to show how many cycles in loop are left.
[Code]...
View 5 Replies
Nov 23, 2011
I am constructing a program, i am new to Visual Basic, but i have past programming experience. I was wondering if anyone knew how to form a loop that could...lets say calculate the answer when two numbers are added together,and it would repeat this thousands of times, etc. And if there is a way, would it be possible to calculate the time taken to complete this loop.
View 5 Replies
May 3, 2010
I have written a function that gets the alexa ranking of a given url, now this function works perfectly but I want to loop through a ListView of urls and grab the alexa rank of each item (url) with my function.The code works great if I put a MessageBox in the loop to test that the function is returning a value but when I remove the MessageBox the loop does not work.I need it to loop through adding each result without a MessageBox stop in each loop.
vb
For Each Item In ListView1.Items
Dim result As Integer
result = GetAlexaRank(Item.Text)
[code].....
View 12 Replies
Sep 3, 2009
I found on msdn samples and modified (add Thread.GetDomaind.UnhandledException)
<SecurityPermission(SecurityAction.Demand, Flags:=SecurityPermissionFlag.ControlAppDomain)> _
Public Sub Main()
' Add the event handler for handling UI thread exceptions to the event.[code].....
View 1 Replies
May 31, 2010
So I made a simple patform game where the player has to jump quickly while the platforms move to the bottom of the screen, as to not touch the bottom of the screen. But, I need to know how to create a loop to loop the locations of the platform. This means that after twenty or so platforms, the same platforms come up again, so that the player will have an "endless" game. I've declared all the platform's locations relative to the location of the first repeating platform:
[Code]...
View 1 Replies
Aug 11, 2009
I assigned an integer as 1, and looped my program using:[code]I can recieve the packets without looping, but once i loop, i receive nothing.
View 29 Replies
Jun 18, 2009
It appears that my favorite thing in the world is tackling projects that are beyond my current knowledge and abilities. I have a little project that I am working on which is a simple image viewer stocked with (upon completion) your standard Load..., Next/Previous, Zoom In/Out, Actual Size, and Full Screen capabilities. However, I am running into a few snags:
(1) I've been able to get my "Load..." button to display a file dialog box, but I cannot seem to get a working filter (with which only image file types are allowed to be selected) in working order.
(2) I have a PictureBox object (entitled PictureBox1) that displays the image selected via the file dialog box, but it loads images in their full size (1:1/100% zoomed) state without scrollbars, etc. to allow me to navigate the loaded image. I would like to have it load the image, initially, to fit within the dimensions of PictureBox1 and from there be able to zoom in/out via my "Zoom In/Out" and "Actual Size" buttons and be able to scroll if the zoom level is beyond the dimensions of PictureBox1.
(3) It dawned on me that I haven't the faintest idea how to get my "Next/Previous" buttons to allow the user (me) to navigate, in succession, the images contained in the folder in which the currently loaded image is stored. [code]
If it is deemed that this thread is inappropriately requesting help, I ask that it be locked/deleted quickly as I recognize that this is a large community with many discussions going without need of unwelcome posts.
View 9 Replies
May 29, 2012
I have this little application that runs a SQL query works great, now I want to have a Start Button run the and display results then System.Threading.Thread.Sleep(300 * 1000) for 5 min then run again and display results and loop till I buttonstop_click. unsure if the sleep is the best method.
[Code]...
View 2 Replies
Sep 10, 2009
I am new to VB programming. I have the following code. When I execute my program only the last value from the loop is displayed in the label. I do write my code so that all of the values (years 1 to 5) show up in the label?
[Code]...
View 5 Replies
May 9, 2011
I'm completely new to working with more than one thread at a time but I've been reading up on backgroundworker quite a bit today. I get the general idea and think I could use it ok if it weren't for the fact I have a loop in a loop and I don't think they could be run inside a single thread together
View 4 Replies
Nov 18, 2009
How do you convert a loop to a for loop
View 5 Replies
Sep 29, 2011
How would I convert this Do While loop to a For...Next loop? I can't figure it out.
intCount = 0
Do While intCount < 50
lstOutput.Items.Add(intCount)
intCount += 1
Loop
View 1 Replies
Jul 21, 2010
Dim count As Integer
For count = 1 To 10 Step 1
Dim But+count As New Button
myButton+count.Width = 100*count
[code]....
Dim But+count As New Button => How to make it work
View 2 Replies
May 25, 2010
I'm slowly learning about loops. I have a couple of questions
1) When a condition is being tested.. what does that mean? I don't understand the "condition" word.
2) What is the difference between a loop that never ends and a loop that ends?
I have the code for the loop that ends and the loop that never ends. I can see the difference in the code, but I don't understand what is making it different. Here is the code below.
[code]...
View 1 Replies
Mar 15, 2012
I use the following code to add a row to an existing table
Dim newLineRow As DataRow = dsAccountDetails.Tables("Ph").NewRow()
newLineRow("Service TN") = "test"
dsAccountDetails.Tables("Ph").Rows.Add(newLineRow)
When I run the code it adds a single row to my table just like I want it to. However, when I put it in a loop it errors and tells me that the row already exists. The number of rows is always changing and I want to build the table from arrays. Why isn't the following working?
Dim a As Integer = 0
Dim b as integer= 5
For a = 0 to b
dsAccountDetails.Tables("Ph").Rows.Add(newLineRow)
Next
View 1 Replies
Aug 28, 2010
Currently, lets say that I have this code:
While r <> "HI"
r = RandomStringGenerator(1)
time = time + 1[code]....
how can I make it so that i can say basically this:
While r <> "HI" Or While r <> "BY"
r = RandomStringGenerator(1)
time = time + 1[code].....
But it still doesn't work! What's up with this?
View 1 Replies
May 12, 2009
Why does any app I make use 50% CPU while in a loop, even if the loop is doing simple evaluations, I've added Application.DoEvents() which stops the application hanging, but 50% is rediculous, what gives?
View 10 Replies
Mar 22, 2011
I have got this far and if you run it, it will do what you ask. Now when I type in 99999 or -99999 it will not end. Can someone tell me what I am doing wrong. I am suppose to loop until a sentinel value of -99999 is enter for previous meter reading.[code]...
View 2 Replies
Apr 28, 2010
I am working in VB 2008, Like vb 6.0 I used 'Do Until' loop in record set. I am now using 'For Loop' command for moving record in a table in vb 2008. But I want to use 'Do Unitl' Loop in record set moving record pointer to next record. Is it possible. If possible please show me with example.
View 4 Replies