(VC 6.0 Bug) DialogBox property "Right to left layout"
-
Microsoft Says: --------------- (There is a bug in the original release of Visual Studio 6.0. The dialog editor writes the symbol to the .RC file as WS_EX_LAYOUT_RTL rather than WS_EX_LAYOUTRTL. This should be fixed in a future version of Visual Studio.) ------------------------------------- The Operating system is Window2000 and Tool is VC++ 6.0. When i set the "Right to left allignment property of a dialog box" and error occured "error RC2104 : undefined keyword or key name: WS_EX_LAYOUT_RTL" which means this symbol is not defined. then i checked the microsoft site and i come to know that it is a bug in VC6.0. To fix the bug i used "WS_EX_LAYOUTRTL" instead of "WS_EX_LAYOUT_RTL"as told me by the microsoft site but now compiler says "WS_EX_LAYOUTRTL" is not defined. so what is the solution of this bug. Have a nice wishes for helper.
-
Microsoft Says: --------------- (There is a bug in the original release of Visual Studio 6.0. The dialog editor writes the symbol to the .RC file as WS_EX_LAYOUT_RTL rather than WS_EX_LAYOUTRTL. This should be fixed in a future version of Visual Studio.) ------------------------------------- The Operating system is Window2000 and Tool is VC++ 6.0. When i set the "Right to left allignment property of a dialog box" and error occured "error RC2104 : undefined keyword or key name: WS_EX_LAYOUT_RTL" which means this symbol is not defined. then i checked the microsoft site and i come to know that it is a bug in VC6.0. To fix the bug i used "WS_EX_LAYOUTRTL" instead of "WS_EX_LAYOUT_RTL"as told me by the microsoft site but now compiler says "WS_EX_LAYOUTRTL" is not defined. so what is the solution of this bug. Have a nice wishes for helper.
I think you should install SP5 Nish Sonork ID 100.9786 voidmain www.busterboy.org If you don't find me on CP, I'll be at Bob's HungOut
-
Microsoft Says: --------------- (There is a bug in the original release of Visual Studio 6.0. The dialog editor writes the symbol to the .RC file as WS_EX_LAYOUT_RTL rather than WS_EX_LAYOUTRTL. This should be fixed in a future version of Visual Studio.) ------------------------------------- The Operating system is Window2000 and Tool is VC++ 6.0. When i set the "Right to left allignment property of a dialog box" and error occured "error RC2104 : undefined keyword or key name: WS_EX_LAYOUT_RTL" which means this symbol is not defined. then i checked the microsoft site and i come to know that it is a bug in VC6.0. To fix the bug i used "WS_EX_LAYOUTRTL" instead of "WS_EX_LAYOUT_RTL"as told me by the microsoft site but now compiler says "WS_EX_LAYOUTRTL" is not defined. so what is the solution of this bug. Have a nice wishes for helper.
You need to make sure you've got the latest version of the platform SDK installed. This has WS_EX_LAYOUTRTL defined. As a general guide, always make sure you are using the latest platform SDK and don't rely on the include files that ship with Visual Studio. Michael :-)
-
I think you should install SP5 Nish Sonork ID 100.9786 voidmain www.busterboy.org If you don't find me on CP, I'll be at Bob's HungOut
A look in afxpriv.h shows the define. I guess one of the service packs must have added it for MFC use. Michael :-)