Search results for query: *

  • Users: MinusZero
  • Content: Threads
  • Order by date
  1. M

    Loading data from a text file between two points

    Hi, I am writing a program which will be able to save richtextbox contents and then load them back. I have been able to save and load without problem, until i thought that it wont handle multiple lines. When i use multiple rows and save it, the txt file shows it all on one row, but when i load...
  2. M

    How can I update/refresh a Listbox?

    Hi all, I am creating a program to assist with an upcoming job I have at work. I will be required to rename nearly 200 files with a different filename (but with same extension). I have successfully created a program that can rename a file which I select from a listbox, but after renaming, the...
  3. M

    Question Math.Pow & Math.Sqrt question

    I have been creating a program and making use of the Math.Pow and Math.Sqrt functions. I know how to square something double answer; answer = Math.Pow(8,2); textbox.text = answer.ToString(); answer = 64 and i know how to do square root (the opposite of squaring) double answer; answer =...
  4. M

    Question How do I use the number pad to enter numbers into a textbox?

    I am learning C# and am making a calculator. All is going well so far except its driving me mad trying to make it accept keyboard commands. I have done some testing in another file and can simply add keyboard commands to a textbox or label using the code below in the KeyPress event...
Back
Top Bottom