HOME | DD

Komrad-Toast β€” Glass Notepad by-nc-sa

Published: 2009-06-14 17:09:20 +0000 UTC; Views: 154257; Favourites: 200; Downloads: 85192
Redirect to original
Description Now check out Glass Notepad v2.0



Thank you for over 30,000 views and 25,000 downloads, just from DA!

WOW! I can't thank everyone enough! This app has been added to So[link] and has been added to DownloadTube! I didn't even ask for it either! And i have recieved an award from DownloadTube for this! This has been given the Top Software award from DownloadTube as well! Here are the links to the two new locations - DownloadTube and So [link] .

Coming soon: French and Arabic translations, thanks to Abderrahmane KASSAR

I have been receiving alot of messages about pasting into this app lately, and i want to clarify some thing. If you paste using right click or the edit menu instead of CTRL+V the text will be visible, also if you do insist on pasting with CTRL+V i added a button down at the bottom that says "Color to White", if you click that it should make your text visible. Also if you try to open a file with this and nothing shows up but the app, im sorry, you'll need to use File->Open, i am still working on it taking command line arguments to open files. Any other bugs, just PM or e-mail me, i love to get suggestions, and constructive crit. (just don't go to harsh on me!)



Program: Notepad (Glass Edition)
Programmed By: Tyler J. Colby-Wolter (That's me!)
Company: Matrix Softworksβ„’
Copyright Β©: 2009

This Software is available under the creative commons liscence

Notepad (Glass Edition) is a program i made
in my spare time to try and make boring old
Microsoft Notepad look a little spiffier and
modern. It has a completely glassed surface
which goes well with the "Aero" theme on
Windows Vista and Windows 7. If you would
like the source code just PM me, i'll send you
the visual studio solution file. It is programmed
in C#.

Updates:
=======
v1.0:Initial release
v1.1:Fixed a minor bug
v1.2:Added Text Alignment

Requirements:
===============
OS: At least windows Vista, but i added code to make it
compatible on earlier OSes, you just wont have the glass effect. (No, this won't work on Mac or Linux, sorry guys)

.Net Framework 3.5




Links
===============
Lifehacker
AskVG
[link] >DownloadTube
So [link]
Related content
Comments: 190

Komrad-Toast In reply to ??? [2011-01-27 22:14:40 +0000 UTC]

in code, if you are programming a windows forms application it would be this.Opacity = x; where x is the percent opaque you want your window to be. Or did you mean to lower the transparency of glass notepad itself?

πŸ‘: 0 ⏩: 0

CheeseburgerJT [2011-01-22 20:46:52 +0000 UTC]

i like it, but same problem as dave. i really only use notepad literally for notes when im copying and pasting alot of stuff so it isnt a big deal to me but id love to see that fixed so its a bit more functional so to speak. great toy though.

πŸ‘: 0 ⏩: 0

davedouble-u [2011-01-22 19:40:44 +0000 UTC]

Sad. I liked it but wasn't able to use it as a notepad replacement, since I had to browse to a text to open. I was able to replace System32 notepad though, after taking ownership of the original Windows notepad.exe.

I hope you haven't given up on this.

πŸ‘: 0 ⏩: 0

TeamNiBiC [2011-01-17 23:33:51 +0000 UTC]

I like the ideΓ‘.. but WAY TOO simple to make.. s:

πŸ‘: 0 ⏩: 1

Komrad-Toast In reply to TeamNiBiC [2011-01-18 01:52:30 +0000 UTC]

What is simple to one person mey not be simple to someone else. Looking back now, it was simple to make. Back when i made it i was challenging myself. It was initialy never going to be a released program anyways.

πŸ‘: 0 ⏩: 1

TeamNiBiC In reply to Komrad-Toast [2011-01-26 15:59:30 +0000 UTC]

Well sure (:. but its just like 15 lines of coding in Visual basic .. but sure, it's a nice ideΓ‘ and the concept is awesome

πŸ‘: 0 ⏩: 0

SaidSikiraa [2011-01-07 21:05:10 +0000 UTC]

Add this code for font:

Add setting with name "Font" and tipe System.Drawing.Font

Then add this code to your project

VISUAL BASIC:

Public Sub SaveFont() Handles FontMenuItem.Click

If fontdialog1.show() = DialogResult.OK then
My.Settings.Font = FontDialog1.Font
Textbox1.Font = My.Settings.Font
End If

End Sub

C#:
public void SaveFont()
{
if (fontdialog1.show() == DialogResult.OK) {
My.Settings.Font = FontDialog1.Font;
Textbox1.Font = My.Settings.Font;
}

}

Hope this helps

πŸ‘: 0 ⏩: 1

Komrad-Toast In reply to SaidSikiraa [2011-01-08 17:59:13 +0000 UTC]

Unfortunately I have lost all source code to everything I have ever programmed, so I will not be able to add this code to my Project.

πŸ‘: 0 ⏩: 1

SaidSikiraa In reply to Komrad-Toast [2011-01-08 18:09:31 +0000 UTC]

so that means that you don't developing glass notepad 2.0?

πŸ‘: 0 ⏩: 1

Komrad-Toast In reply to SaidSikiraa [2011-01-09 22:45:40 +0000 UTC]

I am working on trying to get back to the point i was at.

πŸ‘: 0 ⏩: 0

PCGOD1 In reply to ??? [2010-12-13 19:29:58 +0000 UTC]

What program did you use to compile/decompile?

πŸ‘: 0 ⏩: 1

Komrad-Toast In reply to PCGOD1 [2010-12-13 21:40:57 +0000 UTC]

I didn't decompile at all. But i did compile. The whole program was written in Microsoft Visual Studio 2008.

πŸ‘: 0 ⏩: 1

PCGOD1 In reply to Komrad-Toast [2010-12-13 23:39:27 +0000 UTC]

Ok, I didn't expect that you didn't decompile that programs I just ment in general(if you did). I have MS Visual Studio 2010, bought it a few weeks ago. I'm trying to learn how to use it. I've tapped out on modifying system files to customize the OS so I wanted to learn how to make programs.

πŸ‘: 0 ⏩: 1

Komrad-Toast In reply to PCGOD1 [2010-12-14 00:11:31 +0000 UTC]

I use VS2010 now too, as soon as i track them down i can send you links to where i learned how to code the glass effect in to the window.

πŸ‘: 0 ⏩: 1

PCGOD1 In reply to Komrad-Toast [2010-12-14 00:36:23 +0000 UTC]

That would be greatly appreciated.

Thanks for your help.

πŸ‘: 0 ⏩: 0

LeviGuilherme [2010-11-02 16:18:37 +0000 UTC]

Congratulations Tyler! You did a good job with this little software. It is
really beautiful. But It has this problem: When I click on the file it just opens up glass notepad not the file.
I would appreciate the solution file visual studio to see the code and study this, I am learning to program in C# and read code helps me a lot to learn. My email is levi.g.silveira@gmail.com
I await your email, ok?
Thanks

πŸ‘: 0 ⏩: 1

Komrad-Toast In reply to LeviGuilherme [2010-11-03 01:09:53 +0000 UTC]

I am aware of this error already, but thanks for notifying me! Unfortunately I can't give you the source code as i lost the files in a computer crash a few months back (programming has it's downsides sometimes, like when you write something that crashes your system...).

πŸ‘: 0 ⏩: 0

D351GN In reply to ??? [2010-09-18 20:06:12 +0000 UTC]

yeepee

πŸ‘: 0 ⏩: 0

peewee-hermen In reply to ??? [2010-08-31 16:12:17 +0000 UTC]

looks epic dude, this will go great in my app collection

πŸ‘: 0 ⏩: 0

GunslingerAR88 [2010-08-24 11:24:49 +0000 UTC]

Nice work

πŸ‘: 0 ⏩: 1

Komrad-Toast In reply to GunslingerAR88 [2010-08-24 20:53:21 +0000 UTC]

thank you

πŸ‘: 0 ⏩: 0

Carothers [2010-07-13 21:47:39 +0000 UTC]

Thanks M8

πŸ‘: 0 ⏩: 0

Solneo [2010-07-05 21:48:56 +0000 UTC]

wow...thats something else...no srsly awesome work dude

πŸ‘: 0 ⏩: 0

kirababez In reply to ??? [2010-06-24 11:17:06 +0000 UTC]

eii dude.
im a newbie.
can you help me plss. ?
its not working on my windows xp.
i thought it works like you said.. ??
im bored using ordinary notepad..
this kind of boredam kills me softly..
anyone plss elp me..
plss..

πŸ‘: 0 ⏩: 1

Komrad-Toast In reply to kirababez [2010-06-24 18:39:31 +0000 UTC]

Hey. Not to kill your enthusiasm, but this won't work on Windows XP, like it says in the readme AND the description above, you need at least Windows Vista to run this. I also believe i added in a messagebox to notify anyone of tis if they try running it on XP. Sorry that it won't work on XP, but it's just not possible.

πŸ‘: 0 ⏩: 1

kirababez In reply to Komrad-Toast [2010-06-26 15:58:33 +0000 UTC]

god damn.
thank you much
its ok.. hope someday you'll create
something for xp
by the way, may i know whats ur nationality ??
XP.
tenk yuh

πŸ‘: 0 ⏩: 1

Komrad-Toast In reply to kirababez [2010-06-26 18:07:29 +0000 UTC]

I live in America, but my Mom's family is English and my dad's family is German. How about you?

πŸ‘: 0 ⏩: 1

kirababez In reply to Komrad-Toast [2010-06-27 06:06:22 +0000 UTC]

ohh realy?
im a filipino,
my father is from london,
and my mother is from marikina,Philippines. ^_^
hope someday you'l gonna create a glassy notepad for xp..
^_^ ty

πŸ‘: 0 ⏩: 1

Komrad-Toast In reply to kirababez [2010-06-29 21:24:05 +0000 UTC]

Haha, well, i could try creating one, but like i said, it's impossible as far as i know.

πŸ‘: 0 ⏩: 0

kirababez [2010-06-24 11:14:32 +0000 UTC]

hei dude..
im a newbie.
can you help me plss.
i thought it will work to windows xp, but it's not.

im bored w/ my ordinary notepad.
any one pls help me

πŸ‘: 0 ⏩: 0

princebarpaga [2010-06-21 17:37:01 +0000 UTC]

yeahhh

πŸ‘: 0 ⏩: 0

mike-reations [2010-06-11 22:14:40 +0000 UTC]

Brilliant [link]

πŸ‘: 0 ⏩: 0

MrVangelis [2010-06-06 05:46:14 +0000 UTC]

Really nice ! Which desktop theme do you use ?

πŸ‘: 0 ⏩: 1

Komrad-Toast In reply to MrVangelis [2010-06-07 00:33:47 +0000 UTC]

Thank you! I believe when i released this i was using the "Squareo" theme, it's somewhere on DA, and i may have spelled it wrong. If i remember correctly, the author spelled it Squ4reo, with a 4 not an A

πŸ‘: 0 ⏩: 0

SpringsTS [2010-05-24 13:19:56 +0000 UTC]

Founded 2 others bugs:
_ a right click at the right of the menus close the program.
_ If I select a text, then change the font, the selected text is hided until I relaunch Glass Notepad.

πŸ‘: 0 ⏩: 0

SpringsTS [2010-05-24 12:41:29 +0000 UTC]

Very nice!

Found 2 bugs:
_ Cannot change the text color (stay on White)
_ Cannot open files by the "Open with..." way

It will be possible to change the original Notepad with this one?

πŸ‘: 0 ⏩: 0

InsanePiece [2010-03-28 20:43:08 +0000 UTC]

Very Nice.! 5*.!

Possible ?!
mncorp.net/Img/image/NotePad%20Glass%20v2.png

πŸ‘: 0 ⏩: 0

InsanePiece [2010-03-28 20:42:56 +0000 UTC]

Very Nice.! 5*.!

Possible ?!

www . mncorp.net/Img/image/NotePad%20Glass%20v2.png

πŸ‘: 0 ⏩: 0

InsanePiece [2010-03-28 20:42:33 +0000 UTC]

Very Nice.! 5*.!

Possible ?!
www.mncorp.net/Img/image/NotePad%20Glass%20v2.png

πŸ‘: 0 ⏩: 0

InsanePiece In reply to ??? [2010-03-28 20:41:07 +0000 UTC]

Very nice.


Possible ?!
[link]

πŸ‘: 0 ⏩: 0

bigbosstx [2010-02-09 20:15:19 +0000 UTC]

hay man i cant open .txt with it with it they open blank

πŸ‘: 0 ⏩: 1

Komrad-Toast In reply to bigbosstx [2010-02-11 23:16:47 +0000 UTC]

That is a known bug that i am trying to fix. For now you'll just have to open all your files right from the "File|Open" menu, sorry for the inconvenience!

πŸ‘: 0 ⏩: 1

bigbosstx In reply to Komrad-Toast [2010-02-11 23:23:54 +0000 UTC]

thanks and will that be fixed in the 2.0

πŸ‘: 0 ⏩: 1

Komrad-Toast In reply to bigbosstx [2010-02-13 06:04:12 +0000 UTC]

It should be fixed in 2.0, yes

πŸ‘: 0 ⏩: 0

chiipyo In reply to ??? [2010-02-06 04:00:08 +0000 UTC]

Oh my GAWD! That's pretty nice! TOTALLY it now! *w*

πŸ‘: 0 ⏩: 1

Komrad-Toast In reply to chiipyo [2010-02-07 07:05:32 +0000 UTC]

Haha, thanks for the comment, glad you like it!

πŸ‘: 0 ⏩: 0

GrDezign In reply to ??? [2010-02-03 00:38:33 +0000 UTC]

You made my day, I use Notepad everyday and I hate that boring old look also, so please accept my big THANK YOU.

πŸ‘: 0 ⏩: 1

Komrad-Toast In reply to GrDezign [2010-02-03 03:58:08 +0000 UTC]

I accept! Lol, thank YOU for the comment, glad you like it!

πŸ‘: 0 ⏩: 1

GrDezign In reply to Komrad-Toast [2010-02-03 04:41:00 +0000 UTC]

You're welcome.

πŸ‘: 0 ⏩: 0

rflfn In reply to ??? [2010-02-02 20:31:49 +0000 UTC]

Wow! Very Nice man! [2]
I User
faved!

πŸ‘: 0 ⏩: 1


| Next =>