Search results for query: *

  • Users: Annorax
  • Content: Threads
  • Order by date
  1. Annorax

    Opening a text file by double clicking

    Hi everyone, I am writing a simple text editor. I would like the ability to be able to right click on a text file in my system and "Open With" using my program. Here is what I have so far: If Environment.GetCommandLineArgs() Is Nothing Then 'Make new file normally Else 'Open each file in...
  2. Annorax

    Using sub in other forms

    Hi everyone, I have more of a general newbie question: what is good coding practice for commonly used code? I am experienced in Java and there I know it's good to make a class with a bunch of methods to be used in many places instead of writing the method in each place. Is there a similar...
  3. Annorax

    Color manipulation

    Hi everyone, I'm working on a text editor and I want the ability to save the Foreground and Background colors. I've been trying to find a way to save the colors to a file and upon startup, read them and set them. I have getHexColor and hexToColor methods as follows: Private Function...
  4. Annorax

    Making a "Favorites" system

    Hi everyone, I'm making a tabbed Notepad like application and I would like to implement a Favorites system, similar to that in IE and Firefox, but for text files. Using the following website: http://www.vsj.co.uk/dotnet/display.asp?id=173 I've managed to get a dynamic menu system up and...
  5. Annorax

    Newbie TabControl questions

    Hi everyone: I'm trying to make a tabbed Notepad like program using VB.net. With the help of lots of tutorials and code examples, I have basic tab functionality working. However, there are some things I haven't been able to figure out: 1.) How can I make double clicking on a tab close it? Is...
Back
Top