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
B

Banks K

@Banks K
About
Posts
58
Topics
44
Shares
0
Groups
0
Followers
0
Following
0

Posts

Recent Best Controversial

  • how to use group of radio button as single control?
    B Banks K

    Hello All, i am preparing a application in which i am using multiple group box which having multiple radio buttons and check boxes. i want to use a group box of multiple radio button as a single control so i please share your knowledge. thanks

    C / C++ / MFC tutorial question

  • can i use ofstream in VS 2005.
    B Banks K

    Hello All, actually i have to made a project using VS2005 with CLR support so can anybody tell me how can i use ofstream class in this project. i am also "iostraem" but still it is giving error like "error C2061: syntax error : identifier 'fstream'" please share your knowledge thanks Bankey

    C / C++ / MFC dotnet visual-studio help question

  • How can i get Partition name from partition number?
    B Banks K

    Hello All, i have to find Partition name like(New Volume(K:)) but by using partition number because i am having PARTITION_INFORMATION structure in the project. now i am unable to get PArtition Name by using Partition Number. if you have any idea about this please please share with me. thanks bankey

    C / C++ / MFC question

  • problem with overriding "OnIdle" method of WinApp
    B Banks K

    Hello, now i read that document also but i am still unable to gets called "onIdle" method can you tell what i have to do for that. also i have another application in which, onIdle method gets called at the time of start application and end application i also i want that please tell me where i am wrong......

    C / C++ / MFC help

  • problem with overriding "OnIdle" method of WinApp
    B Banks K

    Hello All, I am overriding "virtual BOOL OnIdle(LONG lCount );" method in my application. i think it should execute befor application start mean after initinstance and also at the idle time but it is not executing in my application. can any one tell me what i have to do for override this method. please share your knowledge. thanks bankey

    C / C++ / MFC help

  • Problem with using a COM component into shared Addin
    B Banks K

    I have a COM component developed in C#. but we have to develop addin for MS Office by using this Component(DLL). I develop a shared addin “MyFirstAddin” and try to add reference for that DLL which is already developed in C# But I am getting errors message when i am trying to add reference like that "A reference to 'C:/Helper.dll' could not be added. this is not a valid assembly or COM component etc" so if anybody have idea where i am wrong please share with me. thanks

    C# csharp com help

  • Problem with creating richeditctrl?
    B Banks K

    i forget this but now i have called this function but still it is now showing what can be a problem?

    C / C++ / MFC help question

  • Problem with creating richeditctrl?
    B Banks K

    Hello All, i have dialog base application and I am try to create richeditctrl in oninitdiaog function follows : m_RichEditCtrl.Create(WS_CHILD|WS_VISIBLE|WS_BORDER|ES_MULTILINE, CRect(10,10,100,200), this, 1); but it doesn't show on dialog box what i have forget please anyone tell me.... thanks

    C / C++ / MFC help question

  • how to set text in different fonts in defferent lines of static text control
    B Banks K

    thanks for youe quick response. can i set fonts for prticular line of text in rich edit text if it is possible than please tell me... thanks bankey

    C / C++ / MFC tutorial

  • how to set text in different fonts in defferent lines of static text control
    B Banks K

    I have created one static txt control and now I have to set text in multiple fonts in multiple lines I am creating and setting fonts like that: m_MyStaticText.Create("",WS_VISIBLE|BS_TEXT|WS_CHILD,CRect(0,0,520,58),this,IDC_STATICTEXT_PARTITION); if (TRUE == m_font.CreatePointFont( 140, _T ("MS Sans Serif"))) { m_MyStaticText.SetFont(&m_font); } m_MyStaticTextPartition.SetWindowText("\t\t\nPartition Selection"); but I have to set different font in different lines in this static text control. So can any body tell me how it is possible. thanks bankey

    C / C++ / MFC tutorial

  • problem with setting bitmaps on propertysheet header and footer?
    B Banks K

    Hello All, Actually i am using in my application "PropertyPage and PropertySheet" so i have to set bitmap on PropertySheet header and footer for every page so for that i am trying as follows: constructor of my propertysheet class CMyPropertySheet::CMyPropertySheet(CWnd* pParentWnd, UINT iSelectPage, HBITMAP hWatermark, HPALETTE hpalWatermark, HBITMAP hHeader) : CPropertySheet(what i have to give caption ID here, pParentWnd, iSelectPage, hWatermark, hpalWatermark, hHeader) and i am calling that as follows: Bitmap bmWatermark; CBitmap bmHeader; if(!bmWatermark.LoadBitmap(IDB_BITMAP1)) return FALSE; if(!bmHeader.LoadBitmap(IDB_BITMAP1)) return FALSE; CMyPropertySheet MyPropSheet(NULL, 0, bmWatermark, NULL, bmHeader); for this i am only unable to understand what i have to caption id into CPropertySheet(....) constructor if i am giving some integer than it got crashed so if anybody have idea please share with me.......... thanks

    C / C++ / MFC graphics help question

  • please Its Urgent
    B Banks K

    Hello All, I have a DLL which is builded in C# and i have to use this one into shared addin. in shared addin project i am getting class not register error but i have prepared a simple MFC application in which i am able to crete instance of that class and also able to call function from that DLL. can anybody tell me what is the problem with shared addin why it is not able to create instance please share your knowledge.............

    ATL / WTL / STL help csharp c++ question

  • How to register .NET DLL explicitly?
    B Banks K

    Thanks for ur response. i am allready trying using regasm it shows only registered successfully but in actual it is not registering. may be there is version or other problem because when i build DLL using C# on my machine itself than it is working properly but when i got that DLL which is builded on other machine that it is not registering so what is happening i am unable to understand

    C / C++ / MFC csharp c++ tutorial question

  • How to register .NET DLL explicitly?
    B Banks K

    Hello All, I have to register a DLL which is builded in .NET with C#. and i have to call exported function from VC++ project. so for i have to register that DLL so please tell me how it is possible? Thanks bankey

    C / C++ / MFC csharp c++ tutorial question

  • problem with adding toolbar using shared addin?
    B Banks K

    Hello all, I am trying to add toolbar using shared addin(C++/ATL) using VS 2003. i have successfully done with VS 2005 but on same i am getting error like _Commandbar::add function does not 4 argument but it is running in 2005. can anybody tell what should be problem behind that. Thanks bankey

    ATL / WTL / STL c++ help visual-studio question

  • How can i add toolbar and menu bar using Shared Addin?
    B Banks K

    Hello All, I am creating a shared addin for word application. now i have to add toolbar and menu bar to word application. if any one have idea about this than please share with me. Thanks

    C / C++ / MFC question

  • problem withh Adding ATL Simple Object?
    B Banks K

    Hello All, i have to make word addin so i am creating a word addin(shared addin) using MSVS 2003. after creating this project, I am trying to add ATL Simple Object but it is unable to add this class and interface. i am unable to find the problem what is the problem while in MSVS 2005 everything is going fine. but i have to work MSVS 2003 so please tell me what is the problem behind that? thanks bankey

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

  • How can i use a ATL Simple Object as word addin?
    B Banks K

    Hello all, I am making a simple ATL Project and in which i am adding a ATL Simple Object. i have to register this object as word addin. anybody have idea, how it is possible? please share with me. Thnaks bankey

    ATL / WTL / STL question c++

  • How to unregister a addin from MS Word?
    B Banks K

    I have registered with "regsvr32 *.DLL"

    C / C++ / MFC question tutorial

  • How to unregister a addin from MS Word?
    B Banks K

    Hello All, I am working a addin for MS Word and i am new with that so i have registered a addin but now i am unable unregistered this addin. so can body tell me how can i unregistered a addin. and also i want to know how can i add menu bar in this addin and how to handle messages? if any body can give me idea about that, than please share with me. thanks bankey

    C / C++ / MFC question 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