Search results for query: *

  1. C

    Rich Text Box for SQL data

    I have a quick question about WinForms text boxes interacting with SQL Data. Is it possible to have rich text inside a text box that displays data from a database? I am talking about the ability to highlight text, change the font to bold, etc. Thank you!
  2. C

    Question How to extract fraction from single Text Box

    Absolutely! Thank you. In this case it is not a user input but rather something calculated already. User only inputs a decimal Value. "Now that statement could be confusing" LOL This app calculates nearest fraction in 64ths, 32nds, 16ths, 8ths,4ths and 2nds and displays the result in a text...
  3. C

    Question How to extract fraction from single Text Box

    Almost made me mad for you to post a reply like that. Old Dog and new tricks related LOL. But I stand corrected! I actually way over thought that code and since you really made me mad(LOL) I found the solution to be way more easy. In case someone looks at this. Here you go. Dim str =...
  4. C

    Question How to extract fraction from single Text Box

    Thanks for the reply but would you be so kind to elaborate further?
  5. C

    Question How to extract fraction from single Text Box

    How would I extract a fraction "3/8" from a single text box so I can convert them back to a decimal?? Thank you so much for any help.
  6. C

    Available Small C# SQLite Project that needs to modified and fixed

    Hi, I have a small SQLite Database that is buggy and needs to be fixed and some functions added. It would also be great if someone could translate this project into VB.net. This is NOT a Corporation or Established Business I am an individual person that is willing to pay a fair amount for a...
  7. C

    Question What is wrong here?

    Having reviwed it with a frech set of eyes "so to speak" I'm almost embarrest but anyway just in case someone else needs this. 'Start Selection in front of last 2 numbers tbNumbers.SelectionStart = tbNumbers.TextLength - 8 'If desired, Scroll to caret...
  8. C

    Question What is wrong here?

    Ok I found a partial solution tbNumbers.ScrollToCaret() tbNumbers.SelectionStart = tbNumbers.TextLength = -1 tbNumbers.SelectionLength = 2 tbNumbers.SelectionColor = Color.Red But I soon realized that the ScrollToCaret in a RichTextBox goes to...
  9. C

    Question What is wrong here?

    OK! Let me try to explain There may be a better solution to what I'm trying to accomplish if so, I'm very open for suggestions. As you know the App. that I'm working on generates numbers into a Text Box they are supposed to be lottery Numbers. I'm not interested in Changing the BackColor of the...
  10. C

    Question What is wrong here?

    I do have one more Question I'm displaying the Numbers in a Text Box and was wondering if there would be any way to change the Last Numbers Fore color to Blue instead of Black. Thanks!
  11. C

    Question What is wrong here?

    Thank you so much!! Sometimes it's the little things that make a big differance In case someone else is looking for this here is the Modification I made for my App. Private Sub ShowRandomNumbersInARange() Randomize() Dim Min = Min1.Value Dim Max = Max1.Value...
  12. C

    Question What is wrong here?

    Thanks for the reply! Biggest problem here is that I'm overstepping my boundaries. I have tried a number of different approaches but with no success. Maybe I'll try again some other time.
  13. C

    Question What is wrong here?

    Hi all, I'm trying to create a Lotto Number Generator. My Form has a 3 numeric up down's 2 for the Range "Min & Max" 1 for the Nuber of Numbers that are supposed to be displayed in my TextBox "Mumber" 1 TextBox"tbNumbers" 2 Buttons The first just generates a single Number in the Range. Dim...
  14. C

    Any one see whats wrong with this save setting???

    I respectfully have to agree with John! Unless, as you stated I'm being notified of such behavior.
  15. C

    Regarding CAPS LOCK

    I agree! If My.Computer.Keyboard.CapsLock = True Then Label1.Text = "Caps Lock is On" Else Label1.Text = "Caps Lock is off" End If Return CheckCaps
  16. C

    automation with WebBrowser Control?

    Hi, I did a search when I came across this older post and was wondering if anyone could help get this resolved. I did not find a lot on this subject when I goggled it. Any help would be appreciated. Thanks!
Back
Top