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
emmatty
Posts
-
Please help!!! -
Preloaded symbols may not matchWhenever 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
-
How to determine a folder is emptyIs there any single function to determine wether a folder is empty in VC++! Thanks in advance emmatty
-
Obtaining the name of the caller functionIs 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
-
HOW U RATE THIS CONCEPTWhile i was cruising thru the net i accidently found a rather intresting concept How you rate this concept http://gcommerce.blogspot.com/
-
Editing flexgridHello, 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.
-
How can i change color of a specific word in a sentenceThanks 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.
-
How can i change color of a specific word in a sentenceHello, 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.
-
NT Services without threadsHello 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
-
calculating response time for a http requestHello, 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.
-
PropertySheet dissappearingI 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
-
adding date in perlHello, How can i add date in perl. Is there any function or modlues that support these type of functions? Please help me. John.
-
How can i avoid messagebox??Hi Friends, How can i programmatically cancel a message box that popped during a startup of a application thanx, John
-
outlook embeddinghello, 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:
-
outlook embeddinghello, 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.
-
creatting a transparent text GIF using CXImagehello 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
-
embedding activex control in outlook mail messagehelo friends, how can i embed an activex control in aoutlook mail message
-
activex control problemhello 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
-
how to convert text into image using VC++6.0hello firends, how can i convert text into image programmitically.:((
-
to make a transparent imagehi freinds, Can any one help to convert an programmitically generated image transparent