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
G

ganesa moorthy

@ganesa moorthy
About
Posts
35
Topics
15
Shares
0
Groups
0
Followers
0
Following
0

Posts

Recent Best Controversial

  • QueryInterface Regarding....
    G ganesa moorthy

    Hi, My Program is supposed to run contineously so i need to concern about memory management with COM. Here is the scenario, I created a COM Object using CreateInstance() using that COM object i am creating another object using QueryInterface. Here is my question. 1. if i am releasing the first object which i got using CreateInstance, then subsequently the objects which are created using that will be removed from memory right? Since if i call release for object got using QI causing crash. But i am fine if i release the first object, but i am afraid this would lead to a memory leak issue. :( Kindly Advice! Thanks in advance:rose: -Ganesha

    Thanks a lot

    COM question com performance help announcement

  • Issue with SysFreeString...
    G ganesa moorthy

    Hi, [in], [out], and sometime [out,retval] Advanced Thanks!!!!

    Thanks a lot

    COM com performance help tutorial question

  • Issue with SysFreeString...
    G ganesa moorthy

    Hi, I am having a COM Component and i am accessing the com using VB client. In Com function i am using SysFreeString, i am calling a function inside COM DLL by passing a string argument from vbclient. After usage i am calling SysFreeString inside the com function. The above mentioned functionality works on several machines and fails(VB client crashes) in one machine. I removed the SysFreeString function call from the failing machine, and now it is fine. Can anyone tell why this happens so strangely ? Anyway we need to call SysFreeString to free up the memory. Kindly guide me! :( Advanced Thanks, Ganesha

    Thanks a lot

    COM com performance help tutorial question

  • Why COM DLL Fails in one system and working fine in another system?
    G ganesa moorthy

    Hi, I am having a COM DLL which is working fine in three Windows 2003 installed machines. But Fails in another machine which has same windows 2003. What could be the possible cause of this ? :rose:Advanced Thanks:rose:, Ganesamoorthy

    Thanks a lot

    COM com question

  • Help me on Rich Edit Control
    G ganesa moorthy

    I need help on Rich edit control. I have placed it in the dialog box and I called the function AfxInitRichEdit() in InitInstance. I have opened the properties of RichEdit and Checked the Button “Numbers” so that it can accept numbers only. But still it accepts characters ? Why ? Can anyone help me on this ? Thanks in advance!!!!:rose:

    Thanks a lot

    C / C++ / MFC help question

  • static variable issue!
    G ganesa moorthy

    thanks i need to learn a lot, but do u know it is possible to retain and have values of static variable in project but across workspaces.

    Thanks a lot

    C / C++ / MFC c++ help question workspace

  • static variable issue!
    G ganesa moorthy

    try it in two different workspaces, it will work within one workspace only.

    Thanks a lot

    C / C++ / MFC c++ help question workspace

  • static variable issue!
    G ganesa moorthy

    Hi, I have created a static variable in a vc++6.0 project, the same project has sub project workspace. The variable which was created in one workspace is not accessible in another, though all are successfully compiled. what could be the reason ? Thanks and regards, :)

    Thanks a lot

    C / C++ / MFC c++ help question workspace

  • Can we have our application as _UNICODE supported as well _MBCS supported?
    G ganesa moorthy

    It is really an useful hint!, i hope i can use it n my project. Thanks :rose:

    Thanks a lot

    C / C++ / MFC question

  • Multilangauge problem
    G ganesa moorthy

    1. Please ensure whether you have installed language packs. 2. Make us to understand your situation by providing some code snippets.

    Thanks a lot

    C / C++ / MFC data-structures help

  • Can we have our application as _UNICODE supported as well _MBCS supported?
    G ganesa moorthy

    No it is not possible if you set your project _UNICODE in project settings, it will override _MBCS. But i am here in position of converting a large project into UNICODE SUPPORTED. Can i build that third party tool into a DLL and link them with my project ? Even though that also be defined _UNICODE. Any Idea ? Get me out of this difficulty!. :(( Thanks :rose:

    Thanks a lot

    C / C++ / MFC question

  • Can we have our application as _UNICODE supported as well _MBCS supported?
    G ganesa moorthy

    Hi, Can we have our application as _UNICODE supported as well _MBCS supported? I am in middle of a robust project, where we are using some third party sources. if i set my project to _UNICODE supported then it forces all the places where i am handling strings are to be wchar, TCHAR etc., can i make the same in some files, since it forces to make changes in third party sources. To make UNICODE Supported i made changes like "In Project settings in preprocessor definitions i just added _UNICODE. Also set startup with wWinMainCRTStartup. Qns: Can i support both of them ? if so How ? Thanks in advance. :rose:

    Thanks a lot

    C / C++ / MFC question

  • reg., CImage sources (UNICODE COMPATIBLE) to load GIF, JPEG
    G ganesa moorthy

    Actually i am sure, there is no manual for CImage, in MS Visual Studio though it is included. If so what header i need to include to proceed? Thanks for your response! :rose:

    Thanks a lot

    C / C++ / MFC help question

  • reg., CImage sources (UNICODE COMPATIBLE) to load GIF, JPEG
    G ganesa moorthy

    Where we can get CImage sources (UNICODE COMPATIBLE) to load GIF, JPEG in our application ? :confused: Anyone Please help on this. Thanks a Lot:rose:

    Thanks a lot

    C / C++ / MFC help question

  • Multilingual preparation - How to make Chinese Text or japanese text appear on menu items or button captions etc.,
    G ganesa moorthy

    No, i tried but i couldn't. But i reached the goal in different way that, storing strings in a separate file and reading them from Unicode aware project and printing (SetWindowText) in a control. It works and it is fine. If you know how to paste the chinese text then please let me know~!

    Thanks in advance

    C / C++ / MFC tutorial

  • reg Display in static control with UNICODE aware project!!!
    G ganesa moorthy

    it is fine if i give p->SetWindowText(L"&Login");, Thanks a lot once again! :)

    Thanks a lot

    C / C++ / MFC help tutorial question

  • reg Display in static control with UNICODE aware project!!!
    G ganesa moorthy

    Hi, My Project is set to unicode aware, and it is fine. But when i am go for displaying a text in static control in run time, like CStatic *p = (CStatic *)GetDlgItem (IDC_STATIC1); p->SetWindowText ("&Login"); The text on static control should display the text as Login and the letter "L" should accompany a underline; It is working fine with MBCS projects but not with UNICODE, How to resolve this issue? Anyone please help, :confused:

    Thanks in advance!!!!

    C / C++ / MFC help tutorial question

  • Multilingual preparation - How to make Chinese Text or japanese text appear on menu items or button captions etc.,
    G ganesa moorthy

    Thank you very much for your valuable response! i will do as per your directions.!

    Thanks a lot

    C / C++ / MFC tutorial

  • please help me
    G ganesa moorthy

    Very simple! ;P But you have to explain the scenario clearly...I have done same the thing you have puzzled. Explain it again! :)

    Thanks a lot

    C / C++ / MFC c++ help tutorial question

  • A crisis with string table
    G ganesa moorthy

    How to change the language settings of a string table - in order to hold chinese characters. I have gone mad :(( :confused: of trying to work it out. I need to copy the chinese string into the string table and i need to use the same in my project. Thanks in advance:rose:

    Thanks a lot

    C / C++ / MFC tutorial
  • Login

  • Don't have an account? Register

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