Both of replies are very helpful. I think I have got the point. Thank you very very much.
Md. Humayuon Kabir Hemoo
Both of replies are very helpful. I think I have got the point. Thank you very very much.
Md. Humayuon Kabir Hemoo
Hi, I'm developing a reconciliation software. I have to find the matching items using some rules. However, some items represent sum of other items but I don't know which are they. So, I need to find, by trial and error, the numbers that represent the another number. List 1 : 10, 300, 50 List 2 : 5, 50,20,25,150,5,30,50,5,20 Here 10 = 5 + 5 300 = 50 + 150 + 25 + 5 + 50 + 20 50 = 20 + 30 There may be hundreds of such number like in List 2 and dozens likes List 1. My job is to find which number make up the numbers in List 1 base only on the numbers. Can any one knows about any algorithm to achieve this task. Thanks
Md. Humayuon Kabir Hemoo
Make it #define ABSOLUTE(a) (a > 0 ? a : -1*a) by the way there is already a macro defined as "ABSOLUTE" in wingdi.h ;)
Md. Humayuon Kabir Hemoo
I didn't know this before, thanx. By the way, removing WS_BORDER didn't work.
Md. Humayuon Kabir Hemoo
I want to remove the border.
Md. Humayuon Kabir Hemoo
Hi Mark, Thanks for your response. It seemes I need to draw the combobox my self. But don't you think SetWindowRegion should set the painting area of a control? Humayoun
Md. Humayuon Kabir Hemoo
Can any on tell me how to remove borders from a Combobox. I tried SetWindowRegion, it worked for Edit control, but it did not work with Combobox Thanx :sigh:
Md. Humayuon Kabir Hemoo
modified on Saturday, February 16, 2008 12:55 PM
I just need it:)
I think your project creation date is later than project building date. Try changeing the system date Humayun.
Actually I'm trying to design a resizable form from a dialog box resource. I don't want to use document view architechture. How can I create a CFormView object that uses the dialog box I designed in the resource editor.
hi, I'm trying to create a Form from a dialog box template whithout Document/View Architecture. Can any one help me? Thanks.