In a program I am currently working on, I renamed one of the forms to remove a space (ie. Main Form.vb --> MainForm.vb)
But now I have a problem ... when I want to reference a control on MainForm from another module, it doesn't "know" the new name. So when I type MainForm.TextBox1.Text="some text", I get the blue squiggle line under MainForm & the error tooltip says "Name 'MainForm' is not declared." It seems like the IDE does not recognize the new name of the form I renamed. Can anyone help me resolve this? I would greatly appreciate it. Thanks...