Jump to content

No border for table...?


Recommended Posts

Please help me..this is my sample code..

#include <IE.au3>

$oIE = _IECreate ()

$sHTML = ""

$sHTML &= "<HTML>" & @CR

$sHTML &= "<HEAD>" & @CR

$sHTML &= "<TITLE>_IE_Example('Tables')</TITLE>" & @CR

$sHTML &= "</HEAD>" & @CR

$sHTML &= "<p> Each table starts with a table tag. Each table row starts with a tr tag.Each table data starts with a td tag."

$sHTML &= "</p>" & @CR

$sHTML &= "<h4>One column:</h4>" & @CR

$sHTML &= "<table border="8">" & @CR

$sHTML &= "<tr>" & @CR

$sHTML &= " <td>100</td>" & @CR

$sHTML &= "</tr>" & @CR

$sHTML &= "</table>" & @CR

$sHTML &= "<h4>One row and three columns:</h4>" & @CR

$sHTML &= "<table border=2>" & @CR

$sHTML &= "<tr>" & @CR

$sHTML &= " <td>100</td>" & @CR

$sHTML &= "<td>200</td>" & @CR

$sHTML &= "<td>300</td>" & @CR

$sHTML &= "</tr>" & @CR

$sHTML &= "</table>" & @CR

$sHTML &= "</HTML>" & @CR

_IEDocWriteHTML ($oIE, $sHTML)

_IEAction ($oIE, "refresh")

I LOVE MY PROFESSION[color="#008000"][/color][i][/i][size="5"][/size][font="Times New Roman"][/font]

Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
 Share

  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...