- Upvotes Received
- 0
- Posts with Upvotes
- 0
- Upvoting Members
- 0
- Downvotes Received
- 2
- Posts with Downvotes
- 2
- Downvoting Members
- 2
33 Posted Topics
Re: You can use sizeof operator... | |
Re: Hi dinesh, first you have to explain your problem in a clear manner. ganesh_IT | |
Hi guys, now am in a remoting project. I need to transfer a TreeNode control using remoting. Is it possible in remoting i don't know, if any one know explain me Thanks in advance ganesh_IT | |
![]() | Re: You can try SetWindowText() in WM_PAINT or WM_CREATE. |
Re: Hi meens, you forgot to add type of inTxt in your code block, is it pointer to char. please explain your problem with exact code. ganesh. | |
Hi guys i need to extract audio from a WMV file. I never try this kind of task before. So any one tell me how can i achieve this in .NET | |
Re: Hi its a simple task to add all elements [CODE] double SumN(double *array, int size) { double total = 0; int i; for(i = 0; i < size; ++i) total += array[i]; return total; } [/CODE] | |
Re: You have big help in your desktop, that is web. Search it you can get what do you want | |
Re: Hi first you need to study operator precedence well. Here you are using ++ operator post fix and prefix. ++ directly charge the value in variable address. post fix (a++)- print first and increment perfix (++a)- increment first and print the value printf("%a%a%a", a, ++a, a++); 1 //and then increment … | |
Re: Hi, u can use LVITEM structure and InserItem() to solve your problem | |
Hi guys, i want to overload input stream for class Date_Time [CODE] class Date_Time{ //Containment class Date d; Time t; public: Date_Time(); Date_Time(short date, Date::EMonth month, CYear year, short hour, short minutes, short seconds, bool meri); Date_Time(short date, Date::EMonth, CYear year); Date_Time(short hour, short minutes, short seconds, bool meri); Date_Time(Date … | |
Re: The inner loop simply put additional with new line between each char.because strcpy() simply add null string at the end of "Additional lines". That is"Additional\0lines". so the "lines" omitted by strcpy() | |
Hi Guys, I am using CDateTimeCtrl in my project.I dont know how to get Date, Month and Year Separatly. If you Know explain me with simple code Thanks in Advance | |
Hi guys, I am writing project for bank operation in MFC, before running my application i have to check the username and password. But i have some problem in my code, my main frame window is closed after enter username and password.Any one tell me the reason..... [CODE] class CLoginDialog … | |
Re: Hi you have to explain your problem clearly to get a good response.... | |
Re: Mr.Chilambu Selvam MCA, pls try to explain your problem clearly, and also concentrate to avoid spelling mistakes... Welcome to the world of C++ Congrats... | |
Hi guys, what is the deference between ASSERT macro and Exception handling in cpp | |
Hi guys, i try to write my data into a binary file, but j have some problem in it . I dont know what happening inside.. [CODE] //////////////////////Here is my code///////////////////////////// class Person{ char Name[50]; char Address[10; bool sex; short age; public: Person(); Person(char* name, char *address, bool sex, short … | |
Hi guys, i am doing one accounting project. I use 3 binary files to store account holders information, login information and transaction. For mini-statement i need to read my Transaction binary file in backward. i dont know how to do ... My structure is [CODE] struct Transaction_Info { int AccountNumber; … | |
Re: Hi harris, yes we can call constructor explicitly, but we cant call destructor.] [CODE] class sample { public: explicit sample() { cout << "Constructor called" << endl; } ~sample() {} }; int main() { sample obj(); //explict call only here allow because of explicit keywoed } [/CODE] | |
Hi developers, i try to write a file in binary format. But that file is not in binary format, i dont know what's wrong in my code [CODE] #include <iostream> #include <fstream> using namespace std; int main() { fstream file("file path", ios_base::binary | ios_base::in); char buf[] = "BinaryFile"; file.write(buf, sizeof(buf)); … | |
Hi guys i have a new kind of error , i never seen before . Error Message is[CODE] Cannot update Program database "e:\ganesh_projects\Framework\Framework\debug\vc90.pdp . [/CODE] I am a fresher so any one tell what the problem is | |
Re: Hi, your are declare pointer here [CODE]tremNode *temp[/CODE] But you are forgot to allocate memory for your pointer [CODE]tremNode *temp = (tremNode*)malloc(sizeof(struct tremNode));[/CODE] Careful with pointers... | |
Re: I Welcome you to our world of c++.[B] The c++ programming language[/B] by [B]Bjarne Stroustru[/B]p is the best book for learning c++, | |
Hi guys, i want to read a file backward using iterator pls any explain me with sample code | |
Re: first u have to try your own if u cant then post your codings all the best | |
| |
Re: [CODE] #include <iostream> int main() { std::cout << (4 / 4 + 4 )* 4 ; return 0; } [/CODE] | |
Hi guys is this possible to write a biggest number program( biggest among 3) in a single line | |
Hi guys, i try to write a containment program with Date and Time classes, i have problem in operator loading in Date_Time.[CODE] class Date{ short d, m ,y; public: Date(); Date(short date, short month, short year); ~Date(); short Day() const; short Month() const; short Year() const; };[/CODE] [CODE] Date operator+(Date … | |
Hi guys, pls somebody tell me the detailed concept of containment in c++. its urgent pls.................. | |
Hi guys I am a new IT guy.my task is to manipulate time and date.I use two separate classes for time and date. Now i need to integarate them, so which one is best Inheritance or containment |
The End.