Posts
 
Reputation
Joined
Last Seen
0 Reputation Points
0% Quality Score
Upvotes Received
0
Posts with Upvotes
0
Upvoting Members
0
Downvotes Received
2
Posts with Downvotes
2
Downvoting Members
2
~4K People Reached
Favorite Forums
Favorite Tags

33 Posted Topics

Member Avatar for Rishikeshan
Member Avatar for dineshcbe
Member Avatar for Momerath
0
80
Member Avatar for 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

0
51
Member Avatar for tawes01
Member Avatar for meensatwork

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.

Member Avatar for meensatwork
0
130
Member Avatar for ganesh_IT

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

0
43
Member Avatar for KellieD

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]

Member Avatar for KellieD
0
100
Member Avatar for fat0ali0ma
Member Avatar for SgtMe
0
79
Member Avatar for akshayabc

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 …

Member Avatar for gayathri balu
0
179
Member Avatar for dineshcbe
Member Avatar for ganesh_IT
0
57
Member Avatar for ganesh_IT

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 …

Member Avatar for sowmyadantuluri
0
161
Member Avatar for lionaneesh

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()

Member Avatar for Ajinkya Naik
0
167
Member Avatar for ganesh_IT

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

Member Avatar for Ancient Dragon
0
82
Member Avatar for ganesh_IT

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 …

Member Avatar for mitrmkar
0
121
Member Avatar for sankhamita

Hi you have to explain your problem clearly to get a good response....

Member Avatar for Adak
0
83
Member Avatar for chilambu

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...

Member Avatar for Duki
-1
113
Member Avatar for ganesh_IT

Hi guys, what is the deference between ASSERT macro and Exception handling in cpp

Member Avatar for LordNemrod
0
73
Member Avatar for ganesh_IT

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 …

0
59
Member Avatar for ganesh_IT
0
55
Member Avatar for ganesh_IT

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; …

Member Avatar for Ancient Dragon
0
165
Member Avatar for harris21

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]

Member Avatar for mrnutty
0
299
Member Avatar for ganesh_IT

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)); …

Member Avatar for Fbody
0
145
Member Avatar for ganesh_IT

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

Member Avatar for Fbody
0
82
Member Avatar for timb89

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...

Member Avatar for Kanoisa
0
100
Member Avatar for Bigbrain99

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++,

Member Avatar for Duki
0
155
Member Avatar for ganesh_IT

Hi guys, i want to read a file backward using iterator pls any explain me with sample code

Member Avatar for Topi Ojala
0
50
Member Avatar for clarkeboy
Member Avatar for GuitarComet
0
190
Member Avatar for posche
Member Avatar for viv0411

[CODE] #include <iostream> int main() { std::cout << (4 / 4 + 4 )* 4 ; return 0; } [/CODE]

Member Avatar for sundip
0
115
Member Avatar for ganesh_IT

Hi guys is this possible to write a biggest number program( biggest among 3) in a single line

Member Avatar for 0x69
0
88
Member Avatar for ganesh_IT

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 …

0
58
Member Avatar for ganesh_IT

Hi guys, pls somebody tell me the detailed concept of containment in c++. its urgent pls..................

Member Avatar for jonsca
0
77
Member Avatar for ganesh_IT

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

Member Avatar for Fbody
0
95

The End.