-
Notifications
You must be signed in to change notification settings - Fork 1
/
About.java
73 lines (55 loc) · 1.98 KB
/
About.java
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
import javax.swing.*;
import java.awt.*;
class About extends JFrame
{
JFrame jf;
JLabel l1,l2,l3,l4,l5,l6,l7;
JButton b1,b2,b3;
About()
{
jf=new JFrame();
jf.setLayout(null);
l1 = new JLabel("Medical Stock Manangement System");
l1.setFont(new Font("Times New Roman",Font.BOLD,25));
l1.setBounds(200,30,600,40);l1.setForeground(Color.blue);
jf.add(l1);
l2 = new JLabel("This System developed by,");
//l2.setFont(new Font("Times New Roman",Font.BOLD,20));
l2.setBounds(100,150,600,40);
jf.add(l2);
l3 = new JLabel("Mr.Putta Ganesh Reddy");
l3.setFont(new Font("Times New Roman",Font.BOLD,18));
l3.setBounds(300,200,400,40);l3.setForeground(Color.red);
jf.add(l3);
l3 = new JLabel("Mr.Naga Anvesh Kunguthala");
l3.setFont(new Font("Times New Roman",Font.BOLD,18));
l3.setBounds(300,200,300,80);l3.setForeground(Color.red);
jf.add(l3);
l4 = new JLabel("Under the guidance of Mr.T.K.Balaji sir");
l4.setFont(new Font("Times New Roman",Font.BOLD,24));l4.setForeground(Color.red);
l4.setBounds(100,270,800,120);
jf.add(l4);
l5 = new JLabel("In this system we can add details of Medicines,Suppliers.");
//l5.setFont(new Font("Times New Roman",Font.BOLD,20));
l5.setBounds(100,350,800,100);
jf.add(l5);
l6 = new JLabel("We can also upadte,delete & search the existing details.");
//l6.setFont(new Font("Times New Roman",Font.BOLD,20));
l6.setBounds(100,400,800,70);
jf.add(l6);
l7 = new JLabel("It is helpfull for stock of Medicine & where we placed the medicine in store.");
//l7.setFont(new Font("Times New Roman",Font.BOLD,20));
l7.setBounds(100,450,800,70);
jf.add(l7);
jf.setTitle("About System");
jf.setSize(900,700);
jf.setLocation(20,20);
jf.setResizable(false);
jf.getContentPane().setBackground(Color.cyan);
jf.setVisible(true);
}
public static void main(String args[])
{
new About();
}
}