Make The Words Appear In The Puzzle?
May 4, 2010
can you make the words appear in the puzzle? and then i will figure out how to highlight the correct words or something. [URL]
for example is to have the word forget in listbox2 which is the first word in the puzzle.
Option Strict On
Public Class Form1
Private Sub Form1_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load
[Code]......
View 1 Replies
ADVERTISEMENT
Apr 16, 2010
Or richtextbox? lets say i have 10 words. how do i place it in textbox or richbox? with different direction and location?
View 3 Replies
May 2, 2010
I want to insert an array of strings using Arial Unicode for an Arabic Dictionary. I already had one with Xp but as soon as I changed my operating system to Vista, the string switched the 1 and last place of the Arabic Letters around. And they are no longer correct spellings?
View 3 Replies
Feb 16, 2011
I puzzle with (setting uptime-real time clock) calculation.ex. if I want my stopwatch countdown fromtart: 18.20.30 - stop: 18.50.50 = difference time is 00.30.20 that is easy butstart: 18.20.30- stop: 18.50.40 = difference time is 00.30.40
View 10 Replies
Feb 6, 2012
I want to change certain words in line as bold and remaining words as normal case. And I want to display this kind of text in dialog box. I want to achieve it in vb 2008.
View 3 Replies
May 29, 2012
How to make TextBox2.Text displaythe same text if in TextBox1.Text i have, lets say "Test" on my first button click and "test" on my second. I want to make it do so without having to write the code again:
Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click
If TextBox1.Text = "Test" Then
TextBox2.Text = "Random Random Random"
Else
[code]....
View 4 Replies
Jul 24, 2011
I have created an algorythm for creating a crossword puzzle, but I am not pleased yet.
View 1 Replies
May 5, 2009
Let's say I have an object that contains a Word property and a Sentence property. The sentence must use the word, and I want to replace the word in that sentence with a link using a public function (say, GetLinkedSentence). The catch is maybe the sentence uses a plural form of the word and maybe the "word" itself is actually a phrase, or is even hyphenated. There's no length limit to the word either. How do I find and replace this word (in ASP.NET, preferably VB) with a link [word])?
View 2 Replies
Aug 17, 2010
How are crossword puzzle grids made? I have written a program to generate a puzzle, my problem is the GUI part.I ended up using Visual Basic (VB) because I'm more familiar with that language.However, eventually I have to write this in Java. So far the only way I am displaying the results in a grid-like format is using two controls Groupbox with a Label inside it.This way I can put the number to the word's clue in the title line of the Groupbox, and the individual letter in the Label. To make the cell in the grid editable (my goal for a different version of the puzzle), I guess a Textbox would have to replace the Label.The GUI for real online (professional) crossword puzzle grids is much nicer than this.I know there is a way to combine controls to make a customized one. Even if this works in VB, I'm not certain if it can be done in Java, therefore, I really don't want to go that route (unless someone knows how make customized controls in Java). I have searched the net and looked in books on games, VB and Java with no luck.I need something that I can grow dynamically depending on the grid size needed to hold the content.
View 1 Replies
Aug 15, 2009
I want to make a small program which displays a text, and the words of this text are clickable, I mean when I click on a word I want to display some explanations to it. I want the same structure except that instead of URLs I want to display some text when clicking on a word. So my question is : Is there a control for this kind of use?
View 4 Replies
Jun 5, 2010
I found that code and how could i change it so it will also make correction(including upper case):[code]
View 1 Replies
May 19, 2010
Private Sub RichTextBox1_TextChanged(ByVal sender As Object, ByVal e As System.EventArgs) Handles RichTextBox1.TextChanged
RichTextBox1.SelectionLength = 0
Dim words As New List(Of String)
words.Add("Test")
[code]....
View 1 Replies
Sep 9, 2009
I have to design, write and test a vb program to help the user slove the numbrix puzzle
so far I had this
[code]
View 3 Replies
Feb 21, 2012
I am creating a puzzle game and would like to calculate the width and height of the puzzle taking into account the original image size and the screen resolution. My screen height is 768 and width is 1366. An example image is 1200 x 1600 and the jigsaw size that works well with this image is 480 (height) x 640 (width). I would like to create an algorithm that calculates the jigsaw size for any image bearing in mind that the screen resolution will change as will the size of the image.
View 2 Replies
Aug 11, 2009
I've got 2 RTB one is for input of text and one is output.The output one needs to read the words from the input and display it alphabetically and with their line numbers.I have partly done it and it currently reads it but here is my problem When the words are outputted let say for example there are 2 words the same on the same line e.g the word 'you' appears twice on line one,at the moment its coming up like this
[Code]...
View 18 Replies
Jan 26, 2010
the rules are that same coloured blocks of two or more can be removed by clicking on them. blocks then slide down from above. if a column is empty columns other columns move in from the sides.when someone clicks on the green blocks in the bottom row the columns should slide in from the sides. columns to the left of the black line slide right and on the right of the black line slide left. so in this case only the two rightmost columns should slide from the right to the black line after removing the green blocks.The problem i am having is in designing a suitable algorihm to do the collapsing after the removal. my current approach is to test each column from left to right to see if it is empty. if it is empty then i slide whatever column is to the left (if left of the black line) or to the right (if to the right of the black line) over the blank column and repeat this in the direct i am sliding from
View 1 Replies
Jan 26, 2012
other than GML (Yoyogames.com Game Maker Language), I am new to the coding world. The only "major" project I have completed using VB is a computer calculator that exactly mimics the capabilities of Windows 7's calculator. Yesterday, I began a Chatbot program for my girlfriend. Lol. I have used the instr() function to answer most of the questions or answers which are typed into the textbox1. I find this extremely troublesome because when using the instr() function you cannot say instr(textbox1.
Public Class Form1
Dim fos As String = "Foster: "
Dim ash As String = "Ashley: "
[code].....
View 8 Replies
Apr 6, 2010
I want to do the equivalent of the following VB in c#
Function([class]) "hello"
This would be the same as this in c#
class=>"hello"
The problem is that the word class is a key word in the language. But I want to use it as a variable name. In the VB example you can use the [] brackets to 'escape' that key word and allow it to be used as a variable name.
View 3 Replies
Nov 7, 2009
how to count words. in visual basic. convert the output (words) into a number so I am able to count the words
View 8 Replies
Jan 5, 2009
Im creating a hangman game. I have a list of words and from that list is a ranomdly selected word. What i was thinking of doing was having the program take the amount letters there are in the word and make that many text boxes on the screen probebly .5in x .5in and .2 in apart. I also have an onscreen keyboard. Whenever the user picks a correct letter from the keybaord, it will show in the correct box.
View 2 Replies
May 12, 2009
Currently, i'm using substring() but when i display it in a sms it just cut the words apart like for example on the first sms:
[Code]...
View 19 Replies
May 21, 2009
The codes in the .cs files are all in black. For example the usual blue text keywords appear in black. Could this be to do with the intellisense not working either?
View 1 Replies
Jun 8, 2011
I'm using a program see here: Visual Basic Regular Expression Question. I enter letters and the program returns all possible combinations from list. I want change this line of code...
Dim result = fruits.Where(Function(fruit) Not fruit.Except(letters).Any())
If I have this list:
Dim fruit as List(Of string) from {"apple","orange","pear","banana"}
And I input "p a p l e r" then it would return "apple" and "pear", but if I enter "a p l e r" then it would return just "pear". The idea is to return all words, which can be made of entered letters without duplicating any single letter. How to optimize this Linq code?
View 1 Replies
Jun 29, 2009
I've got a form here with a listbox full of words. I'd like to allow the user to insert new words and have it update the database it's getting the data from. Can I have it display a msgbox, the one that takes input from a user, and use that to update the database?
View 13 Replies
May 24, 2011
I have a string that is the body of an email my web app (VB.NET) sends when a new user account is created. The string is created in my code-behind file. How do I make just a couple of the words in the email message bold?
View 1 Replies
Jan 29, 2010
How can I make bold a part from a text in a RichTextBox in VB 2008?
View 16 Replies
Mar 24, 2009
I am needing aid in breaking words apart, and entering the one by one into a web browser at a random delay between one and five seconds each. I am downling my words into a textbox, and they all have spaces inbetween How can I enter these one by one, and at random times into my built in Webbrowser.
View 1 Replies
May 11, 2011
C# or VB.NET suggestion are welcome.
I have the following code:
Dim someText = "Stack Over Flow Community"
Dim someWord = "Over Community"
[code].....
View 4 Replies
Dec 28, 2009
I've managed to become semi-literate in regex's, I'm stuck on this one though. I need to capture up to 5 words before and after a given word (not necessarily in the same sentence). So, for example, if the target word is AARDVARK in the following text:
AND A TRIP TO THE ZOO. THE AARDVARK WAS THE MOST INTERESTING CREATURE HE HAD EVER ...
I would like to capture {A, TRIP, TO, THE, ZOO} & {WAS, THE, MOST, INTERESTING CREATURE}. Obviously, if I could simply capture the whole string "A TRIP ... INTERESTING CREATURE", I can parse out the words.
View 5 Replies
Apr 7, 2011
I have a text box in which you enter last name first and first name last ex. (wojo casey) and I would like to change it so the output states Casey wojo
View 6 Replies