10 Different Random Sentences Generating By Using Arrays?
Jun 29, 2012
I have an assignment that requires me to create 5 different arrays: nouns, adjectives, verbs, prepositions, and articles. From those 5 different arrays, it has to display 10 different random sentences in the listbox named lstRandomSentences. The sentences have to be in the following order:
<article> space <adjective> space <noun> space <verb> space <preposition> space <article> space <adjective> space <noun>. Each of those arrays have to be randomly chosen in the list box and that's what I am having trouble outputting randomly.
View 10 Replies
ADVERTISEMENT
Oct 9, 2010
I would like to learn how to use arrays to store sentences, then use a label or a button to show each one.
View 6 Replies
Nov 14, 2010
I'm trying to create a program that produces random sentences as output. With five arrays of strings, one each for nouns, adjectives, verbs, prepositions, and articles. Each array should hold several words for that part of speech. It's supposed to generate sentences by randomly choosing eight words (randomly generating eight array indices) from these arrays, always constructing sentences by using the parts of speech in the following order: article, adjective, noun, verb, preposition, article, adjective, noun.Also, theh code should be properly modularized so that the code to generate each part of speech is not repeated.
View 8 Replies
Nov 26, 2011
VS2010 (SP1) / .NET 4 on Windows XP. The question is simple, the answer; not so much. When generating a salt, should the LENGTH of the salt be random, fixed or a random number within a (min/max) range? I am using RNGCryptoServiceProvider to generate the salt, just unsure of the length of the salt.
View 12 Replies
Mar 9, 2009
I'm wondering how I would go about generating a random number in VB.Net. As I am developing an ATM system for a bank, a randomly generated 4 digit PIN code would have to be assigned to each person.
View 2 Replies
Jun 4, 2012
i am working with Visual Basic 2008 and i wanted to know how u can create a random word?
View 8 Replies
Mar 14, 2012
i have a few questions about generating random numbers:1) is it possible for the programme to generate a random number that it has previously generated (i.e could it produce the same number more than once?)2) can you specify what numbers to generate? e.g only whole numbers up to 1000?
View 4 Replies
Mar 1, 2012
I have to generate a series of random numbers, say 100, within range of -1 and 1 and scale them by a value, say square root of 2. After which I take those 100 values and their sum = 0. Then scale that sum by another value. Check the code below to see what I mean.
[Code]...
View 1 Replies
Mar 19, 2010
I am trying to make a number be generated as this Windows Form loads, then the user guesses by entering a number and clicking a button to check whether it is correct or incorrect.
I have the code complete, I'm just confused on how to declare the random variable outside the button sub procedure so it only generates one time.
Here is my code.[code...]
View 6 Replies
Apr 7, 2009
I'm using VB.NET 2008 Express Edition and I'm trying to create a simple program that will roll a number of dice I choose. It does this by generating a random number within a specified range (I'm rolling 3-sided dice in this case so I'm generating numbers between 1 and 3) and adding each number to a textbox to create a total of all the dice rolled so far.
This is my
Private Sub butRoll_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles butRoll.Click
Dim RandNum, i As Integer
Dim RandomClass As New Random()
'if at least one dice is rolled
If txtD3.Text > 0 Then
[Code] ......
Now the problem I am having is that although my random number generator is generating the right numbers (confirmed by checking the txtLastRoll textbox), when I add it to txtTotal, it seems to be getting another number from somewhere and adding that to my random number then adding it to the total and I have no idea how this is possible! txtTotal always starts as 0 but txt1 is not showing that. Normally I would just set txtTotal to 0 there but if I do that, I won't be able to add the numbers together. I've tried finding a pattern in the mystery numbers appearing in txtTotal but they just seem to be random.
View 7 Replies
Feb 6, 2011
I am working on an application, where I have already normalized the databases. Now I am creating an application in asp.net with vb.net as my code behind fine. These random numbers would be stored in the Id column. So, no way there would be repeating the keys. But my application could generate the key, which would probably get repeated. How would I check the database for, so that random numbers wont get repeated? is there any function? Could you give me the code for the same.
View 10 Replies
Sep 5, 2009
Iam doing a project in vb2008 for a quiz program. i want to randomly generate questions in a textbox a question should occur once in the quiz session. i had my code:
Imports System.Data
Imports System.Data.OleDb
Imports AgentObjects
[CODE]...
View 1 Replies
Nov 24, 2011
How would I go about doing this, is there a for next loop involved and is there a way not using the for next loop ?
View 15 Replies
Jan 4, 2010
Why does it give exactly the same numbers despite different variables? See below code:Public Class Form1
Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click
Dim MyRand1, MyRand2, Myrand3 As New Random
[code].....
View 1 Replies
Jul 16, 2011
How do I go about generating a random vector coordinate that is within say 200 units of another vector coordinate?
View 2 Replies
Feb 20, 2009
is there a code for generating random letters and numbers?? like between 0 to 9 and A to F??
I used this code :
[Code]...
View 5 Replies
Jul 15, 2010
I want to generate random number, which is 9 digits including leading zero if the number is less than 9 digits, say 123 will be 000000123. I have the following code which doesn't include leading zero :
Dim RandomClass As New Random()
Dim RandomNumber = RandomClass.Next(1, 999999999)
View 3 Replies
Feb 25, 2011
I'm trying to use a GUID to generate 6 random alphanumeric characters (just letters and number). Is there a way to change the format of a GUID before it is generated. Or must I generate the GUID in its standard format and then manipulate it.
View 5 Replies
Aug 28, 2010
I want to do is have textbox1.text show 10-20 characters that are random letters and numbers when i press button1. I have tried to do this but I am not so great with generating anything that is random. If possible have it be a mix of Capital and Lowercase letters.
View 1 Replies
Aug 22, 2009
Dim strFilename As String strFilename = Format(Now, "ddmmyyyyhhmmss"
That generates the day number month and so on. But i want to generate a string with "VB Code Snippet" then after that just any 5 letters or numbers so it might generate "VB Code Snippet 7ef82"
View 17 Replies
Dec 24, 2009
I am using Visual Basics 2008 Express edition. I want my program that I am making to generate a random amount of numbers and letters in this form when I click Button1.
WM9RX-GG6J2-4WKD9-FDJWM-TYH76
Is this possible?
View 8 Replies
Nov 17, 2011
Been trying to think out something for this one but i can't come up anything. Arrays is kinda tough for me.
I am trying to practice a program that:
1. ask the user for number of elements
2. Use IsNumeric Function to catch an error.
3. A 3rd form pops up showing random numbers like this:
0 45
1 23
2 56
3 75
4 34
5 99
Then, after i click a button called "Sort" It sorts the random numbers from lowest to the highest value.
Public Class Form1
Private Sub btnGenerate_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles btnGenerate.Click
[Code].....
View 14 Replies
Apr 26, 2011
I'm working on a program that calculates 2 things. First I need to fill a 5 x 5 array with random #'s from 1 - 10 and Determine the average of each row, each column and the two diagonals, and the second calculation is Fill a 100 element array with random numbers from 1 - 100 and determine the standard deviation and mean of the random numbers in the array.
View 7 Replies
Feb 24, 2010
In the player vs computer tic tac toe game I've been working on there are 2 boolean arrays (one for the computer and one for the player) that track which cells have been taken. When all other moves have been exhausted I would like the computer to play a random cell. To do this I am trying to gather the indexes of all False values from the 2 arrays and add them to another dynamic integer array. The computer will then choose randomly from the new array. The two Boolean arrays are plyrTaken and cmptrTaken. The dynamic array is occupied.
Here I declared the arrays:
Public Class Form1
Private occupied() As Integer
Private plyrTaken(8) As Boolean
Private plyrPairs(14) As Boolean
Here I got the dynamic array ready for use:
Private Sub Form1_Load(ByVal sender As Object, ByVal e As EventArgs) Handles MyBase.Load
ReDim occupied(0)
And here is the code I have attempted:
For index As Integer = 0 To 8
If plyrTaken(index) = False And cmptrTaken(index) = False Then
ReDim Preserve occupied(UBound(occupied) + 1)
[Code] .....
In the last block of code I was just trying to print the contents of the array to a list box so I could see if it was working. Obviously, it's not. When one position is occupied the list box shows the occupied cell index with a Zero. This really shouldn't be there as I want only taken cell indexes to be sent to array and list box. When a second position is occupied 7 zeros are added to the list box. Kinda shows promise as 9 total cells - 2 is 7 but there should be index numbers other than zero to represent the cells that have been occupied.
Also, the indexes shouldn't keep adding on to the dynamic array I need a way to clear the array and resize it back to 0. I tried adding
Redim occupied(0)
to the top of the code but that didn't seem to work.
View 17 Replies
Nov 14, 2010
I'm trying to create a program that produces random sentences as output. With five arrays of strings, one each for nouns, adjectives, verbs, prepositions, and articles. Each array should hold several words for that part of speech. Like, the Articles array could hold the strings "the" and "a"; the Nouns array could hold "Martian", "baby", "skunk","computer" and "mosquito"; the Prepositions array could hold "around", "through", "under", "over", and "by"; and so on.
It's supposed to generate sentences by randomly choosing eight words (randomly generating eight array indices) from these arrays, always constructing sentences by using the parts of speech in the following order: article, adjective, noun, verb, preposition, article, adjective, noun. Also, the code should be properly modularized so that the code to generate each part of speech is not repeated.
View 3 Replies
Nov 29, 2011
I have to make a program that uses 2 arrays, one with the states name and one with the capitals names. I have to make it to where it randomly selects a state and asks you what the capital is, and gives you 4 choices in the 4 radio buttons provided. My problem is getting one of the randomly selected answer choices to be the Correct answer.
Here is my code so far:
Public Class USCapitals
' Declare module level variables.
[Code] .....
View 3 Replies
Jul 27, 2011
I have learnt how to create a basic random word generator. I now want to take this further but I would like to know if what I am thinking of is possible. I am in the process of wanting to create a random name/word generator which reads/loads an array from a text file. think this part I will be Ok with as there are some vids and tutorials about. However, I wish for the text file to have multiple arrays and then dependant on the day and time of the day, only a string from the current time array is loaded. Does that make sense and is it possible? I am happy to spend time learning how to do this but only if it is possible.
View 3 Replies
Apr 28, 2007
I'm converting a user generated list box to an array and then generating a user defined number of random strings and placing it in a textbox.The code I have works fine as it will generate the number of random strings the user wants, except sometimes a line is blank at the top of the list but is counted as a string.
View 4 Replies
Sep 17, 2011
I have this program generating a firstname and lastname from a file. When I run this program I enter information in three textboxes. The first two are the salary low and high(salary1.text, salary2.text) and the last one is the number of "copies"(copies.text) that I want.. When I put a number such as 10 in the text box it outputs some of the same names. The firstname file has around 100 records and the lastname file has about 1000 records Why is it generating the same name The problem is even worse if I do something like 1000 copies.. it outputs the same thing 8 times and then does something different another 8 times
Public Class Form1
Dim sex As String
Function randomfirstname()
Dim infile As IO.StreamReader
[code]....
View 1 Replies
Jun 7, 2006
I heard that you have to add some code to a random number generator
results(1) = Int((5 - 1 + 1) * Rnd() + 1)
so that if it is used again and again it keeps generating new numbers as apposed to what this piece of code does by itself which is creates the same number every time.what is the code?
View 10 Replies