Create A Program That Produces Random Sentences As Output?
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
ADVERTISEMENT
Apr 4, 2010
The class Random is out right defective. It always produces the same random numbers in the same sequence. Things I have tried so far is every kind of seed you can think of as well as Randomize. The result is that I always get the same random numbers in exactly the same sequence.
View 4 Replies
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
Oct 14, 2010
I've been trying to trace down a bug for hours now and it has come down to this:
Dim length as Integer = 300
Dim buffer() As Byte = binaryReader.ReadBytes(length)
Dim text As String = System.Text.Encoding.UTF8.GetString(buffer, 0, buffer.Length)
The problem is the buffer contains 300 bytes but the length of the string 'text' is now 285. When I convert it back to bytes, the length is 521 bytes...The same code is a normal WinForms app works perfectly. The data being read by the binary reader is a UTF8 encoded string. Any ideas why Silverlight is playing funny buggers?
View 1 Replies
Nov 2, 2011
I want to generate random datasets with regex.
Therefore I have an expression like [a-z]{10}.I want to generate maybe 200.000 data - maybe more (it should be generic), every data should be unique.
How can i implement that?at the moment i have a algorithm, that generates a random string, then search in an array that stores the values, if the string is already in there it repeats that process. Otherwise it stores the string in the array.
View 2 Replies
Feb 13, 2011
I need to create a program that when I click a button it shows a sentence (took it from a list) random. But after it have to delete the sentence from the list 'cause we dont want to read it again I don't know so much about VB so I'd like some help!
View 25 Replies
Mar 1, 2012
What I am trying to do: There are three powershell scripts with different time delays as shown below.I am trying to run them asynchronously in .NET and I followed this article to implement Asyncrhonous programming. Where I am stuck:The I am not able to retrieve output after the events are invoked.The scripts are being called but then the program ends and it shows "Press any key to continue" in console windows.I don't what I am missing here.
Info: JobRequest is a class that I use to pass around information keep track of jobs.
Sub Main()
OurAsyncFunctionCalling("psDelayScript2.ps1", "-arg1 4 -arg2 5", 1)
OurAsyncFunctionCalling("psDelayScript1.ps1", "-arg1 2 -arg2 3", 2)[code]......
View 1 Replies
Nov 28, 2009
I am generating an array of random numbers for for a class project (simple yahtzee game)I am comparing the output of the array and displaying a picture of each matching dice in a picture box.I would like to use check boxes to select a position of the array so it cannot be changed until the check boxes are clearedWhen the check box is checked, the value of the position in the array should not change.
View 6 Replies
Apr 25, 2009
Is there a way i can execute a CLI program and have it output or return what the CLI program sais, such as ping etc.
View 3 Replies
Oct 20, 2011
I am making a program which generates a random number between 1 and 10 and when 7 appears it is suppose to tell you how many tries it took to get the number 7 and then end the application. This is the code I have used:
CODE:
This code only generates the number 7 and exits the application, each time i click the random button but i want it to show the other number it randomizes too for example 1 2 3 4 .. etc, if u dont understand, please try it, but im trying to say, when i clikc random it just says number 7 (does randomizing in background) and tells you how much tries it took but i want it to show the other number it randomized also and when 7 appears, then exit the program
View 2 Replies
Mar 16, 2010
Here is my code, I cannot produce the output in the lstresults.Text box
Public Class Expense_Report
Const expenseDivide As Double = 50
Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs)
[code]....
View 1 Replies
Mar 10, 2010
Okey, I want a code to that only show some words, but this time I want them to setup like this according to what checkboxes is checked:
[Code]...
View 5 Replies
Sep 22, 2011
I'm a really new programmer, teaching myself VB .net
Basically I need user input text from fields in a panel assembled and some parts formatted ( basically italic) and displayed in text box. Really the same as MS Word dose for citation references, then it displays the input correctly.[code]...
View 1 Replies
Aug 9, 2011
I would like to be able to create a function where I can change the probability of a number being outputtedI am creating (Well have created) a slot machine game but the outputs are completely random and I would like to change the odds. Is this possible and if so could someone show me or direct me in what I should do to create this function.
View 6 Replies
Jun 11, 2009
I have some really sloppy code that creates an XML file with a random name. The random name (SessionID) is passed into the Sub, but the sub checks IF File.Exists first. If it does exist, it creates a new randoms file name based on System.Random (has to be done this way because it is also a SessionID).
View 4 Replies
Dec 10, 2011
i have errors while creating
View 13 Replies
Apr 17, 2009
I'm working on my graduation project and within it i need a function gives me random ID numbers and random dates since 2008,01,01 untill now .. I'm done with the ID numbers but i couldnt find a solution for the dates
View 5 Replies
Oct 22, 2010
how to create random characters in vb8
View 10 Replies
Mar 26, 2010
eexcuse me can you help me again? i need to do a crossword search puzzle? do you have any idea how the interface should look like? interface for the puzzle? i can already generate the words but how do i make it link with the puzzle. anyway i think the first step is to creat the puzzle first right? what should i use to create the random alphabets? and how do i add the alphabets?
View 5 Replies
May 5, 2011
I need to insert a word after every X (i.e. 4,5,6 etc) sentences in given text. I feel regex would be compact and good solution. To be specific, I need to do this in .net. regex can't identify some sentences ending with not so common punctuation, I am fine with it. I don't need 100% accuracy)
View 3 Replies
Oct 19, 2009
I am struggling to come up with a code that compares one sentence to three other sentences. For the input could be a simple textbox and the output being the most probable sentence (and the probability if possible).
View 3 Replies
May 17, 2012
how can do this program only read other sentence after # etc [URL] this (mister.john#gotodaniweb.com2) is in listbox so when u click it it print one the label only the sentence after # so iit prints and show only [URL]
View 2 Replies
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
May 23, 2010
want to know if anyone knows how to seperate sentences in a dialog box? what I mean is this.I have a rather long warning attached to my closing dialog box that really needs to be there. The problem is that it appears all in one long string and I would like it to in a seperate string.Are you sure you want to exit without saving changes? If you close this window, you will close the program and lose all unsaved data!this is all coming out in one long sentence..what I would like it to look like is this:Are you sure you want to exit without saving changes?If you exit this Window the program will close any unsaved data will be lost!
View 3 Replies
May 12, 2010
What is the output of the following program segment?
[code]...
View 11 Replies
Jul 8, 2009
I want to create an xml output for my code, in VB6 the XMLfile is declared as type XML, how is this done in VB.Net?
View 7 Replies
Apr 19, 2011
I have not messed with VB much and I have been trying to do something that has me stumped. I wanted to create an array of 10 random numbers. Each of these numbers then is printed onto a label. From here I have two more labels that show the highest and lowest value. I got the first part, 10 random numbers show up but then things get shaky. This is what I have thus far.
[Code]...
View 1 Replies
Jul 1, 2010
I need an example of how to create and use a random access file
View 3 Replies
Jul 28, 2009
I need to create a random number genrator to generate a membership number when i open my sign up form. i need it to be shown in a text box.
View 9 Replies
Oct 29, 2011
i want creat a simple game. but how to create a random value to index in array
i.e index of aray [1,2,3,4,5,6,7,8] is generated randomly become [8,6,1,5,4,2,3]
then i use tha indext for a button text
"and anyone can make below code more simple"
Button1.Text = arr_tombol(1).ToString
Button2.Text = arr_tombol(2).ToString
Button3.Text = arr_tombol(3).ToString
[Code].....
View 2 Replies