srilatha malip

Greenhorn
+ Follow
since Feb 08, 2001
Merit badge: grant badges
For More
Cows and Likes
Cows
Total received
0
In last 30 days
0
Total given
0
Likes
Total received
0
Received in last 30 days
0
Total given
0
Given in last 30 days
0
Forums and Threads
Scavenger Hunt
expand Ranch Hand Scavenger Hunt
expand Greenhorn Scavenger Hunt

Recent posts by srilatha malip

Hi, can some one please clarify on the different values that a <BODY-CONTENT> element can have? Are the values different depending on the type of the tag (Simple and Classic)?

Thanks
Srilatha
So, Please advise me. Second and third columns may contain the text size more than the column size. It should print text in next line when it exceeds the column size.
I am pasting the code, for easy understanding.
<TABLE ID="ModDetailDataTable" CLASS=lowerTableFormat cellpadding=0 cellspacing=0>
<TR><TD NOWRAP CLASS=label></TD><TD NOWRAP CLASS=data></TD><TD CLASS=data></TD></TR>
<TR><TD NOWRAP CLASS=label></TD><TD NOWRAP CLASS=dataBG></TD><TD CLASS=dataBG></TD></TR>
<TR><TD NOWRAP CLASS=label></TD><TD NOWRAP CLASS=data></TD><TD CLASS=data></TD></TR>
<TR><TD NOWRAP CLASS=label></TD><TD NOWRAP CLASS=dataBG></TD><TD CLASS=dataBG></TD></TR>
<TR><TD NOWRAP CLASS=label></TD><TD NOWRAP CLASS=data></TD><TD CLASS=data></TD></TR>
<TR><TD NOWRAP CLASS=label></TD><TD NOWRAP CLASS=dataBG></TD><TD CLASS=dataBG></TD></TR>
<TR><TD NOWRAP CLASS=label></TD><TD NOWRAP CLASS=data></TD><TD CLASS=data></TD></TR>
<TR><TD NOWRAP CLASS=label></TD><TD NOWRAP CLASS=dataBG></TD><TD CLASS=dataBG></TD></TR>
<TR><TD NOWRAP CLASS=label></TD><TD NOWRAP CLASS=data></TD><TD CLASS=data></TD></TR>
<TR><TD NOWRAP CLASS=label></TD><TD NOWRAP CLASS=dataBG></TD><TD CLASS=dataBG></TD></TR>
</TABLE>

and dataBG and data are defined in CSS as below
.data
{
HEIGHT:14px;
WIDTH:200px;
FONT-SIZE: 10pt;
FONT-WEIGHT:normal;
COLOR: #000000;
VERTICAL-ALIGN: middle;
LINE-HEIGHT: 14px;
PADDING-LEFT:4px;
}
.dataBG
{
HEIGHT:14px;
WIDTH:200px;
FONT-SIZE: 10pt;
FONT-WEIGHT:normal;
COLOR: #000000;
VERTICAL-ALIGN: middle;
LINE-HEIGHT: 14px;
PADDING-LEFT:4px;
BACKGROUND-COLOR:#ACBBE6;
DISPLAY: inline;

}
When I use <br> <p> the text after these tags will be printed in next line. But, in my case I'll have some text. I'll print that text in some column. So, in between whenever, it exceeds the size of the column, it should print in the next line of the same column. My column is of fixed length.
Thanks,
Srilatha.

Sure! You can put in either a <br> or a <p> in yoiur table and the text will go to the next line.
Or if you set the width of the table cells the text will wrap automatically but you wont have any control over where it breaks each line - sometimes it'll be in the middle of a word.
Hi,
I am just wondering whether we can give the line break(force the text to print in next line) within a column of a table if the text exceed the size of the column. I am using HTML and cascading style sheets.
Thanks in advance,
Srilatha.
I think the answer is "b"...Presentation Layer.
I am planning to subclass the given data classes, instead of changing the class itself. In case of changing the deprecated methods, is there any other way instead of replacing the method it self. Since, I don't want to make changes in the data class.
Thanks in Advance,
Srilatha.
It should be c:\scjd\starting
not c:\scjd\starting\suncertify\db
Try this.
Dilip,
U are not supposed to use "this" in the main method. That's what I got after looking at ur code.
Srilatha.
23 years ago
Ya, Even I think the same as Adrian said...
In Local mode, Client/GUI directly connects to the database and both will be in the same machine. In network mode, client sends the requests to the server and server connects and retrieves the reqd info from database on behalf of the cleint.
If there is any mistake in my understanding, please correct me.
Thanks,
Srilatha.
Hi All,
I 've 4 comboboxes and 4 labels for these comboboxes , one textfield, two buttons. I am planning to add all these to a Jpanel, and I'll add Jpanel to a JFrame. I'll set the layout manager of frame to a border layout.
What layout will be appropriate for the panel. I don't think flow layout will do, since it will get disturbed with resizing, even the same problem with absolute positioning. All suggestions will be appreciated.
Thanks in advance,
Srilatha.
Hi all,
I've 4 comboboxes, 4 labels for comboboxes and one text field and two buttons. I am planning to add all these to panel. I'll add panel to a frame. I'm planning to use borderlayout for frame. Which layout manager will be suitabel for panel, if I add the above specified components to it. I don't want to use absolute positioning...since components will get disturbed with resizing. I think even flowlayout will not be appropriate. All suggestions will be appreciated.
Thanks,
Srilatha.
23 years ago
ya, we have to write for RMI programs. But, for userinterface classes ....do v have to write interfaces?
Hi All,
Its' not given in specifications, whether to write interfaces for each class or not?. Can any please suggest me whether to write interfaces or not?
-Srilatha