MFC: Can't insert controls after inserting an ActiveX Control!!
-
Hi, It's the first time I'm using ActiveX Control. I'm working with VS .NET 2003 and I must say that I'm a beginner to C++ and MFC. My problem is after I have inserted an ActiveX Control (any ActiveX control), I can't insert any other controls, like a Button, Edit Control, etc. I select the control I want and when I click to insert it where I want, nothing happen! This problem is only in my main dialog: the CFormView dialog. I need help here, I tried a few things, but without success! Thanks, Dave
-
Hi, It's the first time I'm using ActiveX Control. I'm working with VS .NET 2003 and I must say that I'm a beginner to C++ and MFC. My problem is after I have inserted an ActiveX Control (any ActiveX control), I can't insert any other controls, like a Button, Edit Control, etc. I select the control I want and when I click to insert it where I want, nothing happen! This problem is only in my main dialog: the CFormView dialog. I need help here, I tried a few things, but without success! Thanks, Dave
Ok, I found out that the ActiveX control seems to be a coincidence. It's more like a have reach a limit on the quantity of controls I can have in my dialog!!! Is it possible? I can insert one more control, and after that, no more control can be inserted!!! I don't know why it's doing this! Dave
-
Ok, I found out that the ActiveX control seems to be a coincidence. It's more like a have reach a limit on the quantity of controls I can have in my dialog!!! Is it possible? I can insert one more control, and after that, no more control can be inserted!!! I don't know why it's doing this! Dave
Davex_ wrote: It's more like a have reach a limit on the quantity of controls I can have in my dialog!!! Is it possible? The Visual C++ dialog edit only supports 256 controls on the dialog. Windows allows many more, of course, but you'll have to either manually edit the resource file, or create the controls at runtime.
Ryan
"Punctuality is only a virtue for those who aren't smart enough to think of good excuses for being late" John Nichol "Point Of Impact"
-
Davex_ wrote: It's more like a have reach a limit on the quantity of controls I can have in my dialog!!! Is it possible? The Visual C++ dialog edit only supports 256 controls on the dialog. Windows allows many more, of course, but you'll have to either manually edit the resource file, or create the controls at runtime.
Ryan
"Punctuality is only a virtue for those who aren't smart enough to think of good excuses for being late" John Nichol "Point Of Impact"