Click here to Skip to main content
15,902,020 members
Home / Discussions / Visual Basic
   

Visual Basic

 
AnswerRe: Label on form with Image background Pin
rudy.net11-Nov-05 11:27
rudy.net11-Nov-05 11:27 
QuestionCheck if mouse is within REGION Pin
spelltwister11-Nov-05 9:49
spelltwister11-Nov-05 9:49 
QuestionExecute some code at dll registration Pin
Oliver_Twist11-Nov-05 7:56
Oliver_Twist11-Nov-05 7:56 
QuestionTextBox Maxlength Pin
MarcSaiz11-Nov-05 7:18
MarcSaiz11-Nov-05 7:18 
Questionhow do i scramble words at random. Pin
JustmeNick11-Nov-05 6:44
JustmeNick11-Nov-05 6:44 
AnswerRe: how do i scramble words at random. Pin
rudy.net11-Nov-05 11:44
rudy.net11-Nov-05 11:44 
GeneralRe: how do i scramble words at random. thanks but Pin
JustmeNick11-Nov-05 16:55
JustmeNick11-Nov-05 16:55 
Generalok, i have got it,, scrambling words at random. Pin
JustmeNick12-Nov-05 4:54
JustmeNick12-Nov-05 4:54 
'fill array with some values
For j = LBound(word_array) To UBound(word_array)
word_array(j) = "*"
Next j

Randomize

'fills the array with letters from the word in random space provided.
For i = LBound(word_array) To UBound(word_array)
b = 1 + (Rnd * (word_size - 1))

'this section checks to see if the random is already been used..
'if not place a letter into its space..
'if it has been used, it uses a loop to regenerate a new random number and do a second check


If word_array(b) = "*" Then
word_array(b) = Mid(word, i, 1)
Else
Do While word_array(b) <> "*"
b = 1 + (Rnd * (word_size - 1))
If word_array(b) = "*" Then
word_array(b) = Mid(word, i, 1)
Exit Do
End If
Loop
End If
Next i


Nab
GeneralRe: ok, i have got it,, scrambling words at random. Pin
rudy.net12-Nov-05 16:41
rudy.net12-Nov-05 16:41 
Questionconvert a string to a form object Pin
cruise9511-Nov-05 6:13
cruise9511-Nov-05 6:13 
AnswerRe: convert a string to a form object Pin
rwestgraham11-Nov-05 7:52
rwestgraham11-Nov-05 7:52 
GeneralRe: convert a string to a form object Pin
cruise9511-Nov-05 8:44
cruise9511-Nov-05 8:44 
GeneralRe: convert a string to a form object Pin
rwestgraham11-Nov-05 9:53
rwestgraham11-Nov-05 9:53 
QuestionTemplate type Reports Pin
macca2411-Nov-05 3:03
macca2411-Nov-05 3:03 
QuestionDropdownList Pin
macca2411-Nov-05 3:03
macca2411-Nov-05 3:03 
QuestionHow to paint VS.Net ToolBar control Pin
Anindya Chatterjee11-Nov-05 2:12
Anindya Chatterjee11-Nov-05 2:12 
QuestionThumbnails to Word thru VB6 Pin
dsrahul11-Nov-05 1:45
dsrahul11-Nov-05 1:45 
QuestionWindow Form like Google Desktop ??? Pin
faviochilo11-Nov-05 1:33
faviochilo11-Nov-05 1:33 
QuestionGeneral failure in component GDI+ Pin
Me.MyBase11-Nov-05 0:38
Me.MyBase11-Nov-05 0:38 
QuestionWhatsThisHelp Click Event Pin
Jottum11-Nov-05 0:34
Jottum11-Nov-05 0:34 
Questionfile permission in vb Pin
uktrips00710-Nov-05 23:40
uktrips00710-Nov-05 23:40 
AnswerRe: file permission in vb Pin
Jottum11-Nov-05 2:43
Jottum11-Nov-05 2:43 
AnswerRe: file permission in vb Pin
Dave Kreskowiak11-Nov-05 3:29
mveDave Kreskowiak11-Nov-05 3:29 
QuestionExecuting MS-Acess queries from a text file Pin
sarah_chandran10-Nov-05 19:30
sarah_chandran10-Nov-05 19:30 
AnswerRe: Executing MS-Acess queries from a text file Pin
DA_Loring10-Nov-05 20:52
DA_Loring10-Nov-05 20:52 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.