Quantcast
Channel: Looping Problem
Viewing all articles
Browse latest Browse all 20

Looping Problem

$
0
0
 C McHale wrote:

Thanks i'll give it a shot and let you know.  How do i create a status bar?  It only takes maybe 2 mins tops to run the calculations

 

Hi,

 

Drop a ProgressBar on your FORM and add the following highlighted code.

 

In fact I have changed and added to the entire code.

 

You could even add two dateTimePicker controls to your FORM to select the START and the END date and use the value property in your code.

 

E.G.

Date1 = DateTimePicker1.Value

 

2 minutes is a fair time if the user does not see something happening.

 

Note I made the maximum value 42 which is the same as the number of days in the DO LOOP.

 

6 years will be 2192 days or 2191 days depending on whether 2 leap years are covered or not.

 

date1 = Convert.ToDateTime(

"01/01/2009 00:00:00") 'January 1st, 2009.

date2 = Convert.ToDateTime(

"12/31/2014 00:00:00") 'December 31st,2014.

 

'is 2191 days.

 

date1 = Convert.ToDateTime(

"01/01/2008 00:00:00") 'January 1st, 2008.

date2 = Convert.ToDateTime(

"12/31/2013 00:00:00") 'December 31st,2013.

 

'is 2192 days.

 

 

 

Regards,

 

John

 

Code Block

Public

Class Form1

 

Private numberOfDays As TimeSpan

Private date1 AsDate

Private date2 AsDate

 

PrivateSub Form1_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) HandlesMyBase.Load

 

My.Application.ChangeCulture("en-Us")

'6 years from 2008 to 2013 inclusive.

date1 = Convert.ToDateTime(

"01/01/2009 00:00:00") 'January 1st, 2008.

date2 = Convert.ToDateTime(

"12/31/2014 00:00:00") 'December 31st,2013.

numberOfDays = date2.Subtract(date1)

ProgressBar1.Minimum = 0

ProgressBar1.Maximum = numberOfDays.Days + 1

MessageBox.Show(

"Running for "& (numberOfDays.Days + 1).ToString & " days.")

EndSub

 

 

PrivateSub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click

 

'Set a DATE.

Dim myDate AsDate = date1

Dim loopCount_NumberOfDays AsInteger = 0

Dim outputString AsString = ""

Do

'To skip a specific holiday like Christmas Day and New Years day.>>

If myDate.Month = 12 And myDate.Day = 25 Then

myDate = myDate.AddDays(1)

loopCount_NumberOfDays += 1

outputString &=

"**** Christmas Day skipped!! ****"& vbCrLf

EndIf

If myDate.Month = 1 And myDate.Day = 1 Then

myDate = myDate.AddDays(1)

loopCount_NumberOfDays += 1

outputString &=

"**** New Years Day skipped!! ****"& vbCrLf

EndIf

SelectCase myDate.DayOfWeek

Case DayOfWeek.Monday To DayOfWeek.Friday

outputString &= myDate.ToShortDateString & vbCrLf

'Do your calculations here.>>

 

 

 

 

'Add one to the current date.

myDate = myDate.AddDays(1)

loopCount_NumberOfDays += 1

Case DayOfWeek.Saturday

'Add 1 day if it is a Saturday to show the Sunday message!!

myDate = myDate.AddDays(1)

loopCount_NumberOfDays += 1

outputString &=

"**** Saturday skipped!! ****"& vbCrLf

Case DayOfWeek.Sunday

'Add 1 day if it is a Sunday.

myDate = myDate.AddDays(1)

loopCount_NumberOfDays += 1

outputString &=

"**** Sunday skipped!! ****"& vbCrLf

EndSelect

ProgressBar1.Increment(1)

'Loop for 42 days in total.

LoopUntil loopCount_NumberOfDays = numberOfDays.Days + 1

MessageBox.Show(outputString)

MessageBox.Show(

"Loop ran for "& loopCount_NumberOfDays.ToString & " days.")

EndSub

End

Class

 

 

 

Viewing all articles
Browse latest Browse all 20

Trending Articles



<script src="https://jsc.adskeeper.com/r/s/rssing.com.1596347.js" async> </script>