1.

Solve : How can I split a into on windows?

Answer»

Can I split a notepad into "rows and colums" on windows ?
 Help please!Using the notepad you can make an HTML document and also you can use table and cell tags.
Cheers.This is HTML on top stuff mate. You need to LEARN the basics... Quote from: Mulreay on March 27, 2009, 06:16:04 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... Quote from: spdCHF on March 27, 2009, 01:25:15 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.

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. Quote from: dr_iton on March 28, 2009, 02:10:17 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 ?

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

Try Nvu.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
Cheers.Start as you mean to go on is my motto.

In other words, learn HTML right from the beginning.we still don't even know wether the query is about html...


Discussion

No Comment Found