Posts
 
Reputation
Joined
Last Seen
Ranked #4K
Strength to Increase Rep
+0
Strength to Decrease Rep
-0
100% Quality Score
Upvotes Received
1
Posts with Upvotes
1
Upvoting Members
1
Downvotes Received
0
Posts with Downvotes
0
Downvoting Members
0
1 Commented Post
0 Endorsements
Ranked #2K
~12.9K People Reached
About Me

"The most important single aspect of software development is to be clear about what you are trying to build." - Bjarne Stroustrup

Interests
coding and watching movies
PC Specs
Intel Pentium core duo 2 GB RAM
Favorite Tags
c++ x 12
java x 2
Member Avatar for Aashath

Hi Guys, I live in a house where we have 8 laptops connecting to a single wireless router . I want to check how much of data each laptop is using everyday . We have Netgear router at home . Can any one help me in fixxing this .

Member Avatar for Reverend Jim
0
2K
Member Avatar for Aashath

HI guys I am using STL map in one of my project . I want to limit my size of my STL map size based on the use input , how do i do it . For Example : if the user types in 5 as input then my program …

Member Avatar for dkalita
0
96
Member Avatar for Aashath

Hi I have a LinkedList of class called Room. Now i want display elements that i stored in that class . i also implemented toString() in my Room class which returns string. The code i tried is below but its not working . i dont know the reason . can …

Member Avatar for darkagn
0
116
Member Avatar for Kamal_Java

Hi , I have a stl list which stores my base class pointer .Like [CODE]list<BaseClass*> eBList;[/CODE] now i want to iterate through this list and store it in one local variable. how do i do this. i have shown below the code i tried .... But at one part it …

Member Avatar for Aashath
0
154
Member Avatar for SyLk

how do i declare a scanner object, filescan publicly so that i may use filescan in varios functions i found this statement in a forum----> private static Scanner scanner = new Scanner (1 3 4 4"); when I modified it to-----> public static Scanner filescan = new Scanner(new File("inputdata.txt")); //declared …

Member Avatar for Ezzaral
0
379
Member Avatar for angelsherin

Hi friends, Kindly help me in this...i have to print the values of input and languagepair i tried this first CString Add(CString input,CString languagePair) { CString url ; url.Format("http://www.google.com/translate_t?hl=en&ie=UTF8&text= %s &langpair= %s ", input, languagePair); } i got error then i tried this CString Add(CString input,CString languagePair) { CString url …

Member Avatar for Aashath
0
127
Member Avatar for kux

Hello, I have a CListCtrl and a button to modify the selected row in the CListCtrl. My problem is that my list has several columns and I want to be able to select a row by clicking on any column of the row that I want selected. Now I can …

Member Avatar for Aashath
0
1K
Member Avatar for Aashath

Hi All, This is regarding VC++ 6.0 compilation problem that i have faced . I deleted my "Temp" folder and trying to compile my code , but VC++ doesnt allow me to compile my code without that folder .can anyone help me in this ? why VC++ requires temp folder …

Member Avatar for Ancient Dragon
0
107
Member Avatar for vishalkhialani

Hi, I am working on a project where I need to save data which the user inputs for future reference and manipulation. I know one can use a database or a binary file. I would like to use a database but I don't know where to begin. I know one …

Member Avatar for vishalkhialani
0
161
Member Avatar for aircraft

How can in the output, I want ONLY ONE LINE from 1 to 99, the windows is not enough.. myvector contains: 0 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 …

Member Avatar for Ancient Dragon
0
122
Member Avatar for Aashath

I have implement a desktop lookup mechanism . Indexing and retrival works fine. But when a file is updated , created or deleted i would like to get the notifaction so that i can update my index . Is there any C++ code availabe for FileSystemWatcher ( which is in …

Member Avatar for vijayan121
0
161
Member Avatar for Narue

Post your tips for making life easier in C and C++. I'll start: [SIZE=3][B]Standard vector object initialization[/B][/SIZE] The biggest problem with the standard vector class is that one can't use an array initializer. This forces us to do something like this: [code] #include <iostream> #include <vector> using namespace std; int …

Member Avatar for bector
2
7K
Member Avatar for lifei

Can i know what's wrong with the below source code? can i put the variable x, y like this? How it can't work? [code=c++] #include <Windows.h> #include <mmsystem.h> #pragma comment (lib,"winmm.lib") int ,x,y; void CTestingDlg::OnPlay() { // TODO: Add your control notification handler code here UpdateData(TRUE); CString strFreq; CString strHL; …

Member Avatar for invisal
0
147
Member Avatar for Aashath

Hi All ... #inlcude<stdio.h> int main() { printf("Name : AASHATH KAAMIL"); printf("Profession : Software Engineer"); return 1 ; } I'm a vc++ developer and looking to enhance and share my knowledge through this forum. .... I am good at memory management , C++ stl , multimedia ... " come on …

Member Avatar for zandiago
0
71
Member Avatar for Max_Payne

[b]Menu.h[/b] [code] #pragma once #include <iostream> #include <cstring> using namespace std; class Menu { private: string title; public: Menu( void ); Menu( const Menu &unMenu ); ~Menu( void ); void setTitle ( string title ); string getTitle() const; }; [/code] [b]Menu.cpp[/b] [code] #include "Menu.h" Menu::Menu(void) { this->title = "Hello"; } …

Member Avatar for dubeyprateek
0
214
Member Avatar for cancer10

Hi All, Just wondering whats the difference between a Programmer and a Developer? Thanx

Member Avatar for Ancient Dragon
0
207