₦airaland Forum

Welcome, Guest: RegisterLoginWith GoogleTrendingRecentNew

Stats: 3,330,999 members, 8,448,173 topics. Date: Sunday, 19 July 2026 at 09:51 PM

Toggle theme

Liliian's Posts

Nairaland ForumLiliian's ProfileLiliian's Posts

1 2 3 (of 3 pages)

ProgrammingRe: Mql4 Programming. Lets Meet Here.... by liliian(f): 1:26pm On Oct 25, 2015
TravelRe: Canadian Express Entry/federal Skilled Workers Program Connect Here by liliian(f): 1:25pm On Oct 25, 2015
mishooo:
My Aunt's grandchild.
i guess its the same as your explanation though, looking at it from another angle.
can you help me? https://www.nairaland.com/2685865/need-assignment-java-programming
ProgrammingRe: Any One Knows About C++ Builder? by liliian(f): 7:53pm On Oct 24, 2015
proxy20:
I am new in java Gui. why don't you ask the question on stackoverflow , there are world class programmers willing to answer your questions swiftly .
I did asked but i can't seem to put my code right.

here is the link:

http://stackoverflow.com/questions/ask?title=how+to+design+a+java+windows+interface+that+demonstrates+the+principles+of+concurrency%3f
ProgrammingRe: I Need Help In Java Programming. by liliian(op):
package supercat1;

import java.awt.*;
import java.awt.event.*;
import javax.swing.*; // Using Swing components and containers

// A Swing application extends javax.swing.JFrame
public class supercat1 extends JFrame {
private JTextField tfCount;
// Use Swing's JTextField instead of AWT's TextField
private int count = 0;

public supercat1 () {
// Get the content pane of top-level container Jframe
// Components are added onto content pane
Container cp = getContentPane();
cp.setLayout(new FlowLayout());

cp.add(new JLabel("Counter" ) ) ;
tfCount = new JTextField(count + "", 10);
tfCount.setEditable(false);
tfCount.setHorizontalAlignment(JTextField.RIGHT);
cp.add(tfCount);

JButton btnCount = new JButton("Count Up" ) ;
cp.add(btnCount);

JButton btnCountd = new JButton("Count Down" ) ;
cp.add(btnCountd);

JButton btnCounts = new JButton("Stop" ) ;
cp.add(btnCounts);
btnCount.addActionListener(new ActionListener() {
@Override
public void actionPerformed(ActionEvent e) {
++count;
tfCount.setText(count + "" );


}

});

setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
// Exit program if Jframe's close-window button clicked
setSize(300, 100);
setTitle("Supercat Counter" );
setVisible(true); // show it
}

public static void main(String[] args) {
// Recommended to run the GUI construction in
// Event Dispatching thread for thread-safet operations
SwingUtilities.invokeLater(new Runnable() {
@Override
public void run() {
new supercat1(); // Let the constructor does the job
}
});
}
}


This is what i have so far.I need the concurrency and another textfield.What i want top achieve is when i press count up,its start counting up and when i press count down,it starts counting down.then stop to stop the counting.

Can I get help?cc:pcguru1,timex4u,standing5
ProgrammingRe: I Need Help In Java Programming. by liliian(op): 6:13pm On Oct 24, 2015
pcguru1:
Writing this would be an issue for me because I have a full time job and many deadlines, however we can achieve this,

I will simply break the stages it's not as difficult per se, if you look at the issue individually

I think you should focus more first on the GUI as the concurrency part can be easily done, but the UI will require a lot of code. what do you have so far, open a github account and put what you have currently so any of us can pull and make commits. It's easier that way than for us to setup a whole project.

We can create a simple JFrame and make use of some Button and Text and Background just to satisfy the requirement of the course. all the best bro put it on Github and share the repo
Thank you,i am a lady cheesy.

I created a GUI with JLabel,JButton and JTextfield.i will put it up here.
ProgrammingRe: I Need Help In Java Programming. by liliian(op): 8:33pm On Oct 23, 2015
Standing5:
Example the guy gave lacks Multi-threading. Though he declared 'package Concurrency', he didn't demostrate multiple threads running simultaneously. How soon are you looking to have an answer? I asked b'cos i am having serious keyboard challenge with my laptop currently.
By the first week of november.

But the assignment is focusing more on concurrency in java swing,designing a java windows interface.
ProgrammingRe: I Need Help In Java Programming. by liliian(op): 7:43pm On Oct 23, 2015
Standing5:
The concurrency thing is not clear to me. Is it to perform multiple task of choice that will be initiated from the swing interface concurrently or some defined task? I think it revolves around java multi-threading and Swing GUI.
yes around that.Just like the example the other dude gave on this thread.
ProgrammingRe: I Need Help In Java Programming. by liliian(op): 7:41pm On Oct 23, 2015
Standing5:
As for background colour, do you mean the color of the main background should be changed from its default with another image/color? Also, by 'Layout', i believe you want one of the regular java swing layouts.
just a well planned layout,colour schemes and borders.Maybe color in the button or so.

bolded yes.
ProgrammingRe: Do Not Disturb A Programmer by liliian(f): 7:09pm On Oct 23, 2015
spikesC:
Na Glo, since I ported the number it has been misbehaving. Send a whatsapp message to it
Can you help me? https://www.nairaland.com/2685865/need-assignment-java-programming#39282992
ProgrammingRe: Become A Pro In Programming For Only N6000 by liliian(f): 7:06pm On Oct 23, 2015
HCpaul:
Ok! I have dicided to send the sturf to you for free.
Please help:https://www.nairaland.com/2685865/need-assignment-java-programming#39282992
ProgrammingRe: I Need Help In Java Programming. by liliian(op): 6:32pm On Oct 23, 2015
timex4u:
Well said, Posted that to show you there's someone who has a clue of what u want, and also for the codes to serve as a guide 4 u bin 4rm Java's doc. site.

You could pick the codes as a clue since you know quite well bout d assignment...

Can give you what you want exactly, without a dime, but nt urgently...
Okay,i sent you a mail.Talk to me there.
ProgrammingRe: C++ Programmers Help!!!!!!!!!!!!!!!!!!!!!!!! by liliian(f): 6:31pm On Oct 23, 2015
codemarshal08:
hmm........your program structure is making it hard for me to scan through. Anyways, i tried to reproduce the error but your code kept giving me multiple errors different from the one you posted here

Please are you sure you were able to pass the COMPILE stage to the RUN stage ?
Please i need help:https://www.nairaland.com/2685865/need-assignment-java-programming#39282992
ProgrammingRe: C++ Programmers Help!!!!!!!!!!!!!!!!!!!!!!!! by liliian(f): 6:31pm On Oct 23, 2015
WhiZTiM:
I glanced over your code and can see a bug with the second switch statement.

You are testing for roman.at(i + 1) under the premise that i < roman.size().... That's wrong cause when you reach the last element, i will go overboard. If you are ever testing i + x, then your condition should be i - x....
What i am saying is...

Your while loop should be

.....
while (i < roman.length() - 1){

.....
Please can i get help with this:https://www.nairaland.com/2685865/need-assignment-java-programming#39282992
ProgrammingRe: Association Of Programmers In Nigeria by liliian(f): 6:29pm On Oct 23, 2015
zubys19:
Hi guys,
Im IN! Love this.

Name: Zubairu Kasim
Location: Federal University of technology minna, Niger State
State of origin: Niger State
Designation: Programmer
Platform: Windows/Linux
E-mail: zubys4u@gmail.com
Mobile: 08064147473
Please check this :https://www.nairaland.com/2685865/need-assignment-java-programming#39282992
Certification And Training AdvertsRe: Programming Tutorials Training Videos Available by liliian(f): 6:28pm On Oct 23, 2015
EngrBouss:
All programming tutorials training videos and software available. You can contact me at 07087210933 or WhatsApp me @08093852664 for details. Cheers
Please help me:https://www.nairaland.com/2685865/need-assignment-java-programming#39282992
ProgrammingRe: I Want To Learn Programming. Which Language Should I Start With? by liliian(f): 6:27pm On Oct 23, 2015
xtremrules:
Visit sites like Github, CodePlex or [url=sourceforge.net]sourceforge.net[/url] and clone the repo or download. there are many others
Please i need help: https://www.nairaland.com/2685865/need-assignment-java-programming#39282992
ProgrammingRe: I Need Help In Java Programming. by liliian(op):
timex4u:
...
<xsl:template match="/">
<html>
<body>
<h1>Itinerary</h1><br />
<xsl:apply-templates/><br/>

</body>
</html>
</xsl:template>

<xsl:template match="env:Envelope/env:Body/p:itinerary/p:departure">
<p>
<xsl:apply-templates select="p:departing"/>
<xsl:apply-templates select="p:arriving"/>
<xsl:apply-templates select="p:departureDate"/>
</p>
</xsl:template>


<xsl:template match="p:departing">
Departure location:
<xsl:value-of select="."/>
</xsl:template>

<xsl:template match="p:arriving">
Arriving location:
<xsl:value-of select="."/>
</xsl:template>

<xsl:template match="p:departureDate">
Departure date:
<xsl:value-of select="."/>
</xsl:template>

</xsl:stylesheet>
ProgrammingI Need Help In Java Programming. by liliian(op):
Thanks.
ProgrammingRe: Any One Knows About C++ Builder? by liliian(f): 3:40pm On Oct 23, 2015
proxy20:
It is a good ide I hope to download it .u can create class and interface and code simple before going to advance coding. . pls refer any material on the use of c++ and how much is the cool software cost . because you can build apps across all platforms that makes it unique

https://www.youtube.com/watch?v=oKeXCOTOFFo&fulldescription=1&hl=en-GB&gl=NG&client=mv-google
I need help with my assignment.I am willing to pay if you can work it out for me.I did some coding but i need a more professional input to help me so that i can get great mark.Get back to me.thanks

1 2 3 (of 3 pages)