Sorry your browser is not supported!

You are using an outdated browser that does not support modern web technologies, in order to use this site please update to a new browser.

Browsers supported include Chrome, FireFox, Safari, Opera, Internet Explorer 10+ or Microsoft Edge.

Programming Talk / C# - Text Editor

Author
Message
JoelJ
20
Years of Service
User Offline
Joined: 8th Sep 2003
Location: UTAH
Posted: 5th Nov 2005 23:55 Edited at: 15th Nov 2005 00:31
[edit] MAJOR CHANGE DOWN BELOW!

THIS REQUIRES .NET 2.0
I made this using Visual Studio 2005 beta2


I don't know why I started this, I was bored so I just did
Started yester, I think I got the SAVE/SAVE AS, OPEN and NEW, functions all working for me now. You can use the new/sv/open in the toolbar or file menu, and the save as in the file menu, and the exit as well

there is no "Are you sure you want to quit before saving?" thingy yet, will get around to that later.
just want to make sure it saves from the correct tabs to the correct file, play around with it, try to make it crash, try to make it save to the wrong place, etc.

and the Filters and stuff in the open and save dialogs aren't complete yet, so to save as a TXT file, add the extension

[edit] hehe, and I found a bug, when you OPEN a new file, it renames the tab you are selecting already AND makes a new one...will fix that

and here's a screenie of what you're getting


Attachments

Login to view attachments
Evil stick
19
Years of Service
User Offline
Joined: 27th Mar 2005
Location:
Posted: 6th Nov 2005 04:29
Looks like something I was trying to create, does the rar have the source? If not, could you post it?

Your mod has been erased by a signature.
PowerSoft
19
Years of Service
User Offline
Joined: 10th Oct 2004
Location: United Kingdom
Posted: 6th Nov 2005 10:50
Looking good. Nice and simplistic and not cluttered. (any chance I could borrow your 'Open' toolbar image?)

If your looking for an IDE for DarkBASIC Pro (as this looks like C#) check out this thread... http://forum.thegamecreators.com/?m=forum_view&t=58457&b=8


Looking good, keep it up.

Regards,
Rich

JoelJ
20
Years of Service
User Offline
Joined: 8th Sep 2003
Location: UTAH
Posted: 8th Nov 2005 04:42
I'm rewriting the RichTextBox, that one didn't work as planned

all I need to do is be able to find the character index of the first char on a given line, THEN it should work perfectly, so if anyone can help with that And it will look better and be easier to customize, AND I made it myself, that one I downloaded and it didn't work as expected so I tried rewriting it, and blah. So I started from scratch and it's working well just need to be able to get that blasted character index
Actually, what I REALLY need, is a way to position the caret at any line number I give it then I can get the char index and what not from that , so, if you can help me with that, that would be AWESOME

and those button images are from Visual Studio 2005 Express Beta 2
so if you just download the new Visual Studio 2005 Express for free (look in general discussion) and get it there . Then in VS2005 just drag 'n drop a ToolStrip on the form and right click it and click "add standard items" or something like that, and POP, there they are...just like what i have there


My plan for this is just to make a lightweight texteditor with BASIC syntax highlighting (If wanted), highlighting any symbols, operators, and numbers. Give a basic spellcheck (maybe, I downloaded a .net library that is suposed to make that easy, haven't tried it yet, but I will when I get my RTB with line numbers working), and tabbing. Then give a few hot keys to custom (user specified) commands from the command prompt (so they can compile or view the webpage or whatever)

Scilynt
21
Years of Service
User Offline
Joined: 13th Nov 2002
Location: .-#-.
Posted: 8th Nov 2005 06:39
Sounds like you want the GetFirstCharIndexFromLine(int lineNumber) method.
VR2
19
Years of Service
User Offline
Joined: 14th Mar 2005
Location:
Posted: 8th Nov 2005 13:09
That looks really cool, love the XP meus etc

A couple of things I found tho, opening up a new text doc while having a current tab creates a new tab AND renames the old (bug?)

The text line numbering seemed to work but only did 18 lines at a time (optimisation?)

Virtually none of the menu options worked except for Open, Exit & New. disappointingly not even Cut/Paste worked although they all LOOKED great (you used an application template of some kind?).
JoelJ
20
Years of Service
User Offline
Joined: 8th Sep 2003
Location: UTAH
Posted: 8th Nov 2005 23:30 Edited at: 8th Nov 2005 23:34
Quote: "A couple of things I found tho, opening up a new text doc while having a current tab creates a new tab AND renames the old (bug?)"

yup found that RIGHT after I posted this, and added it to it right before the screen shot

Quote: "The text line numbering seemed to work but only did 18 lines at a time (optimisation?)"

yup, but, I scrapped that Textbox, as I didn't make it, and it wasn't working like it should so I'm making another, it should be working today

Quote: "Virtually none of the menu options worked except for Open, Exit & New. disappointingly not even Cut/Paste worked although they all LOOKED great (you used an application template of some kind?)."


haha, yeah, they don't work, I'm just trying to get the very basics done, and so new/save/open and getting the actual textbox working is more important than the others.

But since I started this thread, I've started development over, making the code more clean and readable, as I will be making this OS in the end and I'm trying to make things to look just like you want (move toolbars anywere, even on the sides if you want, and a bunch of little things )

Quote: "(you used an application template of some kind?)."

Visual Studio 2005 will now add the most used setup for the toolbars and main menus it's NICE, no need to search for button images and stuff now

Quote: "Sounds like you want the GetFirstCharIndexFromLine(int lineNumber) method."

I'm so glad that you wrote that and I read it twice at first i thought you wrote something different, and didn't think it was what I wanted, but YAY!
thank you so much, makes things so clean!

JoelJ
20
Years of Service
User Offline
Joined: 8th Sep 2003
Location: UTAH
Posted: 9th Nov 2005 00:19 Edited at: 9th Nov 2005 00:20
2x post, I konw, but it's something new, so it deserves it...

Line numbering FINALLY works.
it's aligned PERFECTLY all the way down to...whatever

I'm going to add some more customization for it before I release anything. (like change colors and stuff )

[watch this space]



100% made by me!

with lots of help and information from ZKAT8IT and help from random sources

Evil stick
19
Years of Service
User Offline
Joined: 27th Mar 2005
Location:
Posted: 9th Nov 2005 01:37
Can you post the code? Or send it to me? Cause I got something to add...

Your mod has been erased by a signature.
JoelJ
20
Years of Service
User Offline
Joined: 8th Sep 2003
Location: UTAH
Posted: 9th Nov 2005 02:22
Quote: "I'm going to add some more customization for it before I release anything. (like change colors and stuff )"


what do you want to add?

Undercover Steve
18
Years of Service
User Offline
Joined: 6th Jun 2005
Location: Vancouver, Little Canada(Washington)
Posted: 9th Nov 2005 05:21
Very cool! I just wanted to know: (I am a noob to C# and VB.net) How do you create a tab? I know it has to do with when you click "New" or "open" it reads information..but I dont know *how* to create a new tab.

free hosting is never free.
http://projectlance.net/beta/
hosting. Cheap. Your never to young (unless under 16 in the US) to get Hosting!
JoelJ
20
Years of Service
User Offline
Joined: 8th Sep 2003
Location: UTAH
Posted: 9th Nov 2005 06:45
I was going to write and tell you...but I found this first, saved me time

Undercover Steve
18
Years of Service
User Offline
Joined: 6th Jun 2005
Location: Vancouver, Little Canada(Washington)
Posted: 9th Nov 2005 07:02
thanks

free hosting is never free.
http://projectlance.net/beta/
hosting. Cheap. Your never to young (unless under 16 in the US) to get Hosting!
Undercover Steve
18
Years of Service
User Offline
Joined: 6th Jun 2005
Location: Vancouver, Little Canada(Washington)
Posted: 9th Nov 2005 07:03 Edited at: 9th Nov 2005 07:04
oh wow...I am a dip arent I:S It was that easy...

I diffenetly like your Editor. Stylish

free hosting is never free.
http://projectlance.net/beta/
hosting. Cheap. Your never to young (unless under 16 in the US) to get Hosting!
Evil stick
19
Years of Service
User Offline
Joined: 27th Mar 2005
Location:
Posted: 9th Nov 2005 12:53
I'm gonna try to put a C# compiler in. I think I can do that...

Your mod has been erased by a signature.
Undercover Steve
18
Years of Service
User Offline
Joined: 6th Jun 2005
Location: Vancouver, Little Canada(Washington)
Posted: 9th Nov 2005 16:47
It seems that code wont add more than 1 tab

free hosting is never free.
http://projectlance.net/beta/
hosting. Cheap. Your never to young (unless under 16 in the US) to get Hosting!
empty
21
Years of Service
User Offline
Joined: 26th Aug 2002
Location: 3 boats down from the candy
Posted: 9th Nov 2005 18:08


Not that I know C# very much, but that would make sense.


Play Nice! Play Basic! Version 1.089
AndLabs
19
Years of Service
User Offline
Joined: 7th Dec 2004
Location:
Posted: 9th Nov 2005 21:10
WHY .NET FRAMEWORK 2.0? That only amounts to WINDOWS XP SP2 USERS! I am a Windows XP SP1 and I don't plan to upgrade until BACKUP is easy again.

For the Software You Want, AMPERSAND LABORATORIES is the place!

JoelJ
20
Years of Service
User Offline
Joined: 8th Sep 2003
Location: UTAH
Posted: 9th Nov 2005 21:51
Quote: "WHY .NET FRAMEWORK 2.0? "

I'm sorry, I'm using C#.net 2005, i'm sure it'll be easy as pie for me to get a 1.1 version of the control working, when I'm done, I'll try it out

Evil stick
19
Years of Service
User Offline
Joined: 27th Mar 2005
Location:
Posted: 10th Nov 2005 00:01 Edited at: 10th Nov 2005 00:01
If you send me the code, I can do 2 things:
*******************
Put in a C#, VB or whatever you want compiler.
Make it 1.1, I OWN 2003!
*******************

Your mod has been erased by a signature.
Jeku
Moderator
20
Years of Service
User Offline
Joined: 4th Jul 2003
Location: Vancouver, British Columbia, Canada
Posted: 10th Nov 2005 00:15
Joel, it won't be easy downgrading. Those nifty RichTextBox commands aren't available in the earlier versions

Evil stick
19
Years of Service
User Offline
Joined: 27th Mar 2005
Location:
Posted: 10th Nov 2005 00:23
Really? Oh dang.

Your mod has been erased by a signature.
Scilynt
21
Years of Service
User Offline
Joined: 13th Nov 2002
Location: .-#-.
Posted: 10th Nov 2005 01:39 Edited at: 10th Nov 2005 01:40
I'm not sure what functions your using, but the GetFirstCharIndexFromLine can be done like so in v1.1. (Also seems to work in v1.0)



The only problem is that you have to specify the RTB you want to use, so a call would be:



If you've made a new class inheriting the RTB, you could just add them as extra functions, getting rid of the ref RTB parameter declaration, and using this.Handle instead of RTB.Handle.
JoelJ
20
Years of Service
User Offline
Joined: 8th Sep 2003
Location: UTAH
Posted: 10th Nov 2005 02:07
Quote: "Make it 1.1, I OWN 2003! "

yeah, so do I


Quote: "If you send me the code"

3rd time is the charm:
Quote: "I'm going to add some more customization for it before I release anything. (like change colors and stuff )"


Evil stick
19
Years of Service
User Offline
Joined: 27th Mar 2005
Location:
Posted: 10th Nov 2005 02:44
Ya, well I don't need it anymore now that you told me.

Your mod has been erased by a signature.
Phaelax
DBPro Master
20
Years of Service
User Offline
Joined: 16th Apr 2003
Location: Metropia
Posted: 10th Nov 2005 03:01 Edited at: 10th Nov 2005 03:02
Quote: "WHY .NET FRAMEWORK 2.0? That only amounts to WINDOWS XP SP2 USERS"


I'm on win2k and i have 2.0


So you gonna add syntax highlighting?


Deadly Night Assassins
AndLabs
19
Years of Service
User Offline
Joined: 7th Dec 2004
Location:
Posted: 10th Nov 2005 20:56
IC#Code makes the free SharpDevelop toolkit which is good for .net 1.1.

For the Software You Want, AMPERSAND LABORATORIES is the place!

JoelJ
20
Years of Service
User Offline
Joined: 8th Sep 2003
Location: UTAH
Posted: 11th Nov 2005 01:09
Quote: "So you gonna add syntax highlighting?"

yup

that's my next big thing i'm going to tackle...

it's going to be very basic, but I might allow the user to add their own keywords

Undercover Steve
18
Years of Service
User Offline
Joined: 6th Jun 2005
Location: Vancouver, Little Canada(Washington)
Posted: 11th Nov 2005 19:51
Hmmm...I am stuck on adding things to tabs. Each time I create a tab, I have to make a new richtextbox, but it wont reference! Messed up:X.

TEH NEW MEZZZz11111111
Under-cover Noob. Protecting the old. Doing Crap!
We kill n00bs for cheap.
John Y
Synergy Editor Developer
21
Years of Service
User Offline
Joined: 4th Sep 2002
Location: UK
Posted: 11th Nov 2005 20:28
Quote: " Hmmm...I am stuck on adding things to tabs. Each time I create a tab, I have to make a new richtextbox, but it wont reference! Messed up:X."


A quick and dirty way (much better ways)

1). Make a class called References
2). In this class type
public static ArrayList tabs = new ArrayList();
public static ArrayList boxes = new ArrayList();
3). In your tab making method do
Tab newTab = new Tab(); // New Tab
rtBox newbox = new rtBox(); // New Rich Text Box
newTab.Controls.Add(newBox); // Add the code box to the tab
this.Tabs.Add(newTab); // Add this new tab to your tab container
References.tabs.Add(newTab);
References.boxes.Add(newBox);

Then you have unlimited tabs and code boxes, and references to them.

Undercover Steve
18
Years of Service
User Offline
Joined: 6th Jun 2005
Location: Vancouver, Little Canada(Washington)
Posted: 11th Nov 2005 20:33
wow, That does look messy to even me! I will use this, until I get into more advanced C#.

TEH NEW MEZZZz11111111
Under-cover Noob. Protecting the old. Doing Crap!
We kill n00bs for cheap.
JoelJ
20
Years of Service
User Offline
Joined: 8th Sep 2003
Location: UTAH
Posted: 11th Nov 2005 20:41 Edited at: 11th Nov 2005 20:53
heh, I made my own class:

public class TextBoxTab : TabPage
{
}

and made it so it automatically adds my NumberedRichTextBox to it, positions everything and sets the fonts and everything to how I like. So when I click "New" all it does is makes a new TabPage:

TextBoxTab newTab = new TextBoxTab();
myTabControl.Controls.Add(newTab);

and since TextBoxTab is a TabPage, it will take it
ahhh, the power of inheritance
but when you want to access the selected tab's textbox, you have to type cast it:

string blah = ((TextBoxTab)myTabControl.Selected).TextBox.Text;

anyway, I'm getting close to a release, I still don't know what I'm doing with the NumberedTextBox, I might not release it until I get syntax highlighting in there too

And I think it's time for a screenshot


tell me what you think

Attachments

Login to view attachments
Undercover Steve
18
Years of Service
User Offline
Joined: 6th Jun 2005
Location: Vancouver, Little Canada(Washington)
Posted: 11th Nov 2005 20:54
looks cool! Thanks for the help as well

TEH NEW MEZZZz11111111
Under-cover Noob. Protecting the old. Doing Crap!
We kill n00bs for cheap.
JoelJ
20
Years of Service
User Offline
Joined: 8th Sep 2003
Location: UTAH
Posted: 15th Nov 2005 00:10 Edited at: 15th Nov 2005 00:36
and... UPDATE with release version 0.5
as I'm still missing some functionality I am planning, i'm naming it .5 :p

Here's what I want for version 1:
- Done
- In, but not finished to exactly how I want
- Incomplete

Numbered Lines
"Open With..." Functionality
Edit Color options
Disable Line numbers
Save/Open
AutoText
Custom Batch files
Batch File execution
Tabbing
Change Line Number Font Color , stupid 'BRUSH' object
Tabs or spaces
Syntax Highlighting
Spell check
Printing
Basic Help File/readme
Auto Format
My very own Logo/Icon
My very own name (temp, MiniIDE, may keep)
My very own webpage (free )

Anyway, the CustomCommand menu, you can choose up to 4 different custom batch files, so you can use this to compile with ANY commandline based compiler, or even open your webpage source into a web browser! I want to make it so you can add $File to your batch files, so it will execute that batch file using the currently selected tab.
In the AutoText menu, you can hotkey frequently used bits of code or whatnot, (like <b></b> or whatnot) should be nifteh.

only 24k compressed (.rar)
and only 100k uncompressed!

Please post questions/comments/suggestions/bugs here or email me with the address in the ABOUT dialog
REQUIRES .NET 2.0, whine about that if you want, it's not going to change
Download here
Sorry no source code for the RTB yet, I want to add syntax highlight first

SCREENIES:


All coding done by yours truly, tons of help from ZKAT8IT, thanks much and a bit of random help and hints from the intarnet, but the code is 100% orriginal and mine

Attachments

Login to view attachments
Undercover Steve
18
Years of Service
User Offline
Joined: 6th Jun 2005
Location: Vancouver, Little Canada(Washington)
Posted: 15th Nov 2005 02:38
Good work! I like the design overall! I wish I could host you, sorry


Proudly a Member of the ANJL.
Infinity
18
Years of Service
User Offline
Joined: 2nd Jun 2005
Location:
Posted: 15th Nov 2005 10:08
Maybe I haven't posted in this thread, but I've been following what you're doing and I must say I like it.
(I'd help you, I really would, but I don't know a thing about C#)

Great job!
Keep on!

Infinity
JoelJ
20
Years of Service
User Offline
Joined: 8th Sep 2003
Location: UTAH
Posted: 15th Nov 2005 21:26 Edited at: 16th Nov 2005 05:06
Thanks guys
Quote: "(I'd help you, I really would, but I don't know a thing about C#)"

thanks, but that's okay, I don't need any help right now anyway



edit:
minor bug with the 'CustomCommands', they don't work
that will be fixed first thing

I think what I'm going to do is just add everything to make it fully working besides syntax highlighting and spell check, call it version 1, release it with the NumberedRichTextBox source.

add spell check, syntax highlighting and all the other cute things i'm planning for my RTB, release that as 2.0 and I might not give the source for that :/ I don't know yet...

[watch this space]

[center][center]
PowerSoft
19
Years of Service
User Offline
Joined: 10th Oct 2004
Location: United Kingdom
Posted: 16th Nov 2005 18:56
Anychance of access to the code control once its finished? Will you include Intellisense, Breakpoints etc on the Sourcecontrol control?

You use MSN? If so add me... I have somethings to discuss

JoelJ
20
Years of Service
User Offline
Joined: 8th Sep 2003
Location: UTAH
Posted: 16th Nov 2005 21:17 Edited at: 16th Nov 2005 22:38
[finished this]I was thinking that I will have it check to see how many tabs are at the start of the line previous to the current line, and add that many tabs automatically when you hit that new line.[/finished, it's basically awesome]

Intellisense is probably a no go.
but I think i'm going to have a closing bracket highlight the opening and vise versa when you are touching it, same with quotes and such.

[center][center]
JoelJ
20
Years of Service
User Offline
Joined: 8th Sep 2003
Location: UTAH
Posted: 17th Nov 2005 01:45 Edited at: 17th Nov 2005 02:38
DOUBLE POST, i know, but, i figure I could either clutter my other posts, or just give you a nice clean post, so please excuse this

Alrighty, so, just one more major thing (close idividual tabs) is left before my major release.

I just finished the BATCH files stuff... works very nicely
you can now use (case sensitive) $FILE (the whole filepath: "x:blahfile.cpp") and $BASENAME (chops off the extension: x:blahfile)
so included with the release customcommands 1 and 2, is a little script to compile a CPP file (1) and execute it (2), to give you an idea on how you would use these commands. and number 3 and 4 will show you how you would open it in IE and FIREFOX (for html files )

I'll attach the EXE soon, just going to brush up on a few things

[edit]
ewww yuck, nasty bug with the AUTOTEXT
i shall fix...

[edit]
ok, so I lied, no perfect release today , just found another nasty bug RIGHT AFTER I fixed AUTOTEXT , anyway, so,
you get 0.5.1 because I didn't get it to the same working point I wanted for .2

one mean bug with that, we'll see if you guys can find it

[center][center]

Attachments

Login to view attachments
Evil stick
19
Years of Service
User Offline
Joined: 27th Mar 2005
Location:
Posted: 17th Nov 2005 02:10
COOL!! I love it! And if your looking for a host, I think I can do it. I can also make that little guy into an icon for ya.


FORUM n00b THREAT LEVEL: ORANGE
Some thread revival/spam-Some bad grammar used, stupid questions or answers-No direct flaming
JoelJ
20
Years of Service
User Offline
Joined: 8th Sep 2003
Location: UTAH
Posted: 17th Nov 2005 02:48 Edited at: 17th Nov 2005 02:56
BWAHAHAHAHA, FIXED it

see if you can break it


checklist for version 1:
Numbered Lines
"Open With..." Functionality
Edit Color options
Disable Line numbers
Save/Open
AutoText
Custom Batch files
SIMPLE Auto Format (keeps tabs from previous lines )
Batch File execution
Tabbing (just need to add a close button for each tab)
My very own Logo/Icon, just need Icon
Change Line Number Font Color , stupid 'BRUSH' object
Basic Help File/readme
My very own name (temp, MiniIDE) Someone has MiniIDE already, I loved MiniIDE
My very own webpage (free )

screen shots in previous posts

and suggestions are most welcome
and obviously post any bugs

[center][center]

Attachments

Login to view attachments
Scilynt
21
Years of Service
User Offline
Joined: 13th Nov 2002
Location: .-#-.
Posted: 17th Nov 2005 06:10 Edited at: 17th Nov 2005 06:14
One problem, the gutter colour on the default tab is the wrong colour.

My first thought was why you are limiting the custom commands, you can dynamically add/remove items from the menu, and it'd be better (IMO) to have the define dialog display a listbox, with Add/Edit/Remove buttons. On Add/Edit you can popup another dialog allowing you to specify the contents aswell as a custom name. Internally you'd have to store the associated bat file, even better would be to create the bat upon running the commmand. This way you're not taking up any space, and you don't need to keep track of different filenames.

Also, here's your head set as the icon, doesn't look too bad.

Attachments

Login to view attachments
Phaelax
DBPro Master
20
Years of Service
User Offline
Joined: 16th Apr 2003
Location: Metropia
Posted: 17th Nov 2005 14:16 Edited at: 17th Nov 2005 18:50
I got board. eh, it rendered crappier than i expected. but sounds like you have a name anyway now.


Deadly Night Assassins

Attachments

Login to view attachments
JoelJ
20
Years of Service
User Offline
Joined: 8th Sep 2003
Location: UTAH
Posted: 17th Nov 2005 18:16 Edited at: 17th Nov 2005 18:22
Quote: "One problem, the gutter colour on the default tab is the wrong colour."

heh, that's interesting, I'll have to fix that

Quote: "why you are limiting the custom commands"

because I was lazy and wanted to do things the easy way I was planning to do something a bit different in future versions but for now, this will do
and the reason i'm saving to a bat file is so that it will still be there when you reopen the IDE later and not have to remake everything

[center][center]
Scilynt
21
Years of Service
User Offline
Joined: 13th Nov 2002
Location: .-#-.
Posted: 17th Nov 2005 19:20
What I'm suggesting is rather than storing the bat permenantly that you store the commands in a file (XML?) and then create the bat at runtime. There's no need to keep individual files.
Jimmy
20
Years of Service
User Offline
Joined: 20th Aug 2003
Location: Back in the USA
Posted: 17th Nov 2005 23:47
That program looks like the gayest piece of gay crap ever.

You're gay.

Seppuku Arts
Moderator
19
Years of Service
User Offline
Joined: 18th Aug 2004
Location: Cambridgeshire, England
Posted: 17th Nov 2005 23:51
Well, looks like we have a homophobic, corr, discriminating someones work because they are gay is abuse, can see my cursor over the report button.....nah kidding, we know you are being picky because of Joel's sig

@Joel, looks kinda interesting, something I wouldn't use but, noneothertheless good, and I guess its good practice too

Your signature has been erased by a mod because it's larger than 600x120...
JoelJ
20
Years of Service
User Offline
Joined: 8th Sep 2003
Location: UTAH
Posted: 17th Nov 2005 23:55 Edited at: 18th Nov 2005 00:23
There, I changed it. Happy now?

Quote: "@Joel, looks kinda interesting, something I wouldn't use but, noneothertheless good, and I guess its good practice too "

it's for all them notepad users
I won't use it either, unless I have something (like html, or php) that I would do in NOTEPAD. I won't be programming in C# with it
but, it is good for practice, as I orriginally started it to have something to show with my NumberedRichTextBox, and it's evolved

I'm starting to quite like it



Anyway, fixed a bug with the Batch files (it permanatly changed the commands from $FILE or $BASENAME to it's actual file name no good)
and I fixed a visual bug with the text box's scroll bar, it would hang off the side, weird
and I added a button to close the current tab

[center][center]
Evil stick
19
Years of Service
User Offline
Joined: 27th Mar 2005
Location:
Posted: 18th Nov 2005 00:31
Quote: " That program looks like the gayest piece of gay crap ever."


Ok then, make one.


FORUM n00b THREAT LEVEL: ORANGE
Some thread revival/spam-Some bad grammar used, stupid questions or answers-No direct flaming

Login to post a reply

Server time is: 2024-04-16 13:17:14
Your offset time is: 2024-04-16 13:17:14