Author Topic: New error creating second page  (Read 1382 times)

Cowboy1

  • Jr. Member
  • **
  • Posts: 65
    • View Profile
New error creating second page
« on: July 19, 2015, 02:56:49 PM »
I don't understand this error I'm getting when I try to build my second page:
Private Sub Initialize Component () has multiple definitions with identical signatures

Archie

  • Administrator
  • Hero Member
  • *****
  • Posts: 5269
    • View Profile
    • AdvancedHMI
Re: New error creating second page
« Reply #1 on: July 19, 2015, 06:01:41 PM »
Your new form must have the same name as another form. Right click each form and View Code. Then check the first line

Public Class ???????


Cowboy1

  • Jr. Member
  • **
  • Posts: 65
    • View Profile
Re: New error creating second page
« Reply #2 on: July 19, 2015, 06:09:03 PM »
Your new form must have the same name as another form. Right click each form and View Code. Then check the first line

Public Class ???????

Sorry I didn't close this up. I started over I had so many problems and figured I had messed some stuff up in my learning process. I would like to know how to add more than just the one page extra though.

Thanks,

David

Archie

  • Administrator
  • Hero Member
  • *****
  • Posts: 5269
    • View Profile
    • AdvancedHMI
Re: New error creating second page
« Reply #3 on: July 19, 2015, 06:54:56 PM »
- Right Click the AdvancedHMI project in Solution Explorer
- Select Add->Windows Form
- Give it a unique name and click OK

Cowboy1

  • Jr. Member
  • **
  • Posts: 65
    • View Profile
Re: New error creating second page
« Reply #4 on: July 19, 2015, 11:13:22 PM »
- Right Click the AdvancedHMI project in Solution Explorer
- Select Add->Windows Form
- Give it a unique name and click OK

Works perfect thanks. I will tackle the pump tomorrow.