No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.
4 Posted Topics
Re: [QUOTE=vyo_bog;1027540]do you know any method in which to draw hearts all over the screen in C++?..please help me..I want to make my bf a gift:P..thanks:D:)[/QUOTE] [CODE] #include <stdio.h> int main() { while(1) printf("%c",3); } [/CODE] | |
Re: Hy [B]hidash_in[/B] I didn't get the exact Idea what u wanna say. But as I understand, I think u want to open a file using Java code. I m trying to write a code, It works well on my PC, I hope it'll be useful for u. [CODE] public class … | |
Re: Here is another way to open folder or directory [CODE] String path = "C:\\"; // path to the directory to be opened File file = new File(path); Desktop desktop = Desktop.getDesktop(); try { desktop.open(file); } catch (IOException e){ } [/CODE] to use Desktop you must import [B]java.awt.Desktop[/B]. This method can … | |
Re: Actually there no ready maid method in Java to Pause the Thread directly by a single statement. So, we have to do this by applying some Logic. Here I apply that Run method chaked status of thread in every iteration of while loop untill all process has been completed And … |
The End.