Skip to content
  • Categories
  • Recent
  • Tags
  • Popular
  • World
  • Users
  • Groups
Skins
  • Light
  • Cerulean
  • Cosmo
  • Flatly
  • Journal
  • Litera
  • Lumen
  • Lux
  • Materia
  • Minty
  • Morph
  • Pulse
  • Sandstone
  • Simplex
  • Sketchy
  • Spacelab
  • United
  • Yeti
  • Zephyr
  • Dark
  • Cyborg
  • Darkly
  • Quartz
  • Slate
  • Solar
  • Superhero
  • Vapor

  • Default (No Skin)
  • No Skin
Collapse
Code Project
CODE PROJECT For Those Who Code
  • Home
  • Articles
  • FAQ
Community
M

MuraliKrishnaP

@MuraliKrishnaP
About
Posts
26
Topics
5
Shares
0
Groups
0
Followers
0
Following
0

Posts

Recent Best Controversial

  • How to see age and gender of a CP user? [modified]
    M MuraliKrishnaP

    PIEBALDconsult wrote:

    looking for one to wrap your pointer

    Is this harsh? I don't know this sentence. If yes, you are also one of them who took it bad. :) Any way people, I want to complete this. I have two reasons posting this.. 1. I have read many posts regarding univotes. People can give vote 1 without reading completely. This is one of them. 2. I recently read an article posted by 8 year old kid and really surprised. I wanted to see if there are many kids doing this great work.

    The Lounge tutorial question

  • It's just like some story...
    M MuraliKrishnaP

    okay.. I misread the context. Go ahead.

    The Lounge question com tools help

  • It's just like some story...
    M MuraliKrishnaP

    Oh I thought you are talking about this http://www.codeproject.com/Lounge.aspx?fid=1159&select=3558512&tid=3558454[^]

    The Lounge question com tools help

  • It's just like some story...
    M MuraliKrishnaP

    not that. The one you are accusing me.

    The Lounge question com tools help

  • It's just like some story...
    M MuraliKrishnaP

    Did you read my thread completely?

    The Lounge question com tools help

  • How to see age and gender of a CP user? [modified]
    M MuraliKrishnaP

    had this problem for 2 years till she (my ex-colleague) left the company. Man, she solved all problems which I left out. Next question from manager: Why is that you cannot do?

    The Lounge tutorial question

  • How to see age and gender of a CP user? [modified]
    M MuraliKrishnaP

    Don't want to really feel them bad by saying that. But, it really burns somewhere.

    The Lounge tutorial question

  • How to see age and gender of a CP user? [modified]
    M MuraliKrishnaP

    Nishant Sivakumar wrote:

    Guaranteed to get you laid

    You thoughts are very bad. If I see a kids article, I would really love and appreciate it. :-D

    The Lounge tutorial question

  • How to see age and gender of a CP user? [modified]
    M MuraliKrishnaP

    Dalek Dave wrote:

    I cannot see how this would relate to the gender?

    I am sorry, doesn't gender mean the person male or female? OK, I meant if the user is boy or girl.

    The Lounge tutorial question

  • How to see age and gender of a CP user? [modified]
    M MuraliKrishnaP

    This is not a cross post. I am trying to see if a user is male/female and their age. Is it possible? Why? If I see a good article from women and kids, I will say "Great, your article is so good, I appreciate it." [Edited] Not that women cannot write good articles. There are very good women programmers. I see them as special as it is very rare from my country. And for the kids who write articles, I feel they are simply great.

    modified on Sunday, August 8, 2010 2:02 AM

    The Lounge tutorial question

  • Bug: cannot go to prev or next page. It goes to first page.
    M MuraliKrishnaP

    Not an immediate issue for me Chris. Just wanted to post the bug. I just started posting bugs.

    Site Bugs / Suggestions com help question

  • Bug: cannot go to prev or next page. It goes to first page.
    M MuraliKrishnaP

    Click here: http://www.codeproject.com/Lounge.aspx?msg=135258#xx135258xx[^] click on prev or next. It goes to first page. Even clicking on prev number or next number does not work.

    Site Bugs / Suggestions com help question

  • Bug: Chapters and Section window is not shown properly [modified]
    M MuraliKrishnaP

    Yes, shows good with FF, and IE8 too but I can't move the scroll bar down. [modified] My screen resolution is 1024 x 768. May be not optimized for this.

    Site Bugs / Suggestions help

  • Bug: Chapters and Section window is not shown properly [modified]
    M MuraliKrishnaP

    Please ignore if already reported. Mouse over Articles | Chapters and Sections | Move over to the window that comes to the right. 1. Contents are shown outside the window. 2. The window gets closed before clicking some link. I am using IE7

    modified on Saturday, August 7, 2010 11:17 AM

    Site Bugs / Suggestions help

  • Active older threads
    M MuraliKrishnaP

    How can I see active older threads? I have posted a question some days back in C++/ MFC discussion board and I have updated my question again with new reply. Is there any chance that viewers can see newly posted messages in thread easily?. I think there should be active older threads option in Date filter.

    Site Bugs / Suggestions question c++ discussion

  • Error :: C1061 compiler limit : blocks nested too deeply
    M MuraliKrishnaP

    The following code

    if(a)
    {
    }
    else if (b)
    {
    }
    else if(c)
    {
    }
    

    is nothing but

    if(a)
    {
    }
    else 
    {
    	if (b)
    	{
    	}
    	**else // how deep this can go? 128? not sure.**
    	{
    		if(c)
    		{
    		}
    	}
    }
    

    else, you can also do like this. Will this solve your problem?

    if(a)
    {
    	if(flag)
    	{
    		// do work
    	}
    	else
    	{
    		// do work
    	}
    }
    
    if(b)
    {
    }
    
    if(c)
    {
    }
    
    C / C++ / MFC help question

  • Handling Abort for Long running operations in MFC
    M MuraliKrishnaP

    Hi Ash, I appreciate your interest in helping me. I am still finding a hard time to solve this. May be I am not smart enough to design this properly. I went through the pattern. Even with this active object, if I have to make synchronous calls, the client must be blocked till the message is received. Or may take time some where in client also. Consider this: (simplified for reading) When I start an operation, My application performs following.. 1. Connect to server (may take 2 secs) 2. Create a GUI for showing some data (milli secs) 2. Get data (RMI) (40 secs) 3. Update GUI (milli secs) 5. Based on the above data start creating next GUI. 6. Create next GUI. 6. Get modified data for second GUI. (RMI) (4 mins!) 7. Update second GUI Till now these are sequential in my application. User can always create n number of GUIs. Each GUI creation and updation may require n RMI calls and they are synchrounous. Meaning, each RMI call is blocked till it is received and the marshalling args are huge. I may also get MBs of data. Example: Consider following call stack. DataIDL::GetData() // Use proxy to get data. Blocked till the data is fetched. Glyph::GetData() // After glpyh creation GlyphsHandler::Execute() // Creates Glyph get data and Update Glyph Doc::Execute() // Execution start of all Glyphs Doc starts Execution. Glyphshandler creates glyphs, gets data and updates glyph. It goes on for all glyphs. Now as it all sequential, I cannot decouple each IDL call to threads as the next call depends upon previous call's data. Hope I am not taking too much of your time. Is it possible to asynchronously decouple the IDL getdata using active object so that the next call will have no effect? Many thanks for your advices till now. Murali Krishna

    C / C++ / MFC c++ mobile com design algorithms

  • Is it ok to use uninitialized pointer?
    M MuraliKrishnaP

    ccpptrain wrote:

    ->Whether this method of using uninitialized pointer is acceptable in any condition?

    It is acceptable as long as you are careful, as you promised absolutely no data members. With this condition, you initialize or don't initialize or simply call using 0 (zero) pointer, it is acceptable.

    ccpptrain wrote:

    ->Will this work on different platforms?

    It is same for all platforms.

    ccpptrain wrote:

    ->Any pitfalls?

    One more promise: don't delete the pObj.

    ccpptrain wrote:

    ->Your Valuable suggestions.

    Don't do like this. You never know when you are going to add member variables and access them.

    C / C++ / MFC c++ help question announcement

  • Handling Abort for Long running operations in MFC
    M MuraliKrishnaP

    My bad, I misread it. it is known uses. (not issues) :)

    C / C++ / MFC c++ mobile com design algorithms

  • Handling Abort for Long running operations in MFC
    M MuraliKrishnaP

    Ash, Thanks for your quick reply. I am looking at the pdf and trying to understand. I think it will take a day or two. BTW, I forgot to mention. My application uses CORBA synchronous RMI calls. I took a quick look of the pdf and saw some know issues.. didn't read completly. Thanks, Murali Krishna

    C / C++ / MFC c++ mobile com design algorithms
  • Login

  • Don't have an account? Register

  • Login or register to search.
  • First post
    Last post
0
  • Categories
  • Recent
  • Tags
  • Popular
  • World
  • Users
  • Groups