red goliath

Greenhorn
+ Follow
since Nov 23, 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 red goliath

I have a menu A which has a sub menu B.Menu B has items x,y,z. If i attach a mnemonic key to menu B,then when I press "ALT + A + B", nothing happens. i want the menu to show x,y,z menu items when i press "ALT + A + B". I find this function should have been inbuilt in java gui. But as this setup doesnt work, is there any other way to achieve this.
21 years ago
still waiting for a reply from the forum !!!
I am looking for good resources which tell about reverse engineering a PROGRESS application to a java based application.That is reverse enginner the progress application and get the functionality.then with the functionality start to develop a java based application. i also want to know what are the things that have to be considered while migrating from structure based language to OOP language. also how to put UML into action for this purpose
well can u send the files. I hope the XSL file is not complete.
hi,
can anyone give me a list of sites where i can take free UML tests/exams.
can anyone tell me where i can take free UML exams.
I have implemented JComboBox in my screen. But id gets displayed only with Vertical scroll bar.
How can i enable it with horizontal scroll bar.
22 years ago
hi Jyotsna,
I think getSelectedItem() method must satisfy ur requirement.if u are using item changed , u will get it twice as the firing of events is done twice.
take this implementation in my project.
i have to get the value in two JcomboBox on click of ok button and send it for proceesing.
Sample :

public void actionPerformed(ActionEvent ae){
String choice = ae.getActionCommand();
.......
table = (String)cbTableName.getSelectedItem();
operation= (String)cbOperation.getSelectedItem();
table = table.trim();
operation = operation.trim();
// both table and operation are strings
...................
}
22 years ago
How can i display checkboxes ina Jlist.?
If not is ther any alternative method ?.
The check box must be displayed with its corresponding label .Aalso from the list i must be able to know which are all the check boxes that have been ticked ?
22 years ago
i would like to know if there are any sites wher i cam take XMl tests/exams.am looking for free sites.
hi,
am using XML4j parser for parsing the document.
though in my code i incorporate the folliwong statement.i.e
xr.setFeature("http://xml.org/sax/features/validation",true);
the parser still does not validate the document.
What could be the reasons ?
i have a ok and cancel button on screen.After i fill the values for all the fields, on press of enter key i want the ok button to get activated and corresponding operation for login button to be performed.can any one give a sample code or tip
22 years ago
Hi,
am making a tool to transfer data from XML to DB. I want to include abort functionality for that process. SAX parser(IBM,s xerces) is used.i want to know whether once SAX parser is called, is there any way to stop the parsing action?
this could be due to the hardware perfomance.
the time taken to realise the visual component completely is more than the time taken to print on the console.
22 years ago
Hi ,
i have created a login window with userid and password field in Swing.
i validate these fields and pop up an error message.
If an user leaves password field blank, a message window is displayed with message " please enter password".Now i want the following functionality to be achieved.On click of ok button in message window the focus should return to password field in Login window. how can this be done?
22 years ago