Computer Hope

Microsoft => Microsoft Windows => Windows XP => Topic started by: spdCHF on March 27, 2009, 01:25:15 PM

Title: How can I split a <note pad> into <rows and colums> on windows
Post by: spdCHF on March 27, 2009, 01:25:15 PM
Can I split a notepad into "rows and colums" on windows ?
 Help please!
Title: Re: How can I split a <note pad> into <rows and colums> on windows
Post by: dr_iton on March 27, 2009, 02:00:05 PM
Using the notepad you can make an HTML document and also you can use table and cell tags.
Cheers.
Title: Re: How can I split a <note pad> into <rows and colums> on windows
Post by: Mulreay on March 27, 2009, 06:16:04 PM
This is HTML on top stuff mate. You need to learn the basics...
Title: Re: How can I split a <note pad> into <rows and colums> on windows
Post by: patio on March 27, 2009, 08:40:33 PM
This is HTML on top stuff mate. You need to learn the basics...

Well since he's new here...and you're new here...how about offering up suggestions on solving his issue ? ?
That's what we do...
Title: Re: How can I split a <note pad> into <rows and colums> on windows
Post by: BC_Programmer on March 27, 2009, 09:00:21 PM
Can I split a notepad into "rows and colums" on windows ?
 Help please!

Depending on exactly what your after- the standard windows "edit" control, used by notepad, implements Tab stops. by using Tab you can line up your data.

Note that you need a fixed-width font for this to work properly, but it works alright with proportional fonts, as well.

There is no way in notepad to change the tab-stop locations, as you can with Word or other word processing programs, so you have to settle for a multiple of the default.

Title: Re: How can I split a <note pad> into <rows and colums> on windows
Post by: dr_iton on March 28, 2009, 02:10:17 AM
OK. I'm going to give you an example how to make a table 2x2 with columns named name & address.
First thing to do is to open notepad and write those tags below:

<html>
<table align=center border=1>
<tr><td>Name</td><td>Address</td></tr>
<tr><td>no name</td><td>no address</td></tr>
</table>
</html>


Click on File, Save As.. and name it as example.html and also save it on the desktop so you can find the file easier.

Cheers.
Title: Re: How can I split a <note pad> into <rows and colums> on windows
Post by: kpac on March 28, 2009, 04:05:09 AM
First thing to do is to open notepad and write those tags below:

<html>
<table align=center border=1>
<tr><td>Name</td><td>Address</td></tr>
<tr><td>no name</td><td>no address</td></tr>
</table>
</html>


And what about the <body>?

Notepad is not a WYSIWYG editor, just a text editor.

Try Nvu. (http://www.nvu.com/)
Title: Re: How can I split a <note pad> into <rows and colums> on windows
Post by: dr_iton on March 28, 2009, 04:41:52 AM
That was just an example because as you know an HTML document is constituted from its HEAD and BODY.
Here you can see all HTML references  (http://www.freewebs.com/dritongashi/htmletiketat.htm)
Cheers.
Title: Re: How can I split a <note pad> into <rows and colums> on windows
Post by: kpac on March 28, 2009, 05:03:05 AM
Start as you mean to go on is my motto.

In other words, learn HTML right from the beginning.
Title: Re: How can I split a <note pad> into <rows and colums> on windows
Post by: BC_Programmer on March 28, 2009, 10:19:23 AM
we still don't even know wether the query is about html...