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.

3 Endorsements
Ranked #487
Ranked #31.8K
Ranked #3K
~2K People Reached
This member's community profile is only visible to logged in members until they have earned 15 reputation points.
Favorite Forums

5 Posted Topics

Member Avatar for prnjn

Instead of this: if ( list1notSelected = false){ id = (String) jList1.getSelectedValue(); // caution or error whetever } Try this: if ( list1.isSelected()){ id = (String) jList1.getSelectedValue(); }

Member Avatar for prnjn
0
748
Member Avatar for prnjn

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 …

Member Avatar for mehfooz
0
266
Member Avatar for MSheraz

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 …

Member Avatar for JamesCherrill
0
202
Member Avatar for danielsikes

--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; …

Member Avatar for mehfooz
0
188
Member Avatar for bsabowala

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

Member Avatar for Patil Raj
0
169

The End.