• Post Reply Bookmark Topic Watch Topic
  • New Topic
programming forums Java Mobile Certification Databases Caching Books Engineering Micro Controllers OS Languages Paradigms IDEs Build Tools Frameworks Application Servers Open Source This Site Careers Other Pie Elite all forums
this forum made possible by our volunteer staff, including ...
Marshals:
  • Campbell Ritchie
  • Jeanne Boyarsky
  • Ron McLeod
  • Paul Clapham
  • Liutauras Vilda
Sheriffs:
  • paul wheaton
  • Rob Spoor
  • Devaka Cooray
Saloon Keepers:
  • Stephan van Hulst
  • Tim Holloway
  • Carey Brown
  • Frits Walraven
  • Tim Moores
Bartenders:
  • Mikalai Zaikin

Dialog Class???

 
Ranch Hand
Posts: 18944
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Here is my firt code on Dialog...not clear on concept. SOme insight would be appreciated and do we need read about dialog class for test..
import java.awt.*;
class DialogBox1
{
public static void main(String arr[])
{
Frame f1 = new Frame("hello");
f1.setBounds(10 , 20 , 300 , 400);
Dialog d = new Dialog(f1 , "dialog" , true);
d.show();
f1.setVisible(true);
}
}

Once again to Java geeks .Have fun..have beer , tequila , and have fun in Str** bars.
 
Ranch Hand
Posts: 1467
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
What's your qstn? What do you want? Write clearly the qstns?
regds
maha anna
 
Greenhorn
Posts: 7
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Sethura if every one follows your advice and start going to bars who will answer qstn's.
 
reply
    Bookmark Topic Watch Topic
  • New Topic