.NET Framework 1.1 Errors messages when moving from on form to another

sheba2

New member
Joined
Apr 14, 2006
Messages
1
Programming Experience
Beginner
I have tried many times and many different ways to move from one form to another on my project but I keep getting the same error message which states:

Resources 'Form2.resx' and 'frmCat1100.resx' have the same manifest resource name 'JeopardyGame.Form2.resources'.

I am using VB Basic.NET and working on a game called Jeopardy. I want to have the user click a dollar amount on the Main form which takes them to another form called C1100 which has the question label and answer textbox. The when the Submit button is clicked, it should take them back to the Main form.

The code I am using is as follows:

In the module
=========

Module Jeopardy__Module1
Dim Main1 As New Form1
Dim C1100 As New Form2

Public Sub Main()
Application.Start(Main) 'program does not recognize "Start"
End Sub

Public Sub ShowForm2()
C1100.Show()
Main1.Hide()

End Sub

Public Sub ShowForm1()
Main1.Show()
C1100.Hide()

End Sub

End Module

On on the Main form
=============

Private Sub btnC1100Button_Click(ByVal sender As Object, ByVal e As System.EventArgs)

Handles btnC1100Button.Click
Me.btnC1100Button.Enabled = False
ShowForm2()
Me.Hide()

End Sub

On the second form (C1100)
==================
Private Sub uiSubmitButn_Click(ByVal sender As Object, ByVal e As System.EventArgs) Handles

uiSubmitButn.Click
Me.Hide()
ShowForm1()
End Sub

Can someone tell me what I am doing wrong and why I am getting the error message?

Thanks!
 
Back
Top