Welcome, Guest: Register On Nairaland / LOGIN! / Trending / Recent / NewStats: 3,227,526 members, 8,070,659 topics. Date: Wednesday, 05 February 2025 at 07:48 AM |
Nairaland Forum / Segsalerty's Profile / Segsalerty's Posts
(1) (2) (3) (4) (5) (6) (7) (8) (9) (10) (11) (of 26 pages)
Programming / Re: Help On Java by segsalerty(m): 3:10pm On Apr 27, 2011 |
Thats the modules logic my friend, It depends on ur class structure and how u implementing it. Try to fix it, if u cant, zip all ur src codes and send to my mail : segsalerty@yahoo.com |
Programming / Re: Help On Java by segsalerty(m): 1:54am On Apr 27, 2011 |
Dolemite: u got this wrong use this
ur coding logic is kinda poor, are u copying/modifying any code there? |
Programming / Re: Help On Java by segsalerty(m): 1:43am On Apr 27, 2011 |
Dolemite:works ? u welcome thou |
Programming / Re: Help On Java by segsalerty(m): 1:35am On Apr 27, 2011 |
Dolemite: are u female? if(true) 1 million times coz we have few female java programmers. Sure, u can remove a Passanger by saying
including the function above can do it , it will remove the passanger from the ArrayList of u provide the passanger name on the list ! Hope this helps ? |
Programming / Re: Keeping Only The Jbuttons In A Selected Row Active In A 2d Array by segsalerty(m): 11:37pm On Apr 26, 2011 |
csharpjava: cant understand u , can u make urself clearer? |
Programming / Re: Help On Java by segsalerty(m): 11:30pm On Apr 26, 2011 |
ur Passangers class shld be Okay ! this concept should work out in ur Booking class as follows
Hope this helps |
Software/Programmer Market / Re: Need Php Programmers @ Ololufe.com by segsalerty(m): 9:34pm On Apr 25, 2011 |
whats the mode of work and payment ? You need someone to hire or Staff ? or Work now and we will pay u later? |
Programming / Re: Keeping Only The Jbuttons In A Selected Row Active In A 2d Array by segsalerty(m): 3:49pm On Apr 24, 2011 |
csharpjava: u re so much welcome bro All the best |
Programming / Re: Programming Projects (individual) by segsalerty(m): 5:53am On Apr 24, 2011 |
Nice one , How i wish i could participate in this but, sucks , i havent touched my Oracle JAVA CX-310-252A Assignment for more than 3wks now that i've downloaded it (well, i have still got 11months ) But, I Encourage my fellow mates in Programming on here to seize this opportunity in improving in there skills! @Poster, Why cant u atleast post some of these projects so that people can start working. and if anyone is stucked with problem, u can advice to seek assistance here. Let people understand the aim of this is not to mock or bulshit anybody thats trying to get beta with this freaking programming skill. But, this is an opportunity to be personally more friendly with Programming as a whole. All the Best ! |
Programming / Re: Programming Projects (individual) by segsalerty(m): 4:05am On Apr 24, 2011 |
Programming / Re: Keeping Only The Jbuttons In A Selected Row Active In A 2d Array by segsalerty(m): 3:24am On Apr 24, 2011 |
Fayimora: Excellent , making 2 ways of solving this problem for our brother in Programming. lets see, we've still got 999 more ways of solving this problem ! let him try and show us his coding approach on here ! I think there is more sense in ur idea of Helping people with problems they've got on here. if at all there is gonna be need for Helper to show sample, it shouldnt be pointing to the Result Gan Gan (It will so much help the Helpee ), abi what do u think ? |
Programming / Re: Keeping Only The Jbuttons In A Selected Row Active In A 2d Array by segsalerty(m): 2:57am On Apr 24, 2011 |
csharpjava:Sorry to say , nothing is too/very complex in programming (Just make ur approach simple as possible --- as if its sand play ), the solution i gave u is damn gonna solve the problem u have at hand, just wana get it twisted for u so that u can show how much u are gonna learn solving this problem. ******this is one of the 1,001 ways of solving the problem, this is quite very very simple, nothing is complex, okay ? just study it and imagine how local i took the problem before solving it this way. I inlcuded a new method as follows private void disableAll_andEnableBack_in10_Seconds(final int r, final int colCount){ SwingUtilities.invokeLater(new Runnable(){ public void run(){ final int count = 10; for(int i = 0; i < buttons.length; i++){ for(int j = 0; j < buttons[i].length; j++){ buttons[i][j].setEnabled(false); } } for(int x = 0; x < colCount; x++){ buttons[r][x].setEnabled(true); } t = new Timer(1000, new java.awt.event.ActionListener() { int c = 0; public void actionPerformed(java.awt.event.ActionEvent e) { if(c >= count){ for(int i = 0; i < buttons.length; i++){ for(int j = 0; j < buttons[i].length; j++){ buttons[i][j].setEnabled(true); } } t.stop(); } c++; } }); if(!t.isRunning()){ t.start(); } } }); } ******and i modified this existing function body to do like this -> private void loadAction(final int r, final int k, final int colCount){ buttons[r][k].addActionListener(new java.awt.event.ActionListener(){ public void actionPerformed(java.awt.event.ActionEvent e){ disableAll_andEnableBack_in10_Seconds(r, colCount); } }); } ********Note: i introduced a new global variable private Timer t; so that i can track the timer instance and not abuse it in the program, a timer must stop before another u grab? I attached the new full length of code, just download and re-run it , then, do urs in ur own way Hope this Helps ? Fayimora: Please, u dnt have to talk that way to him, U shld beta have helped him more if ur pseudo-code couldnt help him I guess u were the one that even mentioned about codes provided on problems posted on NAiraland , anywayz, u should have tried beta helping him ! Nobody knows all or is beta or perfect, if someone finds what is so simple for u to solve tasking sometimes doesnt mean the person is OLODO! okay? Thanks for the understanding !
|
Programming / Re: Keeping Only The Jbuttons In A Selected Row Active In A 2d Array by segsalerty(m): 9:34pm On Apr 23, 2011 |
Yeah , u re so much welcome, Someone post here on facebook abt posting codes as a solution to people's problem that we only need to assist not SOLVE Thats why i did what i did with the code i posted and i hope it will help u in solving your problem ! |
Programming / Re: Keeping Only The Jbuttons In A Selected Row Active In A 2d Array by segsalerty(m): 8:33am On Apr 23, 2011 |
U knw one funny thing? i have improved in the way i help dudes here , We need to do this together and help ourselves , i just helped u with smth that should guide u in solving your real problem, all u need to do is understand my code( oh sorry, i dnt like comments coz i expect anyone to be able to read and interprete my codes ) , Codes below attached try compile and run it You didnt even tell us the laguage u want it solved in , well, this is JAVA !
|
Software/Programmer Market / Re: Php Developers Required by segsalerty(m): 3:02am On Apr 22, 2011 |
Programming / Re: Please Read by segsalerty(m): 10:38pm On Apr 18, 2011 |
Fayimora: i dey here for that ! |
Programming / Re: Help On Java by segsalerty(m): 10:00pm On Apr 17, 2011 |
Dolemite: so sorry , I dnt have idea beyond the fence of JAVA SE for Desktop Application using JAVA Technology, cant really help with u question, and i dnt play GAMES also , i am not a GAME HOLIC |
Programming / Re: Help On Java by segsalerty(m): 9:27pm On Apr 16, 2011 |
Derenle: sorry, this topic isnt for c++ solution, create a new thread and let me see if i can help before someone else does |
Programming / Re: Help On Java by segsalerty(m): 9:24pm On Apr 13, 2011 |
sonymax: Google will help out ! |
Programming / Re: How To Use Div? by segsalerty(m): 10:59pm On Apr 12, 2011 |
put ur email address here, i have a book for u that i can send to ur inbox! |
Programming / Re: C++ by segsalerty(m): 9:57pm On Apr 11, 2011 |
oguntadej: cool |
Programming / Re: Help On Java by segsalerty(m): 10:03pm On Apr 10, 2011 |
Otuabaroku: Bleep NETBEANS IDE, it has been Building wrong .jar files for me for over a month now, thats why the thing didnt run whenever i redistribute its generated .jar file. shit, i was only testing the stuff with the 'run' button on the IDE, just figured the problem out, will send u a new link when everything if fixed, i just un-installed and re-installed a beta version of the IDE, hope it works fine this time, later sorry for the inconviniency |
Programming / Re: Help On Java by segsalerty(m): 9:54pm On Apr 09, 2011 |
prodam: Good to hear that buddy ! |
Programming / Re: Help On Java by segsalerty(m): 9:24pm On Apr 09, 2011 |
prodam: sure dude, u can ! just do well in undertstanding the basics and practice DOMS, u can then be satified ! engrkunlex: u are so much welcome! |
Programming / Re: Help On Java by segsalerty(m): 1:05am On Apr 09, 2011 |
lolade123: Nice one , so, Deitel Deitel now have 8th Edition, uhmm, am out-dated ooo ! lolade123:u are so much welcome anytime, good to hear ur lappy is back to life and my solutions are useful , i just sent u an email , |
Programming / Re: Help On Java by segsalerty(m): 12:39am On Apr 09, 2011 |
lolade123: i really love this lolade123 , u just embacked on the way forward ! @engrkunlex. U see the spirit in those that code java? Its Open, sometimes (Open Source) our Knowledge is to build a beta would for software development. You will enjoy this much more than other lang ! |
Programming / Re: Help On Java by segsalerty(m): 10:10pm On Apr 08, 2011 |
engrkunlex:okay , i accepted u on FB now ! |
Programming / Re: Help On Java by segsalerty(m): 9:36pm On Apr 08, 2011 |
Otuabaroku: Oh, i see, sorry abt that, Found the bug here, Thats why ITS GOOD to test the app by diff people i diff env, the problem is technical, has to do with the RMI, dnt worry, am gonna upload a new Admin which will support online UPDATE. so that corrections can be by users anytime. engrkunlex: you ar wlcome Mr kunle , just started with java basic, GOOGLE will help u alot with it. Throw any question here is nothing isnt clear to u or u need any solution to problems u encounter |
Programming / Re: Help On Java by segsalerty(m): 7:28pm On Apr 07, 2011 |
Otuabaroku: did u launch the admin UI before launching the client? try running it from the 'cmd' and tell me the error message printed out to u so that i can tell u what to do |
Programming / Re: Programmers In Da Builing Pls Resue Me by segsalerty(m): 7:22pm On Apr 07, 2011 |
start learning the basis and let the programming flow in ur blood stream |
Programming / Re: C++ Compiling Error by segsalerty(m): 11:56pm On Apr 06, 2011 |
sweet-pawn: i see , |
(1) (2) (3) (4) (5) (6) (7) (8) (9) (10) (11) (of 26 pages)
(Go Up)
Sections: politics (1) business autos (1) jobs (1) career education (1) romance computers phones travel sports fashion health religion celebs tv-movies music-radio literature webmasters programming techmarket Links: (1) (2) (3) (4) (5) (6) (7) (8) (9) (10) Nairaland - Copyright © 2005 - 2025 Oluwaseun Osewa. All rights reserved. See How To Advertise. 54 |