Samapico Posted September 26, 2006 Report Posted September 26, 2006 I remember changing this:For i = 0 To UBound(hmnu) hmnu(i) = GetSubMenu(mainmnu, i) Next to For i = 0 To UBound(hmnu) hmnu(i) = GetSubMenu(mainmnu, i + 1) Next(in frmGeneral's SetIconsToMenu sub) because for some reason it seemed to consider the "menu" represented by the drake icon just to the left of "File" ; i.e. "File" was hmnu(1), instead of hmnu(0) but now, I needed to switch it back because hmnu(0) IS "File" now... so wtf... does it depend on VB version? what happens when compiling? which one to use... i'm confused
Drake7707 Posted September 26, 2006 Report Posted September 26, 2006 the way it was originally worked here, and i have vb6 enterprise edition (without sp4 installed)
Recommended Posts