Welcome to HBH! If you have tried to register and didn't get a verification email, please using the following link to resend the verification email.
Realistic 2
I am having trouble with realistic number 2. I am doing it in Visual Basic as it is what I'm "half decent" programming at. I have my code worked out but I'm not sure what is wrong i went through the whole month of September from backup_2004-09-01_0100 through to backup_2004-09-31_2300 (just to be sure!) And i didn't come out with anything.
Is this code correct?
If hours.Text = "2400" Then
days.Text = days.Text + 1
hours.Text = "0100"
End If
If hours.Text = "100" Then
days.Text = days.Text + 1
hours.Text = "0100"
ElseIf hours.Text = "200" Then
hours.Text = "0200"
ElseIf hours.Text = "300" Then
hours.Text = "0300"
ElseIf hours.Text = "400" Then
hours.Text = "0400"
ElseIf hours.Text = "500" Then
hours.Text = "0500"
ElseIf hours.Text = "600" Then
hours.Text = "0600"
ElseIf hours.Text = "700" Then
hours.Text = "0700"
ElseIf hours.Text = "800" Then
hours.Text = "0800"
ElseIf hours.Text = "900" Then
hours.Text = "0900"
End If```
Thanks in advance
- BSF
edit: this is not my whole code obviously