Jump to content
SubSpace Forum Network

Recommended Posts

Posted

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

Guest
This topic is now closed to further replies.
×
×
  • Create New...