• 0

design help?


Question

I am trying to make my chat program all snazzy ... but I suck at it ... I a horrible it is awful I want to cry it looks like that... it has an interface not even a mother could love ....

so basically i need help with gui programming.... look what happens when i try .... an links or tips or anything


import java.awt.*;
import java.awt.event.*;
import javax.swing.*;
import javax.swing.event.*;
@SuppressWarnings("unused")
public class SwingChatGUI extends JFrame
{
/**
*
*/
private static final long serialVersionUID = 1L;
public JButton sendButton;
public static JTextArea txArea;
public static JTextArea rxArea;

public Container container;

public JPanel n1, s1, w1, all;


public SwingChatGUI (String title)
{
super (title);

container = getContentPane();
container.setLayout( new BorderLayout() );
container.setPreferredSize(new Dimension(600, 600));
all = new JPanel(new BorderLayout());
container.add(all, BorderLayout.CENTER);

n1 = new JPanel(new BorderLayout());
n1.setPreferredSize(new Dimension(400, 200));
n1.setBorder(BorderFactory.createLineBorder(Color.black));
all.add(n1, BorderLayout.NORTH);

s1 = new JPanel(new BorderLayout());
s1.setPreferredSize(new Dimension(400, 200));
s1.setBorder(BorderFactory.createLineBorder(Color.black));
all.add(s1, BorderLayout.CENTER);


w1 = new JPanel(new BorderLayout());
w1.setPreferredSize(new Dimension(50, 400));
w1.setBorder(BorderFactory.createLineBorder(Color.black));
container.add(w1, BorderLayout.EAST);


txArea = new JTextArea (6, 40);
txArea.setLineWrap(true);
txArea.setWrapStyleWord(true);

rxArea = new JTextArea (6, 40);
rxArea.setLineWrap(true);
rxArea.setWrapStyleWord(true);

sendButton = new JButton ("Send");
sendButton.setPreferredSize(new Dimension(10, 20));
setResizable(false);

n1.add (rxArea);
s1.add (txArea);
w1.add (sendButton);

}


public static void main (String[] args)
{
Frame f = new SwingChatGUI ("Chat Program");
f.pack ();
f.setVisible(true);
}
}
[/CODE]

Link to comment
https://www.neowin.net/forum/topic/1126624-design-help/
Share on other sites

6 answers to this question

Recommended Posts

  • 0

Do you expect someone else to compile and run this code, understand what it does, guess what your intent is and what isn't working out with it for you, and by sheer intuition come up with just the advice you need?

Perhaps you should at least explain what you're trying to do and what the problem is, in more detail than "it sucks". And if it's a visual issue, perhaps you could even a post a screenshot illustrating what the issue is. The less work and guessing you force us to do, the more quickly you'll get a quick and informative answer.

Link to comment
https://www.neowin.net/forum/topic/1126624-design-help/#findComment-595404228
Share on other sites

  • 0

Consider using NetBeans built-in GUI Builder for drag-and-drop Swing development. Eclipse has a similar plugin, but I find myself more productive in NetBeans. Your mileage may vary.

?? does eclipse have this plugin ? I would rather code it in my self but this whole panel panel panel panel panel ENDLESS PANELS is getting to me a bit ..

Link to comment
https://www.neowin.net/forum/topic/1126624-design-help/#findComment-595410390
Share on other sites

  • 0

Although be very wary when using GUI builders for Java. They more often than not produce buckets of horrible code that quickly becomes a maintenance nightmare somewhere along the road. Use them with care.

Yeah, I think doing it via XML is a cleaner way to design a GUI: http://java-source.net/open-source/xml-user-interface-toolkits

Link to comment
https://www.neowin.net/forum/topic/1126624-design-help/#findComment-595411854
Share on other sites

This topic is now closed to further replies.
  • Posts

    • Playground drops 30 minutes of Fable gameplay, shows off life sim and morality system by Pulasthi Ariyasinghe Playground Games gave fantasy RPG fans a new look at its Fable reboot last Sunday at the Xbox Games Showcase. While that was a short cinematic trailer revealing the main villain of the storyline, played by Hayley Atwell, today, the development team released an entire gameplay demo to show off the game in action. There is some combat and action near the end of it, but most of the demo is focused on the game's NPC simulation, relationships, choices players can make, and the complex reputation system. The studio is touting over 1,000 hand-crafted NPCs who have jobs, homes, routines they follow in their villages and outskirts, and a memory of what is going on in the world and what actions the player has done. All of these are voiced by real people too. The demo begins with a short interaction with a butcher who wants to kill a talking pig named Colin. The protagonist chooses to save Colin by paying the butcher a bunch of gold for his troubles, giving the hero a rise in reputation for being shrewd, merciful, and virtuous. There were also options to simply let Colin get killed or even fight the butcher for the pig instead of paying him. How NPCs judge the player depends on how they interact with the world. https://www.youtube.com/watch?v=doV0yq4kAP0 Later, the demo shows off how purchasing and managing businesses work, where players can hire employees, change their wages, tweak the price of the shop items, and reap profits if they do well. Different NPCs react differently to each type of reputation the player is touting. One shop owner jacks up prices by 80% just because the player is rich and owns businesses. The demo even shows the player deciding to attack random villagers and causing a ruckus in the streets, turning the hero into a criminal. This is where the magic combat systems are shown off, where the player can teleport, turn enemies into chickens, sword-fight, and more. "This is how you’ll build an extraordinary life in Fable. It’s all about shades of grey – it’s not us or the game telling you what is good and what is bad," says Dan Greer, Lead Game Designer. "With the Living Population, it’s the NPCs themselves judging your actions." Fable is releasing across PC and Xbox Series X|S on February 23, 2027. Premium Edition owners will be able to play starting on February 18 instead. Xbox Game Pass subscribers will also be able to jump in at launch for no extra cost.
    • Still 93% off: Microsoft Visual Studio Professional 2026 lifetime digital license by Steven Parker Today's highlighted deal comes via our Apps + Software section of the Neowin Deals store, where for a limited time you can still save 93% on Microsoft Visual Studio Professional 2026. Code Faster, Work Smarter with Visual Studio 2026 Visual Studio Professional 2026 is a fully featured development environment that developers around the world know & love — now enhanced with deeper AI integration, improved performance & more powerful collaboration tools. Built as a 64-bit IDE, it makes it easier than ever to work with very large solutions & complex workloads. Boost your productivity, write high-quality code & re-imagine team collaboration with an advanced suite of tools & built-in integrations designed to tackle the most demanding development workflows & deliver modern, cloud-connected applications. Build across languages and platforms Craft cross-platform mobile & desktop apps with .NET MAUI Build responsive Web UIs in C# with Blazor Build, debug, & test .NET & C++ apps targeting Windows, Linux & containers Use hot reload capabilities across .NET & C++ apps to apply code changes instantly Edit running ASP.NET/ASP.NET Core pages in the web designer view Integrate seamlessly with Azure, GitHub & other DevOps workflows Type less, code more with Intellicode and AI Understand your code context: variable names, functions, libraries & the type of code you’re writing Complete a line or block of code based on patterns learned from your codebase Get a ranked list of next best suggestions, helping you code more rapidly & accurately Use built-in AI-assisted refactoring & code suggestions to reduce bugs & boilerplate Gain deep insights into your code with codelens Reveal crucial information such as recent changes, authors, tests & commit history directly in the editor See test status & references without leaving your code Make informed decisions with a comprehensive overview of your codebase and activity Collaborate seamlessly with live share Run real-time collaboration sessions with teammates — no need for them to clone repos or install all dependencies Speed up your team’s edit & debugging cycles with personalized sessions, access controls & custom editor settings Keep everyone aligned so your team’s code stays consistent & maintainable Good to know Length of access: Lifetime License type: Professional, single-user license Redemption deadline: Redeem your code within 30 days of purchase Access options: Desktop installation on supported Windows operating systems Max number of device(s): 1 Version: Visual Studio Professional 2026 Languages supported: English, Chinese (Simplified), Chinese (Traditional), Czech, French, German, Italian, Japanese, Korean, Polish, Portuguese (Brazil), Russian, Spanish, and Turkish. Updates included: Minor updates and security fixes for the 2026 Professional release channel (according to Microsoft’s lifecycle policy) Activation method: Online activation with Microsoft account required Microsoft Visual Studio Professional 2026 normally costs $499.99, but this deal can be yours for just $34.97, that's a saving of $465. For full terms, specifications, and license info please click the link below. Get Visual Studio 2026 now for just $34.97 (was $499.99) Time limited deal Although priced in U.S. dollars, this deal is available for digital purchase worldwide. Support queries If you have queries or need support for any of the Neowin Deals, please use the contact form here. Neowin Deals are managed and sold by StackCommerce who represent Neowin on an affiliate basis. Why we post these deals We post these because we earn commission on each sale so as not to rely solely on advertising, which many of our readers block. It all helps toward paying staff reporters, servers and hosting costs. So for those that keep moaning and complaining, be thankful we're still online for you to even do that. Other ways to support Neowin Whitelist Neowin by not blocking our ads Create a free member account to see fewer ads Make a donation to support our day to day running costs Subscribe to Neowin - for $14 a year, or $28 a year for an ad-free experience Disclosure: Neowin benefits from revenue of each sale made through our branded deals site powered by StackCommerce.
    • My current phone, on left, is starting to go to sleep, and not turning on, even though I press the power button 100 times. Like CPR.   I tried factory resetting it, and nothing changed. So it's the hardware failing. I currently am using Twigby as my service provider. Cheapest I can get around here. But all their phones are carp.. https://www.twigby.com/shop/twigby-phones A friend warned me about the Moto G, as his neice has one, and isn't that good at $130. Also the Samsung A15 is laughable at best. Everything else is expensive af. I want android, (hate iOS) any version, that works with Twigby, under $100, please. Refurbished/Used is OK with me, as long as it isn't beat up.   If you know the IMEI number, you can see if it works with Twigby: https://www.twigby.com/page/byod
    • i not arguing that it isnt ######, only that it does support themes lol.
  • Recent Achievements

    • Week One Done
      StaticMatrix earned a badge
      Week One Done
    • Rookie
      lamborghiniv10 went up a rank
      Rookie
    • One Month Later
      pinnclepd earned a badge
      One Month Later
    • First Post
      X-No-file earned a badge
      First Post
    • One Month Later
      johnjacobb40 earned a badge
      One Month Later
  • Popular Contributors

    1. 1
      +primortal
      516
    2. 2
      PsYcHoKiLLa
      210
    3. 3
      +Edouard
      147
    4. 4
      Steven P.
      91
    5. 5
      ATLien_0
      82
  • Tell a friend

    Love Neowin? Tell a friend!