- Upvotes Received
- 1
- Posts with Upvotes
- 1
- Upvoting Members
- 1
- Downvotes Received
- 0
- Posts with Downvotes
- 0
- Downvoting Members
- 0
14 Posted Topics
Hi there, I have a wireless modem, I use MAC address filter.  I wonder that, as the attached file show, i can add only 8 MAC address? How to add more? | |
Hi every1 I am building a website using wordpress, can you show me how to create a form that allow visitor register to join a class or something like that? Thanks you much! :) | |
Hi mate, I am doing a mini program in java that let us look up word as a dictionary. I tended to use database to store words and their meanings, but my teacher suggested me using file (or xml). I chose using file (write a vector to file). Can u … | |
Re: Hi, i think you can use Scanner to read from file. Scanner has a method 'readLine()' that reads line by line. Each time you read a line, assume that you assign that value to a variable named 'strtmp', then you use 'split()' method. Eg: strtmp = scan.readLine(); State = strtmp.split(','); … | |
Hi every one! In localhost, my site can send email easily (using smtp and phpmailer) but when i upload my codes to oni.cc, that feature does not work at all! Should i config some things or did i do something wrong? | |
Hi every1 I am new to CSS and I want to use CSS to format my website.(i use Dreamweaver to create my site) There are many free css template on the Internet but it's difficult to understand them. My question is: do you know some website provide free SIMPLE css … | |
Re: Hi, i can say that: the objects are in the heaven! :D 'cause you had just described your class, you didn't declare any object! Anyway, if you add this code: [CODE]A myA = new A();[/CODE] then myA will be stored in memory, be processed ...and when you exit your program, … | |
Re: Why did u utilize the 2nd Array? To solve this,it's quite simple, in your for loop, when you enter the value no-i, you just check if that value equals to any value from 0 to (i-1) or not! The algorithm here is: for(i = 0 to arr.length) do { while(value_entered … | |
Re: I do not understand what you mean!! Look at your code, clearly that your function (a recursion) do not show us which num is the largest Fibonacci number! As i know, there doesnt exist fibo(-1), but your code says there exists! :-?? | |
Re: This is my opinion: "programing"-who made this thread- want check if one number is palindrome or not! And, by using equals() method we cant solve with large number that have 50 digits or more! We may treat input as a string, and it's not difficult to determine that string is … | |
Re: [QUOTE]int largest = 0, largest2 = 0; [/QUOTE] Why did you initiate largest = 0 and largest2 = 0? What will happen if every elements of your array is less than 0? I solved this exercise by doing this: 1) let largest and largest2 = data[0] 2) use for loop, … | |
Re: Agree with NormR1! Also, doing this will get the same result: Create a class that implements ActionListener interface, we will override the method actionPerformed(evt), inside the actionPerformed method, we use evt.getSource() and compare it to several buttons. --- Songokute | |
Re: Hi Zach! I found out some mistakes in your code! First, plz review your code: [code] while (!stop) System.out.print("Enter Employee's name or stop to exit program:"); String empName = input.nextLine(); if ( empName.equals ("stop")) { System.out.println("Program Exited"); stop = true; int number1;// hourly rate int number2;// total hours int sum;// … | |
Hi all, I'v just installed SQLServer 2008 RC and concurrently it installed Visual Studio 2008 automaticlly. But I got a problem, when I creat a new project in Visual Studio 2k8, there were only 2 Project types : "Business Intelligence projects" and "Visual Studio Solutions". It's different to what I … |
The End.