Search results for query: *

  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

    ...'to save file Dim res As DialogResult Dim fname As String SaveFileDialog1.Filter = "Rich Text Format|*.rtf|Text File|*.txt" SaveFileDialog1.InitialDirectory = "C:\" res = SaveFileDialog1.ShowDialog() If res = Windows.Forms.DialogResult.OK Then...
  3. T

    needing some help creading a MDI text editor

    I am not seeing that option at all for MdiWindowListItem. That would be why I am having such an issue.
  4. T

    needing some help creading a MDI text editor

    ok im using that as a guilde however this is the 2003 version and im using the 2010 version.. when it says to set the Mdilist property to true, how would i do that in vb 2010. there isnt an option for that....
  5. T

    needing some help creading a MDI text editor

    I dont know how to make a form apprear as an MDI child of another. I'm not sure how to code this so that the new page option works. I really have no idea what im doing to be honest.
  6. 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?
  7. T

    duplicate word removal

    this is the code that i am working with: Public Class '(Duplicate Word Removal) Write an application that inputs a sentence from the user (assume no punctuation), 'then determines and displays the non-duplicate words in alphabetical order. Treat upppercase and lowercase letters...
  8. T

    duplicate word removal

    22-degrees Yes i was clicking the button, I figured out what it was that I was doing wrong. I had two buttons and two textboxes and only had the results outputting to to textbox1 instead of textbox2. quick question, do you know how to make things display alphabetically? if not thank you for...
  9. T

    duplicate word removal

    ok ty 22-degrees. well since i have the input part of it, how would you suggest that i try to make it actually output. i mean its being told to calculate the output with what you've shown me, but its not actually giving me any output.
  10. T

    duplicate word removal

    ok now thats handled i need to actually make it do that/output right? would i need to use something along these lines or no? Function RemoveDuplicateWords(ByVal InputString As String) As String RemoveDuplicateWords = "" Try If InputString = Nothing Then RemoveDuplicateWords = "" Exit...
  11. T

    Shape Hierarchy

    Thank you Ian.
  12. T

    duplicate word removal

    ok which part do i need to move, the whole thing sans where ive written the code for the clear button (button2.click)
  13. T

    duplicate word removal

    Yes I i did try running the code. I was only able to enter one letter into the text box before it startes spazzing out on me. however it wasnt throwing any errors out after running. thats why i thought id ask. where should i put it then. im still trying to grasp this and im not doing very well.
  14. 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...
  15. T

    triangles of asterisks

    Rehashing this problem, I am not able to figure out a way to input values for the sizes of the triangles, any ideas? Maybe I am just missing something simple.
  16. T

    Shape Hierarchy

    correction, i only have 4 errors now that read: Error 2 'SaveShapes' is not declared. It may be inaccessible due to its protection level. C:\Users\Tera\Documents\Visual Studio 2010\Projects\cisp370Asgn10-w1391778\cisp370Asgn10-w1391778\ShapeHierarchy.vb 78 21 cisp370Asgn10-w1391778 Error 3...
  17. T

    Shape Hierarchy

    ...'of the three-dimensional shape. Use the following formulas for the area and volume of the various shapes: 'a) area of a square : side * side 'b) area of a circle: Math.PI * Radius, where radius is the radius of a circle 'c) area of a sphere: 4 * Math.PIb* Radius * Radius, where...
  18. T

    Shape Hierarchy

    this is the list of errors that i am getting from my code line 95 column : end function must be preceded by a mating function' line 135 column 5 : "" line 169 colimn 5: "" line 283 column 5: "" line 119 column 1: end module must be preceded by a matching module line 156 column 1: "" line 232...
  19. T

    Shape Hierarchy

    ...'of the three-dimensional shape. Use the following formulas for the area and volume of the various shapes: 'a) area of a square : side * side 'b) area of a circle: Math.PI * Radius, where radius is the radius of a circle 'c) area of a sphere: 4 * Math.PIb* Radius * Radius, where...
  20. T

    triangles of asterisks

    Ian, I cought that error, my applogies. now i am getting these errors: Error 1 'txtTriangleSize' is not declared. It may be inaccessible due to its protection level. (line 35, column 29) and Error 2 Type of 'n' is ambiguous because the loop bounds and the step clause do not convert to the...
Back
Top