In the sample project "Helloworldbasic",I only added script codes about submenu as below
RESOURCE MENU_PANE r_helloworldbasic_submenu
{
item =
{
MENU_ITEM
{
command = EHelloWorldBasicSB1;
txt = "sub menu1";
},
MENU_ITEM
{
command = EHelloWorldBasicSB2;
txt = "sub menu2";
}
};
}
Then,I run abld command "abld makefile vc6" and compiled entire project again in VC IDE.
But it failed to compile.In output window,There was one compiling error "Label not found" in rss file and pointed to
the code line 'RESOURCE MENU_PANE r_helloworldbasic_submenu'.Why and how to resolve it?Thanks for your time


Reply With Quote


