Welcome guest. Before posting on our computer help forum, you must register. Click here it's easy and free.

Author Topic: How can I split a <note pad> into <rows and colums> on windows  (Read 2742 times)

0 Members and 1 Guest are viewing this topic.

spdCHF

    Topic Starter


    Rookie

    Thanked: 1
    Can I split a notepad into "rows and colums" on windows ?
     Help please!

    dr_iton



      Intermediate
    • Reading jeopardizes stupidity?
    • Thanked: 6
      • PERSONAL WEB SITE
    • Certifications: List
    • Experience: Experienced
    • OS: Windows 10
    Re: How can I split a <note pad> into <rows and colums> on windows
    « Reply #1 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.


    A MARATHON BEGIN'S WITH A FIRST STEP.

    Mulreay

    • Guest
    Re: How can I split a <note pad> into <rows and colums> on windows
    « Reply #2 on: March 27, 2009, 06:16:04 PM »
    This is HTML on top stuff mate. You need to learn the basics...

    patio

    • Moderator


    • Genius
    • Maud' Dib
    • Thanked: 1769
      • Yes
    • Experience: Beginner
    • OS: Windows 7
    Re: How can I split a <note pad> into <rows and colums> on windows
    « Reply #3 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...
    " Anyone who goes to a psychiatrist should have his head examined. "

    BC_Programmer


      Mastermind
    • Typing is no substitute for thinking.
    • Thanked: 1140
      • Yes
      • Yes
      • BC-Programming.com
    • Certifications: List
    • Computer: Specs
    • Experience: Beginner
    • OS: Windows 11
    Re: How can I split a <note pad> into <rows and colums> on windows
    « Reply #4 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.

    I was trying to dereference Null Pointers before it was cool.

    dr_iton



      Intermediate
    • Reading jeopardizes stupidity?
    • Thanked: 6
      • PERSONAL WEB SITE
    • Certifications: List
    • Experience: Experienced
    • OS: Windows 10
    Re: How can I split a <note pad> into <rows and colums> on windows
    « Reply #5 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.


    A MARATHON BEGIN'S WITH A FIRST STEP.

    kpac

    • Web moderator


    • Hacker

    • kpac®
    • Thanked: 184
      • Yes
      • Yes
      • Yes
    • Certifications: List
    • Computer: Specs
    • Experience: Expert
    • OS: Windows 7
    Re: How can I split a <note pad> into <rows and colums> on windows
    « Reply #6 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.

    dr_iton



      Intermediate
    • Reading jeopardizes stupidity?
    • Thanked: 6
      • PERSONAL WEB SITE
    • Certifications: List
    • Experience: Experienced
    • OS: Windows 10
    Re: How can I split a <note pad> into <rows and colums> on windows
    « Reply #7 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
    Cheers.


    A MARATHON BEGIN'S WITH A FIRST STEP.

    kpac

    • Web moderator


    • Hacker

    • kpac®
    • Thanked: 184
      • Yes
      • Yes
      • Yes
    • Certifications: List
    • Computer: Specs
    • Experience: Expert
    • OS: Windows 7
    Re: How can I split a <note pad> into <rows and colums> on windows
    « Reply #8 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.

    BC_Programmer


      Mastermind
    • Typing is no substitute for thinking.
    • Thanked: 1140
      • Yes
      • Yes
      • BC-Programming.com
    • Certifications: List
    • Computer: Specs
    • Experience: Beginner
    • OS: Windows 11
    Re: How can I split a <note pad> into <rows and colums> on windows
    « Reply #9 on: March 28, 2009, 10:19:23 AM »
    we still don't even know wether the query is about html...
    I was trying to dereference Null Pointers before it was cool.