2
Answers

displaying forms on different monitor size in vb.net...

paresh chaudhari

paresh chaudhari

14y
4.1k
1
Dear sir,
   i have one problem of displaying forms on different monitor size in vb.net...
when i run project on my laptop it works perfectly... but when i run project on my friends laptop the forms size automatically change, and forms some part make hide... bcoz my friends laptops monitor screen is small than my monitor screen.to avoid this problem plz suggest me solution...
thank you.........................
Answers (2)
0
Shehzad

Shehzad

NA 153 14k 9y
Hi Manas,
 
Challenge here is i don't want to cellspacing/padding zero and don't want to collapse border as
it will effect other rows in table.
 
Regards
 
Shehzad 
 
 
 
 
 
0
Shehzad

Shehzad

NA 153 14k 9y
Hi Arul,
 
As mentioned in my question i don't want to collapse border.
 
Regards
 
Shehzad 
 
 
0
Manas Mohapatra

Manas Mohapatra

NA 29.3k 3.3m 9y
Try with below code:
 
<!DOCTYPE html>
<html>
<head>
</head>
<body>
<table cellspacing = "0" cellpadding="0" style="border: 2px solid green">
<tr>
<td>
ONE
</td>
<td>
ONE
</td>
<td>
ONE
</td>
</tr>
<tr style="background-color:yellow">
<td>
THREE
</td>
<td>
THREE
</td>
<td>
THREE
</td>
</tr>
<tr>
<td>
FOUR
</td>
<td>
FOUR
</td>
<td>
FOUR
</td>
</tr>
</table>
</body>
</html>
0
Arul R

Arul R

NA 1.3k 705 9y
Try this code
 
<style >
tbody tr td {
padding: 12px;
text-align: center;
}
</style>
 
<table style="border: 2px solid green; border-collapse: collapse;">
<tbody>
<tr>
<td>ONE </td>
<td>ONE </td>
<td>ONE </td>
</tr>
<tr>
<td>TWO </td>
<td>TWO </td>
<td>TWO </td>
</tr>
<tr style="background-color: yellow">
<td>THREE </td>
<td>THREE </td>
<td>THREE </td>
</tr>
<tr>
<td>FOUR </td>
<td>FOUR </td>
<td>FOUR </td>
</tr>
<tr>
<td>FIVE </td>
<td>FIVE </td>
<td>FIVE </td>
</tr>
</tbody>
</table>
 
Let me know for any thing more....
If your problem solved means kindly Accept my answer
 
 
 
0
Shehzad

Shehzad

NA 153 14k 9y
Hi Manas,
 
Below is the sample code  and image.
FYI I am also using Jquery in the application.
 
Regards
 
Shehzad 
 
<!DOCTYPE html>
<html>
<head>
</head>
<body>
<table cellspacing = "5" cellpadding="8" style="border: 2px solid green">
<tr>
<td>
ONE
</td>
<td>
ONE
</td>
<td>
ONE
</td>
</tr>
<tr>
<td>
TWO
</td>
<td>
TWO
</td>
<td>
TWO
</td>
</tr>
<tr style="background-color:yellow">
<td>
THREE
</td>
<td>
THREE
</td>
<td>
THREE
</td>
</tr>
<tr>
<td>
FOUR
</td>
<td>
FOUR
</td>
<td>
FOUR
</td>
</tr>
<tr>
<td>
FIVE
</td>
<td>
FIVE
</td>
<td>
FIVE
</td>
</tr>
</table>
</body>
</html>
0
Manas Mohapatra

Manas Mohapatra

NA 29.3k 3.3m 9y
Can you share the code how are trying to set Background color to yellow.
0
Rajeesh Menoth

Rajeesh Menoth

NA 24.7k 629.5k 9y
Hi,
 
<!DOCTYPE html>
<html>
<head>
<style>
table, th, td {
border: 1px solid black;
}
</style>
</head>
<body>
<table>
<tr bgcolor="#FF0000">
<th>Month</th>
<th>Savings</th>
</tr>
<tr>
<td>January</td>
<td>$100</td>
</tr>
</table>
<p>The bgcolor attribute is not supported in HTML5. Use CSS instead.</p>
</body>
</html>
Reference : 
 
http://www.w3schools.com/tags/tryit.asp?filename=tryhtml_tr_bgcolor 
0
Arul R

Arul R

NA 1.3k 705 9y
Try this code 
 
<table>
<tr>
<td>
<asp:Label ID="Label1" runat="server" Text="First Name"></asp:Label>
</td>
<td>
<asp:TextBox ID="TextBox1" runat="server"></asp:TextBox>
</td>
</tr>
<tr style="background-color: yellow">
<td>
<asp:Label ID="Label2" runat="server" Text="Last Name"></asp:Label>
</td>
<td>
<asp:TextBox ID="TextBox2" runat="server"></asp:TextBox>
</td>
</tr>
</table>
 
Let me know for any thing more....
If your problem solved means kindly Accept my answer