Posts
 
Reputation
Joined
Last Seen
0 Reputation Points
0% Quality Score
Upvotes Received
0
Posts with Upvotes
0
Upvoting Members
0
Downvotes Received
6
Posts with Downvotes
2
Downvoting Members
6
0 Endorsements

27 Posted Topics

Member Avatar for prakash2813

Hello everyone. I have been trying to get desired output since last 4 days and so far very near to it. I am really stucked in the logic. Please help me or help me in writing proper logic. Open the attached zip file for whole eclipse project. No need to …

Member Avatar for jwenting
-4
458
Member Avatar for prakash2813

Hi there, I have a class definition like : class Student{ String name; int sub1; int sub2; int sub3; //... } I have list of all students. I want to get count, average, min, max etc using IntSummaryStatistics. Below is the code for sub1: IntSummaryStatistics sub1Summary = students.stream().collect(Collectors.summarizingInt(s -> s.sub1)); …

Member Avatar for prakash2813
0
284
Member Avatar for prakash2813

Hello there, I am writing a data structure and restricted not to use any API or collection. I have written a Sorted Linkedlist, which stores strings in ascending order. Basically I am writing a dictionary, which can be easier to implement by Map, HashMap or Dictionary provided by Collection API, …

Member Avatar for rubberman
0
301
Member Avatar for prakash2813

I have working struts1 dispatch action and a form having two submit buttons which have parameter and value which calls method name with value. Well there is no problem. But when clicking on delete button, I want to confirm with bootstrap dialog. $('.btnDelete').on('click', function(e){ var $form=$(this).closest('form'); e.preventDefault(); $('#confirm').modal({ backdrop: 'static', …

Member Avatar for prakash2813
0
461
Member Avatar for prakash2813

Hello, please check the attachment for details. What i need is : The sum of all the full_trade_amount for that route The list of routes that share a customer with that route The number customers shared with that route The number of columns with data can vary so a route …

Member Avatar for lukerobi
-2
176
Member Avatar for prakash2813

Hello all, I am trying to implement memento design pattern in my project to add and remove products from cart. I have abstract product class and sub classes like Book, Software, Phones etc.. I googled and found some examples using three classes : 1) Memento 2) Originator 3) Caretaker I …

Member Avatar for JamesCherrill
0
351
Member Avatar for prakash2813

Hello all, I need help with creating grammer for Antlr that would find class, variables, methods and relationship like is-a and has-a that would be later used for generating UML class diagram. Thanks in advanced.

0
134
Member Avatar for prakash2813

Hello, I am evaluating a string expression using recursion. It is not working for parenthesis, please help me. Here is my code // For Addition and Substraction static int evalAS(String e) { int p1 = e.lastIndexOf("+"); int p2 = e.lastIndexOf("-"); int p = Math.max(p1, p2); if (p == -1) return …

Member Avatar for stultuske
0
326
Member Avatar for Vandithar

First download and Install TC self-extractor from internet, it will extract all the files to c:\tc Now if u are running win 7 , then 1'st way : goto device manager -> Display adapter , now disable display adapter,so it will be 16 bit..now u can run tc in fullscreen …

Member Avatar for maha harshini
0
439
Member Avatar for prakash2813

There is a String object called detailMessage in java.lang.Throwable class, which says the reason of any exception thrown in java code. This object is initialized through a constructor using super(string message) statement or setter or whatever from subclasses like Exception and again from its subclasses like SQLException. When SQLException is …

Member Avatar for JeffGrigg
0
207
Member Avatar for prakash2813

Hello friends. I found something new today. I was merging some photos (jpeg file) to a pdf file (By Adobe acrobat writer). There were two photos, one of which i had created from existing pdf page and another was my regular image. The height and width of both file was …

0
83
Member Avatar for prakash2813

Hello friends. I am having problem with displaying japanese characters into eclipse console. I use eclipse IDE. And I have two properties files. one for default english text, and second has japanese text. which is not correctly displayed when normally opened. I have used ResourceBuilder and Locale class (JDK 6 …

Member Avatar for prakash2813
0
352
Member Avatar for prakash2813

yesterday my pc or tv won't start due to low voltage power problem.. after fixing it..my pc start and this error occurred "disk read error occured. press alt ctrl del to restart.". i have tried almost everything : (1)from window instl. disk cmds like chkdsk fixmbr fixboot but says invalid …

Member Avatar for rubberman
0
371
Member Avatar for prakash2813

Hi everyone... Before a week my pc worked fine...but after some days when i started, it didn't work..so i repaired from shop... The problem is that it shows 800 x 600 disabled resolution..so i can't change it... My PC confg is : Win 7 32bit 1 gb ram Intel Pentium …

Member Avatar for Rik_
0
196
Member Avatar for prakash2813

Hi..Everyone... you know case statement very well... case $var in op1)... op2)... esac The problem is ,,, how can i specify the less than , greater than condition in case statement???????? case $var in -gt 100).... esac ..is not working...

Member Avatar for Watael
0
79
Member Avatar for prakash2813

hi friends... The following code is for getting tables list from specific database from MySql... =================================================================== #include <windows.h> #include <iostream> #include <mysql/mysql.h> using namespace std; int main() { //connection params char *host = "localhost"; char *user = "root"; char *pass = ""; char *db = "prakash"; //sock MYSQL *sock; sock …

0
134
Member Avatar for prakash2813

Hi friends... I have nokia 5233 with symbian OS and GPS system.. I want to do is that the GPS information from the mobile via internet should go to my site (whatever the site)... Please guide me..

Member Avatar for peter_budo
0
113
Member Avatar for Ararat

store user input in string variable... and check every character of string.. for example if user enters "EXIT" ( without quotes) then char *str will be "EXIT"; now, if(strlen(str)==4 && str[0]=='E' && str[1]=='X' && str[2]=='I' && str[3]=='T') { ///// code } i tried and it works.......

Member Avatar for prakash2813
0
1K
Member Avatar for prakash2813

hi...friends.... My PC is suffrng frm a dngrs stuation...... I've instld Win 7 Ultimt. 1GB Ram,Intel Dual 2.GHz At system strting , It wrks fine...But after 5 min it hngs up.... explorer.exe and dwm.exe uses upto 100% cpu...... and nw prcs like winamp,wmp..etc als take 50-60 cpu........ Everythng goes dwn....refresng …

Member Avatar for jingda
0
222
Member Avatar for prakash2813

Hi.....Friends.... I changd default security code of 7210 abt 2 mnth ago... I forgot that security code... My problem is ,,,is there any way to retrieve the security code through running any jar file...

Member Avatar for abelLazm
0
63
Member Avatar for prakash2813

Hi...Friends... I have posted a threads about the custom window in C#... But WPF is a better way to create a custom window..... I don't want to the basic wpf procedures...I just want to know the steps to create a custom window in WPF..or if u have any direct link …

Member Avatar for CloneXpert
0
116
Member Avatar for prakash2813

Hi Friends............... I want to change the font color and font type(font-face) of title bar text in C# windows form..... Please help me.....

Member Avatar for Member #788144
0
982
Member Avatar for prakash2813

Hi Friends..... I want to add the new control like button to the C# Windows form title bar control box as u can see in IDM (Internet Download Manager)...

Member Avatar for Momerath
0
79
Member Avatar for prakash2813

After installing the VS 2008 , i created projects both console and windows forms....and also had run successfully........... The problem is ..when i restarted my pc...and try to run that projects again......and also created new projects and had run....the following error message occurs...... ========================================================================================= Error while trying run project : …

Member Avatar for alc6379
0
188
Member Avatar for rahullao

Hey Rahul....... The button you have created does not contain any external resources or does not process any requests.... I think just update the <input button....> tag line like : <input type="submit" name="btnEnter" value="Enter Details" />

Member Avatar for javaAddict
0
115
Member Avatar for prakash2813

Hi..Friends.................. Is there any way to retrieve cookies and sessions into client-side programming like HTML using javascript..,vbscript..etc.. If u know .plz..reply this...

Member Avatar for Taywin
0
68
Member Avatar for prakash2813

I want to validate the textbox like , the textbox can not accept string value..i can accept only the number value.............................. At first i had validated the textbox in VB.Net like : =========================================================================================Private Sub txt1_KeyPress(KeyAscii As Integer) If (KeyAscii < 48 Or KeyAscii > 57) And KeyAscii <> 8 Then …

Member Avatar for nick.crane
0
227

The End.