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
E

emmatty

@emmatty
About
Posts
23
Topics
22
Shares
0
Groups
0
Followers
0
Following
0

Posts

Recent Best Controversial

  • Please help!!!
    E emmatty

    Whenever i debug a dll thru the main application the execution is not coming to the break point inside the dll and whenever i press shift+F5 it is showing "Preloaded symbols may not match .dll." Please tell me what is happening. Thanks in advance, John

    C / C++ / MFC debugging regex help question

  • Preloaded symbols may not match
    E emmatty

    Whenever i debug a dll thru the main application the execution is not coming to the break point inside the dll and whenever i press shift+F5 it is showing "Preloaded symbols may not match .dll." Please tell me what is happening.:( Thanks in advance, John

    C / C++ / MFC debugging regex question

  • How to determine a folder is empty
    E emmatty

    Is there any single function to determine wether a folder is empty in VC++! Thanks in advance emmatty

    C / C++ / MFC c++ tutorial

  • Obtaining the name of the caller function
    E emmatty

    Is there any way to obtain the name of the caller function in VC++? eg: Func1() { Func2() } I need to get the name of Func1() from Func2() using code. Any help would be appreciated. Thanks, John

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

  • HOW U RATE THIS CONCEPT
    E emmatty

    While i was cruising thru the net i accidently found a rather intresting concept How you rate this concept http://gcommerce.blogspot.com/

    Article Writing com

  • Editing flexgrid
    E emmatty

    Hello, Can i edit a ms flexgrid(insert text into flexgrid and save it to a database).Or How can i place a textbox or combobox into a flexgrid cell. Thanks in advance, Best regards, John.

    C / C++ / MFC database question

  • How can i change color of a specific word in a sentence
    E emmatty

    Thanks for the fastest reply. I am developing a SDI application using MFC and the text will be written in the SDI's views . I am currently not using any kind of special controls. Once again,Thanks. John.

    C / C++ / MFC c++ question

  • How can i change color of a specific word in a sentence
    E emmatty

    Hello, I am writing an application in which user can type sentences.I need to change colors some keywords in that sentence into blue. How can i accomplish this task in VC++. Thanks in advance:-D, John.

    C / C++ / MFC c++ question

  • NT Services without threads
    E emmatty

    Hello Friends, Is it possible to create a windowsNT/2000 services without threads.The problem I am facing is that i cant set a timer inside a service. Is there any workaround for this prob? regards, John

    C / C++ / MFC help question

  • calculating response time for a http request
    E emmatty

    Hello, I need to calculate the response time of a http request using a VC++ program.Is there any function MFC classes(CHttpRequest or CInternetSession) that provides response time or should I calculate it manually. Please help me. regards and thanks, John. Overcome fear,everything is possible.

    C / C++ / MFC c++ help

  • PropertySheet dissappearing
    E emmatty

    I created a MFC dll in which I created a dialog and i placed a OCX over it.But when i domodal that dialog from a exe the dialog is not displaying but when i remove the ocx control the dialog is displaying properly.what will be the problem? thanks, john

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

  • adding date in perl
    E emmatty

    Hello, How can i add date in perl. Is there any function or modlues that support these type of functions? Please help me. John.

    Web Development question perl help

  • How can i avoid messagebox??
    E emmatty

    Hi Friends, How can i programmatically cancel a message box that popped during a startup of a application thanx, John

    C / C++ / MFC question

  • outlook embedding
    E emmatty

    hello, i am developing an addin for outlook to insert an image to outlook email body but my problem when i insert image on top of a text (using DOM) the text splits into two sides and image got placed between the text but this is not allowed i have to place image on top of the text without the splitting. Is there any way in VC++,COM,DHTML.:confused:

    COM c++ html com help

  • outlook embedding
    E emmatty

    hello, i am developing an addin for outlook to insert an image to outlook email body but my problem when i insert image on top of a text (using DOM) the text splits into two sides and image got placed between the text but this is not allowed i have to place image on top of the text without the splitting. Is there any way in VC++,COM,DHTML.

    C / C++ / MFC c++ html com help

  • creatting a transparent text GIF using CXImage
    E emmatty

    hello friends, We are doing a project in vc++ for image processing .We used your class(CXImage) in our project for converting user typed text into transparent GIF image. We used the following steps for our requirement. Note: Operating System : Win XP Professional , Development Tool : VC++ 6.0. 1)Create a memoryDC 2)Created a compatible bitmap with the dialog 3)selected the bitmap into MemoryDC 4)Draw Text on that DC 5) Created a CXImage object and passed Bitmap handle to CXImage member function called CreateFromHBITMAP 6) We used the function Save() to save that image. But the problem ia that we can insert the Image to Frontpage but the image is not visible. Following code is extracted from our project void CTestCXImageDlg::OnCreateBMP() { CDC memDC; CBitmap bitmap; CBrush brush(RGB(255,255,255)); CFont font; UpdateData(); font.CreateFontIndirect(&logfont); if(memDC.CreateCompatibleDC(GetDC())) { if(bitmap.CreateCompatibleBitmap(GetDC(),200,50)) { memDC.SelectObject(bitmap); memDC.SetBkColor(RGB(255,255,255)); memDC.FillRect(CRect(0,0,200,50),&brush); CRect rect(60,15,200,50); SetTextColor(memDC.m_hDC,RGB(0,255,0)); memDC.SelectObject(&font); memDC.DrawText(m_Text,&rect,DT_END_ELLIPSIS | DT_CENTER ); CxImage img1; img1.CreateFromHBITMAP((HBITMAP)bitmap.m_hObject); img1.Save("c:\\imgtest.gif",1); . . . . eagerly waiting for your response

    C / C++ / MFC c++ graphics help

  • embedding activex control in outlook mail message
    E emmatty

    helo friends, how can i embed an activex control in aoutlook mail message

    COM com question

  • activex control problem
    E emmatty

    hello firends, i am developing an activex control(MFC) that we are going to embed in webpage. But my question is Is it important to have a every clientmachine that downloads that webpage should have MFC dlls installed in them????? please help me. shankeran.com

    COM com help question c++

  • how to convert text into image using VC++6.0
    E emmatty

    hello firends, how can i convert text into image programmitically.:((

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

  • to make a transparent image
    E emmatty

    hi freinds, Can any one help to convert an programmitically generated image transparent

    C / C++ / MFC help
  • Login

  • Don't have an account? Register

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