Forum: ASP.NET Sep 7th, 2009 |
| Replies: 1 Views: 239 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... |
Forum: ASP.NET Sep 7th, 2009 |
| Replies: 2 Views: 433 Thank you very much problem solved |
Forum: ASP.NET Sep 6th, 2009 |
| Replies: 2 Views: 433 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... |
Forum: C++ May 16th, 2009 |
| Replies: 5 Views: 305 oki i got it fixd.. had a small syntax error |
Forum: C++ May 16th, 2009 |
| Replies: 5 Views: 305 and one more thing how do i set the input file to "aa.txt" in the main method |
Forum: C++ May 16th, 2009 |
| Replies: 5 Views: 305 Thank you very much working perfectly i forgot about the pointers :)hehe |
Forum: C++ May 16th, 2009 |
| Replies: 5 Views: 305 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.
class a
{
private:
ifstream fileOne;
ofstream report1; |
Forum: C++ May 13th, 2009 |
| Replies: 13 Views: 707 problem solved got da rbegin and rend:) |
Forum: C++ May 13th, 2009 |
| Replies: 13 Views: 707 i managed to print it but the sorting is done in an accessedint order i need to sort in decending order |
Forum: C++ May 13th, 2009 |
| Replies: 13 Views: 707 how do i get it to print im an not sure how to becasue it is my first time with maps when i try the below method it is not working |
Forum: C++ May 13th, 2009 |
| Replies: 13 Views: 707 sir can you show me how to print the sorted values to screen in da example providen in the yahoo llink.. i am having trouble displaying the output |
Forum: C++ May 13th, 2009 |
| Replies: 13 Views: 707 can you please show how its done |
Forum: C++ May 13th, 2009 |
| Replies: 13 Views: 707 that link helps but how do i print the elements the the type of output vector in the code below |
Forum: C++ May 12th, 2009 |
| Replies: 13 Views: 707 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 |
Forum: Java May 11th, 2009 |
| Replies: 1 Views: 174 can some one help me to develop the code for the following methods
private void add(Bucket bucket)
{ // is the bucket in the table?
// can it be added to the table?
// can the bucket be... |
Forum: C++ May 9th, 2009 |
| Replies: 23 Views: 930 |
Forum: C++ May 9th, 2009 |
| Replies: 23 Views: 930 i get the same error.. isnt there any other way that i can use to like read the text file remove the exclamation marks and save the text file and then i can add it to da vector seperateley |
Forum: C++ May 9th, 2009 |
| Replies: 23 Views: 930 |
Forum: C++ May 9th, 2009 |
| Replies: 23 Views: 930 sorry about the quotations
i changed the code.. i get an error
1) cannot convert to char[] |
Forum: C++ May 9th, 2009 |
| Replies: 23 Views: 930 how ever when i use the below code it works but not all comars get eliminated |
Forum: C++ May 9th, 2009 |
| Replies: 23 Views: 930 i got an error when i excute this code. because i have to get the string form da vector and then set it. |
Forum: C++ May 9th, 2009 |
| Replies: 23 Views: 930 could be be kindful to show me the sample code using strtok |
Forum: C++ May 9th, 2009 |
| Replies: 23 Views: 930 yes so i can say that if the char is equal to ispuntc then remove the character |
Forum: C++ May 9th, 2009 |
| Replies: 23 Views: 930 is it possible to remove the punction marks with "ispunct" |
Forum: C++ May 9th, 2009 |
| Replies: 23 Views: 930 while ( fileOne>> fileWord )
{
for(unsigned int a=0; a<fileWord.size ();a++)
{
for(unsigned int b=0;b<100;b++)
{
if (delim[b]==fileWord[b])
fileWord.erase(b);
}
} |
Forum: C++ May 9th, 2009 |
| Replies: 23 Views: 930 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.
char... |