Jako, że jestem nowy na forum... WITAM!
I prosta sprawa... tworzę program w VB który ma generować powiedzmy 3 kody. KOD1, KOD2, KOD3, ale każdy z nich może zostać użyty tylko RAZ.
Mam w generatorze coś takiego:
Private Sub Timer1_Tick(sender As System.Object, e As System.EventArgs) Handles Timer1.Tick ProgressBar1.Increment(1) If ProgressBar1.Value = ProgressBar1.Maximum Then Timer1.Stop() Dim key As Integer key = (Rnd() * 3) Select Case key Case 1 TextBox1.Text = "KOD1" Case 2 TextBox1.Text = "KOD2" Case 3 TextBox1.Text = "KOD3" End Select End If End Sub
Jak to zabezpieczyć aby jeden kod, mógł być generowany RAZ?