Hello wolfenstein!
Yes, there is a way
1) insert first table with 1 row and 1 column;
2) set Border="0";
3) set CellSpace="0";
4) set whole table background color (for a example, BG Color="#993300"

;
5) put cursor inside the table and insert there the real table you need with necessary number of rows and columns;
6) set CellSpace="1" and Border="0" of the second table;
7) set each cell background color, usually it's like a page bg color - white
or set each row background color (NOTE: select only part of cells or rows in a time and then a rest, because if you select all cells or rows in your table and set bg color this color will be applied to the whole table not to each cell or row - in this case the example will work in NC not in IE);
Now you have table with 1px border that looks the same in IE and NC!
Good Luck!
P.S. Here is the HTML code:
Code:
<html>
<head>
<title>Untitled Document</title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
</head>
<body bgcolor="#FFFFFF" text="#000000">
<table width="400" border="0" cellspacing="0" cellpadding="0" bgcolor="#993300">
<tr>
<td>
<table width="400" border="0" cellspacing="1" cellpadding="0">
<tr bgcolor="#FFFFFF">
<td> </td>
<td> </td>
<td> </td>
<td> </td>
</tr>
<tr bgcolor="#FFFFFF">
<td> </td>
<td> </td>
<td> </td>
<td> </td>
</tr>
<tr bgcolor="#FFFFFF">
<td> </td>
<td> </td>
<td> </td>
<td> </td>
</tr>
<tr bgcolor="#FFFFFF">
<td> </td>
<td> </td>
<td> </td>
<td> </td>
</tr>
</table>
</td>
</tr>
</table>
</body>
</html>