Why thanks jethro. I'm just glad you guys like it.
Printable View
Why thanks jethro. I'm just glad you guys like it.
It's awesome! I love the ability to change the background color...just gives it more depth and it's not as plain anymore! Great job!!!
i think thats really cool :) kudos 4 u
Its great.... One small suggestion: there is no word wrap (and could use it) Other than that, its just like m$'s and more! Good job
Very nice job, July! It sure does beat the old notepad. ;)
i prefer vi myself
*sniff sniff*
I like it. It is a nice improvement on MS Notepad. The only thing I would say is that I could not resize it on my screen. I can make the windows bigger, but it does not enlarge the text area.
Shouldn't be too hard to fix. Just add something like this:Quote:
Originally posted here by a)sna
Its great.... One small suggestion: there is no word wrap (and could use it) Other than that, its just like m$'s and more! Good job
Code:Private Sub Form_Resize()
txtText.Width = frmForm.Width
txtText.Height = frmForm.Height
End Sub
Yeah you need to do this
Private Sub Form_Resize()
Text1.Width = Me.Width - 100
Text1.Height = Me.Height - 750
End Sub
it should work. I've been working with it alittle but not to much. Anyone is welcome to pick up were I left off.