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
R

rajeev82

@rajeev82
About
Posts
43
Topics
27
Shares
0
Groups
0
Followers
0
Following
0

Posts

Recent Best Controversial

  • Problem with tooltip
    R rajeev82

    Thanks for your help..it works now :-D

    C# help csharp question

  • Problem with tooltip
    R rajeev82

    well i dont want the tooltip to be displayed on click of the button.It should get displayed when the mouse pointer is idle over it for some time.

    C# help csharp question

  • Problem with tooltip
    R rajeev82

    Hi all, I've created a simple windows application in C# and added a button to the form and associated a tooltip to the button.The problem is the tooltip is not showing up if i click on the button.(i.e)the tooltip is getting displayed properly n number of times before i click on the button, but it doesnt show up after i click on it.. :sigh: wat could be the problem here??any help will be highly appreciated :-D thanks and regards, raj

    C# help csharp question

  • Problem with creating a component
    R rajeev82

    That alright..Anyhow thanks a lot for ur help :)

    COM help c++ com windows-admin

  • Problem with creating a component
    R rajeev82

    0x80040111..is the returned HRESULT s hexdecimal value...

    COM help c++ com windows-admin

  • Problem with creating a component
    R rajeev82

    Hi, When i tried to load the component using OLE view it displays an MK_E_INVALIDEXTENSION error. I tried calling CoGetClassObject but the return is always the same (Class Factory cannot supply the requested class).I'm Totally lost :(( Is there Anything else that i can try?? Thanks for your help

    COM help c++ com windows-admin

  • Problem with creating a component
    R rajeev82

    CLSID aclsid; //interface to be created IMIConverter *m_pToConverter = NULL; aIUnknown = NULL; HRESULT hr; //this step also gets the correct class ID hr = CLSIDFromProgID(L"MITFConverter.MIConverter",&aclsid); // This HRESULT gives the problem hr=CoCreateInstance(aclsid,NULL,CLSCTX_ALL,IID_IMIConverter,(void**)&m_pToConverter); Thanks for your help

    COM help c++ com windows-admin

  • Problem with creating a component
    R rajeev82

    Hi all, I've created a simple COM component using ATL and itz registered also.When i tried to create the component using CoCreateInstance i get a HRESULT which tells that "0x80040111 ClassFactory cannot supply requested class ". There is only one instance of the component present in the registry and the CLSID,Interface ID everything i passed to the COCreateInstance are correct but still the problem is not over. Any help would be greatly apppreciated.Thanks in advance. Regards, Rajeev

    COM help c++ com windows-admin

  • Problem in registering a COM component.
    R rajeev82

    HKCR { MITFConverter.MIConverter.1 = s 'MIConverter Class' { CLSID = s '{8AED5835-214E-408E-BEAE-375A95F10433}' } MITFConverter.MIConverter = s 'MIConverter Class' { CLSID = s '{8AED5835-214E-408E-BEAE-375A95F10433}' CurVer = s 'MITFConverter.MIConverter.1' } NoRemove CLSID { ForceRemove {8AED5835-214E-408E-BEAE-375A95F10433} = s 'MIConverter Class' { ProgID = s 'MITFConverter.MIConverter.1' VersionIndependentProgID = s 'MITFConverter.MIConverter' ForceRemove 'Programmable' InprocServer32 = s '%MODULE%' { val ThreadingModel = s 'Free' } val AppID = s '%APPID%' 'TypeLib' = s '{26B4997D-A0FD-4A5B-BB6D-A270D8FD86B3}' } } } this is the content of my rgs file

    COM help c++ com windows-admin

  • Problem in registering a COM component.
    R rajeev82

    Hi friends, I've built a COM component using ATL.The component gets created succesfully,but i'm not able to see it in the registry(tried registering it manually useing regsvr32 and it said component registered successfully)..Any help will be highly appreciated. Thanks and regards, Rajeev

    COM help c++ com windows-admin

  • Registered COM component not found in registry
    R rajeev82

    Hi friends, I've built a COM component using ATL.The component gets created succesfully,but i'm not able to see it in the registry(tried registering it manually useing regsvr32 and it said component registered successfully)..Any help will be highly appreciated. Thanks and regards, Rajeev

    C / C++ / MFC c++ com windows-admin help

  • Retreiving system time.
    R rajeev82

    Hi all, To reteive the system time i used CTime::GetCurrentTime(); When the return value is formatted I got the systm time in HOUR,MINUTES and SECONDS format..is there any function using which i can get 100th of a second also??? Thanks in advance Rajeev

    C / C++ / MFC question

  • Retreiving Hex data from edit box
    R rajeev82

    strtol[] did the job...Thanks for ur help

    C / C++ / MFC tutorial question

  • Retreiving Hex data from edit box
    R rajeev82

    Hi all, when some one enters a hex value in a edit box ,say for example 0xffff ,then is there any way by which the value can be retreived as integer itself (not as text)?? when i retreive the data as text and try to convert it using atoi or atof routines the output is always 0.It'd be great if someone through some light on this ...... Thanks in advance rajeev

    C / C++ / MFC tutorial question

  • how to track mouse co-ordinates
    R rajeev82

    Hi all, i want to change the color of a button when the cursor comes into contact with it...can anyone help me out in this??? Thanks in advance.. Rajeev -- modified at 9:09 Tuesday 13th June, 2006

    C / C++ / MFC help tutorial question

  • Adding static control to childvew
    R rajeev82

    its an SDI application.... the code i've used is CLed m_led; ///declared in mainframe.h m_led.Create(...);// in the OnCretae of mainframe.cpp here CLed is a class derived from CStatic which gives some special features to a static control...

    C / C++ / MFC help

  • Adding static control to childvew
    R rajeev82

    well all those properties have been set properly but still i'm not able to get it right.. -- modified at 9:55 Friday 9th June, 2006

    C / C++ / MFC help

  • Adding static control to childvew
    R rajeev82

    Hi all, Instead of opening a Static control(which is subclassed) in a Dialog box,i want to open it in the Mainframe window. But when i create a variable of the class(subclassed) in the MainFrame(derived from CFrameWnd)and call the Create(with all right parameters) function the control is not visible in the Mainframe window :(( i'm not able to figure out the reason :zzz: y itz not showing up.It'll be really great if someone can help me out in this. Thanks in advance, rajeev

    C / C++ / MFC help

  • converting a "character" into hexadecimal
    R rajeev82

    hi friends, i'm reading one "character" at time from RS-232 interface and storing it in a character array.I'd like to know whether any in-built functions are there to convert this "single character" into its ASCII hexadecimal eqivalent?? Thanks in Advance... Rajeev :)

    C / C++ / MFC data-structures question

  • RS 232 communication [modified]
    R rajeev82

    Hi all, I'd like to know, whether itz possible to send "Integers" and "arrays" through a RS-232 interface??is there any way to do it?? Thanks in advance, rajeev :-D -- modified at 0:40 Tuesday 6th June, 2006

    C / C++ / MFC question
  • Login

  • Don't have an account? Register

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