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
~720 People Reached
Favorite Forums
Favorite Tags
Member Avatar for lo0lo0999

Hi everyone I want some help in my paint application, I am using pictuerbox to draw on it but in the last day my requirement is change that the user want to open an image and do all the functionality on it.. I try to open an image but when …

Member Avatar for tinstaafl
0
113
Member Avatar for lo0lo0999

import java.awt.*; import java.awt.event.*; import javax.swing.*; public class Bank1 extends JFrame { private JLabel l1; private JLabel l2; private JTextField t1; private JPasswordField p1; private JButton b1; public Bank1() { super("Bank System"); Container container = getContentPane(); container.setLayout(new FlowLayout()); l1=new JLabel(" ID :- "); container.add(l1); t1=new JTextField(25); container.add(t1); l2=new JLabel(" Password …

Member Avatar for mKorbel
0
210
Member Avatar for lo0lo0999

Now I'am using Microsoft Visual Studio to compile this program in C++ but when I compile it I have so many 00000 with no end for this procces.. [CODE]# include<iostream> using namespace std; # define SIZE 5 class queue { private: int a[SIZE]; int front; int rear; public: queue(); ~queue(); …

Member Avatar for lo0lo0999
0
300
Member Avatar for lo0lo0999

/* I write this pro in single linked list useing stuck how i convert it to class.. #include <cstdlib> #include <iostream> #include <string> #include <sstream> using namespace std; struct studentinfo { string FName; string LName; int no; int age; struct studentinfo *next; } *head=NULL; void add_studentinfo(int s); void print_list(); int …

Member Avatar for thines01
0
97