Search results for query: *

  • Users: Terabojin
  • Content: Threads
  • Order by date
  1. T

    vb random sentance generator

    Hello, I am working on an application that once clicked will produce 10 random sentances. This is what I have so far, but I'm not sure where to go from here. ' String arrays for articles, nouns, verbs and prepositions Dim articles As String() = {"the", "a", "one", "some", "any"}...
  2. T

    needing some help creading a MDI text editor

    I am greatly needing some assistance. I'm really unsure of how to do this. I'm sure this is probably very easy for some, but I am completely lost with this. Any ideas?
  3. T

    duplicate word removal

    I am trying to accomplish this problem: write an appication that inputs a sentace from user (assume no punctuation), then determines and displays the non-duplicate words in alphabetical order. Treat upper and lowercase the same. [can use String method Split with no arguments, as in...
  4. T

    Shape Hierarchy

    Hello, I am having some trouble with this code. I know that I am supposed to use an array, however I cannot figure out how to do so. This code is not giving me any output, its not taking any input, and its throwing me tons of errors I cant figure out how to get rid of. Here is the code that I...
  5. T

    triangles of asterisks

    i already have the code to produce triangles made of asterisks as follows: Public Class Form1 Private Sub TextBox1_TextChanged(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles TextBox1.TextChanged End Sub Private Sub Button1_Click(ByVal sender As...
  6. T

    creating an employee class

    I am attempting to make an employee class and falling short somewhere. This shouls include three things... first name as sting, last name as string, and monthly salary as integer. its to have a constructor that initializes the three variables. the property for the monthly salary hould ensure...
Back
Top