Notepad+ 2.0 **UPDATED**

If you have completed an application and wish to share the complete source/project files with everyone then please post it in here. Source-code files only, no tutorials.
56 posts Page 1 of 6
User avatar
XTechVB
VIP - Site Partner
VIP - Site Partner
Posts: 727
Joined: Thu May 20, 2010 10:32 am

Notepad+ 2.0 **UPDATED**
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.
You do not have the required permissions to view the files attached to this post.
Last edited by XTechVB on Wed Nov 23, 2011 10:30 am, edited 5 times in total.
You can find me on Facebook or on Skype mihai_92b
User avatar
bisnes_niko
Serious Programmer
Serious Programmer
Posts: 409
Joined: Tue Aug 24, 2010 1:21 pm

Did that too fast? 'Form1' :P

looks nice :D
Lewis
Coding God
Coding God
Posts: 1564
Joined: Sun Dec 20, 2009 2:12 pm

Re: Notepad+ very advanced Notepad
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 :D
Image
User avatar
bisnes_niko
Serious Programmer
Serious Programmer
Posts: 409
Joined: Tue Aug 24, 2010 1:21 pm

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 :D

Thats just RTF textbox and he copy pasted it to there, or either loaded...
User avatar
Agust1337
Coding God
Coding God
Posts: 2456
Joined: Fri Feb 19, 2010 8:18 pm

Dude nice but you should name controls like for a open file button
btnOpenFile.
Top-notch casual Dating
User avatar
alex6848
VIP - Donator
VIP - Donator
Posts: 201
Joined: Sat Jan 16, 2010 10:26 pm

Re: Notepad+ very advanced Notepad
alex6848
Looks Great! :D
Free Facebook Page Likes - http://fbliker.tk/?ref=gillis
User avatar
XTechVB
VIP - Site Partner
VIP - Site Partner
Posts: 727
Joined: Thu May 20, 2010 10:32 am

Re: Notepad+ very advanced Notepad
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
You can find me on Facebook or on Skype mihai_92b
User avatar
bisnes_niko
Serious Programmer
Serious Programmer
Posts: 409
Joined: Tue Aug 24, 2010 1:21 pm

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)
User avatar
XTechVB
VIP - Site Partner
VIP - Site Partner
Posts: 727
Joined: Thu May 20, 2010 10:32 am

Re: Notepad+ very advanced Notepad
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
You can find me on Facebook or on Skype mihai_92b
User avatar
Codex
Coding God
Coding God
Posts: 2028
Joined: Wed Mar 31, 2010 5:50 pm

Re: Notepad+ very advanced Notepad
Codex
how did you do the text coloring ? Good Job cooll; its nice clapper;
We shall let the revolution begin.. the revolution for freedom, freedom against censorship. We shall fight in the fields and in the streets, we shall fight in the hills; we shall never surrender
56 posts Page 1 of 6
Return to “Source-Code”