Page 1 of 6
Notepad+ 2.0 **UPDATED**
Posted: Sat Aug 28, 2010 12:19 pm
by XTechVB
Capture.JPG
Features:
Image suport
working print,print preview images & text
colors for selected text & full text
page indent
bullets function
movable menus
text alignment
page zooming
an much more
view text in default browser
Text Conversion (Selected Text, Full Text) to UPPER or lower case
Line Counter
Font & Size changeable by comboBox
info:
no dll's for the office 2007 theme all the code is build inside
new richtextbox not the windows one
if you find any bugs let me know
i cant put it for free cause i've worked a lot on it if you want it for free go to my website


This file is hosted off-site.
Re: Notepad+ very advanced Notepad
Posted: Sat Aug 28, 2010 12:41 pm
by bisnes_niko
Did that too fast? 'Form1' :P
looks nice

Re: Notepad+ very advanced Notepad
Posted: Sat Aug 28, 2010 12:56 pm
by Lewis
This is very good, How did you do the text coloring? ( For vb ) i couldnt find it
Edit: I pasted my code and BAM! wow, this is amazing

Re: Notepad+ very advanced Notepad
Posted: Sat Aug 28, 2010 1:08 pm
by bisnes_niko
Lewis-Froom wrote:This is very good, How did you do the text coloring? ( For vb ) i couldnt find it
Edit: I pasted my code and BAM! wow, this is amazing 
Thats just RTF textbox and he copy pasted it to there, or either loaded...
Re: Notepad+ very advanced Notepad
Posted: Sat Aug 28, 2010 1:12 pm
by Agust1337
Dude nice but you should name controls like for a open file button
btnOpenFile.
Re: Notepad+ very advanced Notepad
Posted: Sat Aug 28, 2010 1:17 pm
by alex6848
Looks Great!

Re: Notepad+ very advanced Notepad
Posted: Sat Aug 28, 2010 1:23 pm
by XTechVB
it's not finished yet i will ad more functions i don't know if you noticed but it has drag and drop and after you dropped your rtf, file the text will still be colored
Re: Notepad+ very advanced Notepad
Posted: Sat Aug 28, 2010 1:39 pm
by bisnes_niko
MTech010 wrote:it's not finished yet i will ad more functions i don't know if you noticed but it has drag and drop and after you dropped your rtf, file the text will still be colored
Did you use rtfContent.LoadFile() function? (+ ofcourse the drag drop)
Re: Notepad+ very advanced Notepad
Posted: Sat Aug 28, 2010 1:57 pm
by XTechVB
yes this
Code: Select all If e.Data.GetDataPresent(DataFormats.FileDrop) Then
Dim Files As String() = CType(e.Data.GetData(DataFormats.FileDrop), String())
For Each filename As String In Files
Label2.Text = filename
Next
OpenFileDialog1.FileName = Label2.Text
rtb.LoadFile(OpenFileDialog1.FileName, RichTextBoxStreamType.RichText)
Label1.Text = OpenFileDialog1.SafeFileName
End If
Re: Notepad+ very advanced Notepad
Posted: Sat Aug 28, 2010 2:06 pm
by Codex
how did you do the text coloring ? Good Job cooll; its nice clapper;