How to create menu

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • Killer42
    Recognized Expert Expert
    • Oct 2006
    • 8429

    #16
    Originally posted by cjbrx3115
    It says, "Sorry! That user has specified that they do not wish to receive emails. If you still wish to send an email to this user, please contact the administrator and they may be able to help."
    Argh!

    I changed that option, specifically so you could send me this e-mail. Hang on, I'll check...

    The option is definitely turned on: Receive Email from Other Members

    This must be a bug. It could be simply a delay in changing the setting, but it has been almost 24 hours. I'll have a word with the Admins and get back to you.

    Comment

    • cjbrx3115
      New Member
      • Jan 2007
      • 93

      #17
      Originally posted by Killer42
      Argh!

      I changed that option, specifically so you could send me this e-mail. Hang on, I'll check...

      The option is definitely turned on: Receive Email from Other Members

      This must be a bug. It could be simply a delay in changing the setting, but it has been almost 24 hours. I'll have a word with the Admins and get back to you.
      Ok great! I'll send it as soon as I can.

      Comment

      • Jolace
        New Member
        • Apr 2007
        • 16

        #18
        Now i dont know what to do... Give me your e mail adress because i must finish project to 14 April so i must create this menu and connect forms..Find some way to contact me

        Comment

        • scorpionking007
          New Member
          • Apr 2007
          • 5

          #19
          Hi can anyone give me the code for the Admin and User login plzz tell me someone
          Thanx

          Comment

          • cjbrx3115
            New Member
            • Jan 2007
            • 93

            #20
            Originally posted by scorpionking007
            Hi can anyone give me the code for the Admin and User login plzz tell me someone
            Thanx
            I don't get it...?

            Comment

            • Killer42
              Recognized Expert Expert
              • Oct 2006
              • 8429

              #21
              Originally posted by scorpionking007
              Hi can anyone give me the code for the Admin and User login plzz tell me someone
              Can you "plzz" explain what you mean?

              Comment

              • rk2007
                New Member
                • Apr 2007
                • 3

                #22
                Originally posted by cjbrx3115
                Just create the menu, and double click the button on the menu to get its properties when clicked.

                Here's the code...

                1.) First create forms for derivats, oil, auto parts, and tyres (tires?).

                MAIN FORM (the one with the menu)

                Code:
                Public Class Form1
                
                
                    Private Sub OpenToolStripMenuItem_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles DerivatsToolStripMenuItem.Click
                        derivats.Visible = True
                    End Sub
                
                
                    Private Sub OilToolStripMenuItem_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles OilToolStripMenuItem.Click
                        oil.Visible = True
                    End Sub
                
                
                    Private Sub AutopartsToolStripMenuItem_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles AutopartsToolStripMenuItem.Click
                        autoparts.Visible = True
                    End Sub
                
                
                    Private Sub TyresToolStripMenuItem_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles TyresToolStripMenuItem.Click
                        tyres.Visible = True
                    End Sub
                
                
                End Class
                Hope that helps.

                Good luck,

                -Cody-

                i need a visual basic code to change password

                Comment

                • cjbrx3115
                  New Member
                  • Jan 2007
                  • 93

                  #23
                  What password?

                  Comment

                  • Killer42
                    Recognized Expert Expert
                    • Oct 2006
                    • 8429

                    #24
                    Originally posted by rk2007
                    i need a visual basic code to change password
                    Since this doesn't relate the the original question about menus, please start a new thread for your question.

                    Comment

                    Working...