Forum: Java Jul 14th, 2008 |
| Replies: 4 Views: 458 http://www.justetc.net/knowledge/multimedia_training/displayArticle.php?table=TrainingVideos&articleID=1 |
Forum: Java Jul 13th, 2008 |
| Replies: 6 Views: 1,286 Several steps: one way:
Need to identify the card first
Need scanning device and analyze the acct number is right
then interface to type the pin
--
there should be a server program that can... |
Forum: Java Jul 13th, 2008 |
| Replies: 9 Views: 968 Ok you can try running javac command with a redirection to a file with > both in linux and windows
javac .......java > error.txt
If you use an editor the error list you can easily see after... |
Forum: Java Jul 13th, 2008 |
| Replies: 4 Views: 458 You can check a video tutorial from on creating java development enviornment - it covers basic to advanced... |
Forum: Java Jul 13th, 2008 |
| Replies: 10 Views: 977 Use an ArrayList or Vector [synchronized though] |
Forum: Java Jul 13th, 2008 |
| Replies: 4 Views: 698 You can an example:
http://www.dreamincode.net/forums/showtopic56030.htm
This may contribute to your conference centre |
Forum: Java Jul 13th, 2008 |
| Replies: 3 Views: 838 You should use classes for NumberFormat or DecimalFormat. You have to create an instance of these. then call the format method I guess with your number and format. Check the class references and... |
Forum: Java Jul 13th, 2008 |
| Replies: 4 Views: 1,956 Trying to answer quickly: I think you can write a class for Rectangle - what you define/mean for a rectangle---can write some methods to determine that it is a rectangle - check the length of the... |
Forum: IT Professionals' Lounge Jul 13th, 2008 |
| Replies: 0 Views: 544 Q1. I have a web-site on Business and Computer tutorials and video training. Until now, I am the only contributor. I want other industry/academic experts to contribute. How can I go for that?
Q2.... |
Forum: JSP Jul 8th, 2008 |
| Replies: 7 Views: 1,563 Or what you can do, if you know a RSS feed that provides, current stock price...you can parse that feed and collect your information.
You need to understand RSS feed format..and examine how that... |
Forum: Social Media and Online Communities Jul 6th, 2008 |
| Replies: 17 Views: 3,172 Some possible ways:
Use google webmaster tools to submit your sitemap , submit all urls
Submit to search engines in a regular basis
Update your contents regularly
Make your web-pages... |
Forum: JSP Jul 5th, 2008 |
| Replies: 7 Views: 1,563 Ok, For your problem
First you need a service who provide a directory/service/database for current stock market price.
Then you have to query it. You may need to register with the service... |
Forum: PHP Jul 5th, 2008 |
| Replies: 19 Views: 7,098 I think the update commands with three column update should work fine. But you can check what are the values you are supplying, what are the table column data type, check are you sending null values... |
Forum: JSP Jul 2nd, 2008 |
| Replies: 3 Views: 1,994 I saw many tutorials here with Read Me. I tried to do similar. Though wondering is it the right place or not? |
Forum: JSP Jul 1st, 2008 |
| Replies: 3 Views: 1,994 By Sayed, June 25th, 2008
* Single tier applications are easier to design. Single tier applications mix data, presentation, business logic altogether. It is easier design but workload... |
Forum: Java Jul 1st, 2008 |
| Replies: 15 Views: 2,204 Also check: reading from console is right:
Console c = System.console();
if (c == null) {
System.err.println("No console.");
System.exit(1);
}
... |
Forum: Java Jul 1st, 2008 |
| Replies: 15 Views: 2,204 You can try to use try/catch under your read function. and throw an exception when file not found. Like
Under read function
try{
String input = console.next();
FileReader reader =... |
Forum: JSP Jun 29th, 2008 |
| Replies: 0 Views: 1,217 Hello:
I was implementing payment processing through Moneris. I set some information in session variables. Then I go to moneris hosted page. After I come back from moneris, my session variable... |
Forum: JSP Jun 29th, 2008 |
| Replies: 1 Views: 1,010 Hello:
I was implementing payment processing through Moneris. I set some information in session variables. Then I go to moneris hosted page. After I come back from moneris, my session variable... |