-
Notifications
You must be signed in to change notification settings - Fork 16
Expand file tree
/
Copy pathFrmMedicines.java
More file actions
223 lines (207 loc) · 5.98 KB
/
FrmMedicines.java
File metadata and controls
223 lines (207 loc) · 5.98 KB
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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
package hms;
import javax.swing.*;
import javax.swing.table.*;
import java.awt.*;
import java.awt.event.*;
import java.sql.*;
class FrmMedicines extends JInternalFrame
{
/**
*
*/
private static final long serialVersionUID = 1L;
static FrmMedicines fm;
JTable jtb;
Object [][]data;
JScrollPane jsp;
String heads[]={"Medicine Id","Medicine Name","Category","Unit","Price"};
JPanel p1;
JButton btnAdd,btnUpdate,btnSearch,btnShowAll,btnDelete;
DConnection dc;
ResultSet rst;
static String query="";
JTableHeader header;
FrmMedicines(JDesktopPane jdp)
{
super("Medicines",true,true,true,true);
dc=new DConnection();
btnAdd=new JButton("Add");
btnUpdate=new JButton("Update");
btnSearch=new JButton("Search");
btnShowAll=new JButton("Show All");
btnDelete=new JButton("Delete");
p1=new JPanel();
p1.setLayout(new GridLayout(1,5));
fm=this;
btnAdd.setForeground(Color.white);
btnAdd.setBackground(Color.blue);
btnAdd.setFont(new Font(Font.SERIF,Font.ITALIC+Font.BOLD,20));
btnAdd.addActionListener(new ActionListener()
{
public void actionPerformed(ActionEvent ae)
{
FrmAddEditMedicine md=new FrmAddEditMedicine(true,"",fm);
jdp.add(md);
jdp.setComponentZOrder(md,0);
jdp.setComponentZOrder(fm,1);
}
});
btnUpdate.setForeground(Color.white);
btnUpdate.setBackground(Color.blue);
btnUpdate.setFont(new Font(Font.SERIF,Font.ITALIC+Font.BOLD,20));
btnUpdate.addActionListener(new ActionListener()
{
public void actionPerformed(ActionEvent ae)
{
int r=jtb.getSelectedRow();
if(r==-1)
{
JOptionPane.showMessageDialog(null,"No row selected");
}
else
{
String s1=(String)jtb.getValueAt(r,0);
FrmAddEditMedicine md=new FrmAddEditMedicine(false,"select * from medicine where md_id="+s1,fm);
jdp.add(md);
jdp.setComponentZOrder(md,0);
jdp.setComponentZOrder(fm,1);
}
}
});
btnSearch.setForeground(Color.white);
btnSearch.setBackground(new Color(128,0,255));
btnSearch.setFont(new Font(Font.SERIF,Font.ITALIC+Font.BOLD,20));
btnSearch.addActionListener(new ActionListener()
{
public void actionPerformed(ActionEvent ae)
{
query="";
FrmSearchMedicine md=new FrmSearchMedicine(fm);
jdp.add(md);
jdp.setComponentZOrder(md,0);
jdp.setComponentZOrder(fm,1);
}
});
btnShowAll.setForeground(Color.white);
btnShowAll.setBackground(new Color(128,0,255));
btnShowAll.setFont(new Font(Font.SERIF,Font.ITALIC+Font.BOLD,20));
btnShowAll.addActionListener(new ActionListener()
{
public void actionPerformed(ActionEvent ae)
{
query="";
reload();
}
});
btnDelete.setForeground(Color.white);
btnDelete.setBackground(Color.red);
btnDelete.setFont(new Font(Font.SERIF,Font.ITALIC+Font.BOLD,20));
btnDelete.addActionListener(new ActionListener()
{
public void actionPerformed(ActionEvent ae)
{
int r=jtb.getSelectedRow();
if(r==-1)
{
JOptionPane.showMessageDialog(null,"No row selected");
}
else
{
String s1=(String)jtb.getValueAt(r,0);
dc.executeOther("delete from medicine where md_id="+s1);
reload();
}
}
});
p1.add(btnAdd); p1.add(btnUpdate);
p1.add(btnSearch);p1.add(btnShowAll);p1.add(btnDelete);
add(p1,"South");
jtb=createJTable();
jtb.setRowHeight(25);
jtb.setRowMargin(5);
Dimension d1=new Dimension(5,5);
jtb.setIntercellSpacing(d1);
jtb.setGridColor(Color.black);
jtb.setShowGrid(true);
jtb.setForeground(Color.blue);
jtb.setBackground(new Color(255,255,255));
jtb.setFont(new Font(Font.SERIF,Font.BOLD+Font.ITALIC,15));
header=jtb.getTableHeader();
header.setForeground(Color.white);
header.setBackground(new Color(0,128,64));
header.setFont(new Font(Font.SERIF,Font.BOLD,17));
jtb.setSelectionForeground(Color.black);
jtb.setSelectionBackground(Color.orange);
jsp=new JScrollPane(jtb);
jsp.getViewport().setBackground(new Color(255,255,255));
add(jsp);
setSize(620,400);
setLocation(CommonMethods.getCenterPoint(getSize()));
setVisible(true);
}
void reload()
{
remove(jsp);
jtb=createJTable();
jtb.setRowHeight(25);
jtb.setRowMargin(5);
Dimension d1=new Dimension(5,5);
jtb.setIntercellSpacing(d1);
jtb.setGridColor(Color.black);
jtb.setShowGrid(true);
jtb.setForeground(Color.blue);
jtb.setBackground(new Color(255,255,255));
jtb.setFont(new Font(Font.SERIF,Font.BOLD+Font.ITALIC,15));
header=jtb.getTableHeader();
header.setForeground(Color.white);
header.setBackground(new Color(64,0,128));
header.setFont(new Font(Font.SERIF,Font.BOLD,17));
jtb.setSelectionForeground(Color.black);
jtb.setSelectionBackground(Color.orange);
jsp=new JScrollPane(jtb);
jsp.getViewport().setBackground(new Color(255,255,255));
add(jsp);
revalidate();
}
JTable createJTable()
{
try
{
if(query==null || "".equals(query))
rst=dc.executeQuery("Select count(*) from medicine");
else
rst=dc.executeQuery("Select count(*)" + query);
rst.next();
int n=rst.getInt(1);
if(n!=0)
{
if(query==null || "".equals(query))
rst=dc.executeQuery("Select * from medicine");
else
rst=dc.executeQuery("Select * "+query);
data=new Object[n][5];
int i=0;
while(rst.next())
{
data[i][0]=rst.getString(1);
data[i][1]=rst.getString(2);
data[i][2]=rst.getString(3);
data[i][3]=rst.getString(4);
data[i][4]=rst.getString(5);
i++;
}
dc.close();
}
else
{
data=new Object[0][4];
}
}
catch(SQLException e)
{
e.printStackTrace();
}
jtb=new JTable(data,heads);
return jtb;
}
}