Error code BC30002

anshikam

New member
Joined
Feb 24, 2021
Messages
1
Programming Experience
1-3
I am trying to run an app with 4 window forms however i get several errors.
This is a very simple app. Not sure why these errors..... new at this so if anyone can please guide would be great!!!!!


Severity Code Description Project File Line Suppression State
Error BC30002 Type 'Global.Microsoft.VisualBasic.ApplicationServices.User' is not defined. TASK MASTER C:\Users\anshika\source\repos\TASK MASTER\TASK MASTER\vbc 1
Severity Code Description Project File Line Suppression State
Error BC30002 Type 'Global.Microsoft.VisualBasic.Devices.Computer' is not defined. TASK MASTER C:\Users\anshika\source\repos\TASK MASTER\TASK MASTER\vbc 1 Active
Severity Code Description Project File Line Suppression State
Error BC30002 Type 'Global.Microsoft.VisualBasic.ApplicationServices.WindowsFormsApplicationBase' is not defined. TASK MASTER C:\Users\anshika\source\repos\TASK MASTER\TASK MASTER\vbc 1 Active
Severity Code Description Project File Line Suppression State
Error BC30456 'ApplicationServices' is not a member of 'Microsoft.VisualBasic'. TASK MASTER C:\Users\anshika\source\repos\TASK MASTER\TASK MASTER\My Project\Application.Designer.vb 26 Active
Error BC30456 'IsSingleInstance' is not a member of 'MyApplication'. TASK MASTER C:\Users\anshika\source\repos\TASK MASTER\TASK MASTER\My Project\Application.Designer.vb 27 Active
Error BC30456 'EnableVisualStyles' is not a member of 'MyApplication'. TASK MASTER C:\Users\anshika\source\repos\TASK MASTER\TASK MASTER\My Project\Application.Designer.vb 28 Active
Error BC30456 'SaveMySettingsOnExit' is not a member of 'MyApplication'. TASK MASTER C:\Users\anshika\source\repos\TASK MASTER\TASK MASTER\My Project\Application.Designer.vb 29 Active
Error BC30456 'ShutDownStyle' is not a member of 'MyApplication'. TASK MASTER C:\Users\anshika\source\repos\TASK MASTER\TASK MASTER\My Project\Application.Designer.vb 30 Active
Error BC30456 'ApplicationServices' is not a member of 'Microsoft.VisualBasic'. TASK MASTER C:\Users\anshika\source\repos\TASK MASTER\TASK MASTER\My Project\Application.Designer.vb 30 Active
 
What type of project is it? Windows Forms (.Net Framework)? The errors are all related to Application Framework, which usually is enabled in Application page of project properties.
 
Back
Top