Search results for query: *

  1. A

    Rolling Text - loop help

    Here is an updated version. Now it rolls as it prints out, then starts solving from left to right. Private m_r As New Random() Private ReadOnly Property R() As Char Get Dim t As Integer = m_r.[Next](10) If t <= 2 Then Return...
  2. A

    Rolling Text - loop help

    I figured it out. I simply had to remove the Continue For statement from the inner for loop. Looks and works great now.
  3. A

    Rolling Text - loop help

    Hello everyone. I was getting creative and started to make a simulated "Encrypter" that simply takes some text and rolls it while solving for each letter. Movie style! I plan on incorporating this into any console app I make just for fun. I'm having an issue with a nested for loop and could use...
Back
Top