Results 1 to 5 of 5

Thread: Making a simple scramble letter board.

  1. #1

    Thread Starter
    PowerPoster
    Join Date
    May 2006
    Posts
    2,295

    Making a simple scramble letter board.

    Hi there folks!

    The students really like this letter scramble board I made a few weeks back. The idea is like Boggle. The letters are all scrambled, they go up and click on the letters to make the word. What I would like to do though, is put a textbox on called WordTXT, so for each letter they click on it, it is like an onscreen keyboard, it goes into the textbox.

    I know how to you can put something simple like WordTXt.text = "A", but would I need to append the textbox if the student was trying to spell something like "Apple"?

    The only other issue is whatever gets added on would have to go on the right side of what text was already there, so it gets added after the previous letters.

    Thanks!!

  2. #2
    VB-aholic & Lovin' It LaVolpe's Avatar
    Join Date
    Oct 2007
    Location
    Beside Waldo
    Posts
    19,541

    Re: Making a simple scramble letter board.

    Sounds like simple concatenation? Or am I missing something?

    WordTxt.Text = WordTxt.Text & "someLetter"
    Insomnia is just a byproduct of, "It can't be done"

    Classics Enthusiast? Here's my 1969 Mustang Mach I Fastback. Her sister '67 Coupe has been adopted

    Newbie? Novice? Bored? Spend a few minutes browsing the FAQ section of the forum.
    Read the HitchHiker's Guide to Getting Help on the Forums.
    Here is the list of TAGs you can use to format your posts
    Here are VB6 Help Files online


    {Alpha Image Control} {Memory Leak FAQ} {Unicode Open/Save Dialog} {Resource Image Viewer/Extractor}
    {VB and DPI Tutorial} {Manifest Creator} {UserControl Button Template} {stdPicture Render Usage}

  3. #3

    Thread Starter
    PowerPoster
    Join Date
    May 2006
    Posts
    2,295

    Re: Making a simple scramble letter board.

    Awesome, thank you!

    Let's say I wanted to backspace a letter, is there a way to press a button a mimic that too?

  4. #4
    VB-aholic & Lovin' It LaVolpe's Avatar
    Join Date
    Oct 2007
    Location
    Beside Waldo
    Posts
    19,541

    Re: Making a simple scramble letter board.

    Using the on-screen keyboard analogy, when the backspace button is clicked:

    WordTxt.Text = Left(WordText.Text, Len(WordText.Text) - 1)

    Justin, this is really basic stuff
    Insomnia is just a byproduct of, "It can't be done"

    Classics Enthusiast? Here's my 1969 Mustang Mach I Fastback. Her sister '67 Coupe has been adopted

    Newbie? Novice? Bored? Spend a few minutes browsing the FAQ section of the forum.
    Read the HitchHiker's Guide to Getting Help on the Forums.
    Here is the list of TAGs you can use to format your posts
    Here are VB6 Help Files online


    {Alpha Image Control} {Memory Leak FAQ} {Unicode Open/Save Dialog} {Resource Image Viewer/Extractor}
    {VB and DPI Tutorial} {Manifest Creator} {UserControl Button Template} {stdPicture Render Usage}

  5. #5
    PowerPoster
    Join Date
    Feb 2012
    Location
    West Virginia
    Posts
    14,205

    Re: Making a simple scramble letter board.

    Yeah very basic stuff, kinda hard to believe that someone who has been a member for over 8 years and has over 2000 posts does not already know these things, seems you would have had need to do what you are asking in the OP several hundred if not thousands of times already.

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  



Click Here to Expand Forum to Full Width