No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.
5 Posted Topics
Instead of this: if ( list1notSelected = false){ id = (String) jList1.getSelectedValue(); // caution or error whetever } Try this: if ( list1.isSelected()){ id = (String) jList1.getSelectedValue(); }
Basically you are trying to submit the employeeId from the frame1 which is being implemented in let's say *class Employee* to a frame2 which is let 's say being implemented in the *class User* So, what you should do is when you call the *class User*, you parse the text …
I think when you are trying to create a figure with the empty constructor(parameterless default constructor), but you are not setting its offset using the setOffset() method, below is the code of how you can create object using the default constructor or using the parameterless default constructor: public class FigureApp …
--The function should take as parameter the search value --then parsed as argument to the function such as below --Infact since there may be one or more group_id of that value, you should use RECORD such as below; CREATE OR REPLACE FUNCTION searchFunction(val TEXT)RETURNS TEXT AS $$ DECLARE searchRec RECORD; …
Hi, infact the path name should not contain back slash but forward slash, what i mean is / instead of \ try replace c:\fa\sdf\asdf\sfd\sadf\fsaf.txt with c:/fa/sdf/asdf/sfd/sadf/fsaf.txt
The End.
mehfooz