-
Gave Reputation to rproffitt in assignment purpose
@johh_165. I've seen folk just dump their code without telling where the error is. When I have an issue I narrow it down to the line that is giving me … -
Replied To a Post in assignment purpose
Please post the code you have tried -
Began Watching assignment purpose
Write a program to read 50 students’ marks, calculate and print the number of students who succeed and the number of students who failed (any marks below 40 should be … -
Replied To a Post in So when I hover over the user
> What link was broken? The post from OP https://i.imgur.com/eTuYaZf.png -
Replied To a Post in So when I hover over the user
Link was broken -
Began Watching So when I hover over the user
I'm at https://www.daniweb.com/articles/latest/unanswered and when I mouse over the poster's gravatar or icon, all pop up with "First Post by" and the menber name. OK, that's all well and good … -
Replied To a Post in How to program credit card swipe in winform ?
Perhaps it is ISO 8583 message? -
Began Watching How to program credit card swipe in winform ?
I see the software to charge credit card swipe, samsung pay, ... I want to find out how the swipe card works and write code to get payment information in … -
Gave Reputation to jkon in Nice Interface
Yes with copy paste works , but doesn't say who you are quoting , wouldn't a quote and reply (or just reply) button at the bottom of each reply would … -
Gave Reputation to jkon in Nice Interface
Yes with copy paste works , but doesn't say who you are quoting , wouldn't a quote and reply (or just reply) button at the bottom of each reply would … -
Replied To a Post in Nice Interface
Worked! Thanks -
Replied To a Post in Nice Interface
> It collapses now :) No, it still there after user reply. -
Endorsed JamesCherrill
-
Replied To a Post in DaniWeb: The Next Generation
Hope the traffic will increase after this ! -
Began Watching DaniWeb: The Next Generation
Huge congrats Dani, the new DaniWeb is not only looking slick and on-trend but actually *feeling* so much better to use, more powerful and more professional. I'm loving it so … -
Marked Solved Status for Nice Interface
First of all, I would like to say that the interface is nice, amazing, and user friendly!! Thanks Dani and those who work hard on this !!! But one thing … -
Gave Reputation to Dani in Nice Interface
OK, then what you're experiencing is the intended design. I'll wait for more feedback to see if it should be closed automatically. -
Replied To a Post in Nice Interface
Yes, it can :) -
Replied To a Post in Nice Interface
I thought it will automatic minimize once we posted a reply instead of manual to minimize it. -
Replied To a Post in Nice Interface
But it is covering up the post.... -
Gave Reputation to Dani in Nice Interface
No, it's just supposed to hang out at the bottom of the page (and not cover up any posts). -
Replied To a Post in Nice Interface
It suppose to go down after we post a reply, no ? -
Replied To a Post in Nice Interface
After I reply a topic, the **Reply to this Topic** not going down. -
Gave Reputation to Dani in Nice Interface
All fixed. Thanks for the catch! -
Replied To a Post in Nice Interface
> To clarify ... you click the thumbs up link in the bottom left corner of a post and a whole new page loads?? No. There are no problem in … -
Marked Solved Status for Java 11 now available for download
The API docs are now found at [ Java Development Kit Version 11 API Specification](https://docs.oracle.com/en/java/javase/11/docs/api/) -
Revoked Solved Status for Java 11 now available for download
The API docs are now found at [ Java Development Kit Version 11 API Specification](https://docs.oracle.com/en/java/javase/11/docs/api/) -
Marked Solved Status for Java 11 now available for download
The API docs are now found at [ Java Development Kit Version 11 API Specification](https://docs.oracle.com/en/java/javase/11/docs/api/) -
Edited Nice Interface
First of all, I would like to say that the interface is nice, amazing, and user friendly!! Thanks Dani and those who work hard on this !!! But one thing … -
Created Nice Interface
First of all, I would like to say that the interface is nice, amazing, and user friendly!! Thanks Dani and those who work hard on this !!! But one thing … -
Began Watching Nice Interface
First of all, I would like to say that the interface is nice, amazing, and user friendly!! Thanks Dani and those who work hard on this !!! But one thing … -
Replied To a Post in Biggest DaniWeb pain points
Oh, thanks @happygeek -
Replied To a Post in Biggest DaniWeb pain points
In programming section, java can be found in Software Development, Mobile Development and Computer Science. Why we need three java as they refer to same thing ? -
Began Watching Biggest DaniWeb pain points
I'm trying to save DaniWeb. :) What are the biggest pain points you have with DaniWeb? If you don't visit DaniWeb as much as you used to, what changed? Where … -
Edited Java 11 now available for download
The API docs are now found at [ Java Development Kit Version 11 API Specification](https://docs.oracle.com/en/java/javase/11/docs/api/) -
Edited Java 11 now available for download
The API docs are now found at [ Java Development Kit Version 11 API Specification](https://docs.oracle.com/en/java/javase/11/docs/api/) -
Created Java 11 now available for download
The API docs are now found at [ Java Development Kit Version 11 API Specification](https://docs.oracle.com/en/java/javase/11/docs/api/) -
Began Watching Java 11 now available for download
The API docs are now found at [ Java Development Kit Version 11 API Specification](https://docs.oracle.com/en/java/javase/11/docs/api/) -
Marked Solved Status for Display minimum value that is not in array
Question from codility test Write a function: class Solution { public int solution(int[] A); } that, given an array A of N integers, returns the smallest positive integer (greater than … -
Replied To a Post in I keep getting this illegal start of expression and can't figure out why.
This is java code. -
Began Watching I keep getting this illegal start of expression and can't figure out why.
public class Gradesv2 { public static void main(String[ ] args) { //local variables int numTests = 0; //counts number of tests int testgGrades = 0; //individual test grade int totalPoints … -
Replied To a Post in New Member Introduction
How to become moderator or admin ? -
Replied To a Post in New Member Introduction
> New huh? Then how do you explain the numerous other postings by you, from the exact same IP address.... How to check OP's ip address ? -
Began Watching New Member Introduction
Hi everyone, I am a new member in this forum and this is my first post in it. -
Marked Solved Status for Error in setValueAt JTable Java
I have multiple JSpinner which have items 1-10 , and one JTable. When the JSpinner is clicked, the value will be added to JTable. I want to get the row … -
Replied To a Post in Display minimum value that is not in array
Thanks James class Solution { public int solution(int[] A) { int n = 0; while (contains(A, ++n)) ; return n; } public static boolean contains(int[] arr, int item) { for … -
Replied To a Post in DaniWeb suggestion
Thanks Dani -
Replied To a Post in DaniWeb suggestion
Can't wait to see the new version !!! -
Replied To a Post in Display minimum value that is not in array
Did the above code will find minimum value in array A ? -
Replied To a Post in Display minimum value that is not in array
Where should I put the do/while loop ?
The End.