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.

0 Endorsements
~868 People Reached
Favorite Tags
c++ x 7
jsp x 1
Member Avatar for malayasthana

hello guys., i severely need your help . in the following code i want to transfer the value of rowIndex to next jsp page and want to get it there and print it. please tell me how it could be done. <html> <head> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> <title>search Result</title> </head> …

0
86
Member Avatar for malayasthana

what does error code -25922 means.. it is coming as a value of error in my programs line error = sPSActionControl->Play(&result, eventMake, desc000001B0, plugInDialogSilent); i want to know what this error code stands for.. please help me

Member Avatar for ravenous
0
126
Member Avatar for malayasthana

can someone tell me how can i list all the .txt files of a directory or folder by a c++ program. please tell . i have tried void f_ListFile() { system("cls"); system("DIR /b D:\\*.txt"); getch(); } it is working for this but when it is something like this below void …

Member Avatar for Ancient Dragon
0
120
Member Avatar for malayasthana

in the program i am creating a file with specific path.. file name is to be entered by user and then we have to create a file but the code is giving the error written after the code. void f_Createfile() { string dirpath; // stores final name for file with …

Member Avatar for jonsca
0
129
Member Avatar for malayasthana

guys my vector isn't working properly with push back function ... so i am searching for the alternative method ... please help me with your advices...

Member Avatar for mike_2000_17
0
117
Member Avatar for malayasthana

i want to itterate through the vector and want to check if entered string is present in the string vector or not.. so please help me to know how can i do it i have done just as we do to itterate through vector<string>: vector<string>::iterator it; cout << "myvector contains:"; …

Member Avatar for Fbody
0
142
Member Avatar for malayasthana

[CODE]vector<string> file_pass; if(count == m2+1) { p2_pass = onfile.tellg(); shift = p2_pass-p1_pass; onfile.seekg(-shift,ios::cur); for(j=0;j<shift-1;j++) { onfile.get(ch); temp_pass[j] = ch; } user_pass.assign(temp_pass,temp_pass+shift-1); file_pass.push_back(temp_pass); }[/CODE] for first input asthana it is giving asthana but after push back for second input saxena it is giving saxenaa i know last a is from first …

Member Avatar for Fbody
0
148