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.

~1K People Reached
Favorite Tags
Member Avatar for newcook88

Can someone please help me to create a functun which will allow to dynamically filter the grid view example: if the user wants to search a employee with different fields how to create a dynamic fiter situation 1 filter by only one colum eg employee id situation sort with 3 …

Member Avatar for kvprajapati
0
82
Member Avatar for newcook88

how do i add two columns in a gridview and put the total in the third column example exam1 exam2 total 66 20 86 how to i create the colum to genrate the total aftrer doing the query in sql

Member Avatar for newcook88
0
105
Member Avatar for newcook88

how do i create a set method to get the fstream input file. in need to be able to define the file location in the main method. [CODE]class a { private: ifstream fileOne; ofstream report1; public: void setinput(std::ifstream& in); void setoutput(std::ofstream& out); }; [/CODE] how can i code these set …

Member Avatar for ArkM
0
175
Member Avatar for newcook88

How do i sort a vector based on the frequency of its elements example my vector contains 10,11,12,10,11,13,11 i need to get the sorted out put as 11,11,11,10,10,12,13 the normal sort is sort(vec.begin(), vec.end()); how do i sort it in that way

Member Avatar for newcook88
0
161
Member Avatar for newcook88

can some one help me to develop the code for the following methods [CODE]private void add(Bucket bucket) { // is the bucket in the table? // can it be added to the table? // can the bucket be added at its hashed index? // what is to be done if …

Member Avatar for BestJewSinceJC
0
122
Member Avatar for newcook88

i want to read words form a text file and remove the comars and fullstops and then put the single word to a vector. but when i try the method below i get an error can some one please help me. [CODE]char delim[100]=",.`~!@#$%^&*()_+=-{}][:';?><|"; ifstream fileOne("file.txt"); string fileWord; while ( fileOne>> …

Member Avatar for mvmalderen
0
575