Posts
 
Reputation
Joined
Last Seen
0 Reputation Points
Unknown Quality Score

No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.

0 Endorsements
Ranked #37.0K
~9K People Reached
Favorite Forums
Favorite Tags

4 Posted Topics

Member Avatar for kgz

[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]

Member Avatar for Fuseteam
1
5K
Member Avatar for hidash_in

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 …

Member Avatar for Ezzaral
0
300
Member Avatar for JohnPhilipps

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 …

Member Avatar for ankurgecr
0
2K
Member Avatar for esy928

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 …

Member Avatar for NormR1
0
2K

The End.