Without a doubt, you will find a wide variety of developer and webmaster resources that include scripts, tutorials, website ideas, website reviews, and a developer resource directory.

Developer Checklist
These are the basic steps involved in any development project:

  • Start with an idea
  • Research idea
  • Make a content plan
  • Buy a domain 
  • Gather content
  • Buy or design template
  • Get logo made
  • Structure site
  • Fill in content
  • Find web hosting
  • Upload site 

Visit other websites that are owned and operated by Developerz.com.

Domain Names
Free Online Games
Stock Directory
Game Search Engine
Domain Name Directory
Domain Articles
Web Hosting Directory
Cheap Domain Registration

 

   


Visual Basic Menu Properties

Caption - the visible text you see

Name - the name used in code to refer to the menu control

Checked - determines whether a small check mark is displayed to the left of the menu control

Visible - determines whether a menu control can be seen

Enabled - if FALSE, the text is grayed out and cannot be selected

Index - used only when the menu control is part of a control array

Shortcut - a key sequence that will invoke the menu

HelpContextID - determines which topic in the help file will be displayed

NegotiatePosition - works in conjunction with OLE embedment to determine which menu controls are displayed

WindowList - determines whether a menu control maintains a list of the current MDI child windows

code for a pop-up menu::
CODE
If Button = 2 then
form1.PopupMenu "mnuTestPopUp"
End If