I have been changing some namespace stuff, but I do not understand why I am getting this error. I can access the CoreClasses just fine, but API is an issue.
Code that gives me the error:
vb Code:
CoreClasses.API.adjustWindowSize(Me, frmStudy)
Error:
Snippets from API:Quote:
Error 8 'API' is not a member of 'CoreClasses'. C:\Users\Jeff\Documents\JeffWorkSpace2\StudyX.NET\frmAskQuestion.vb 132 9 study
vb Code:
Imports System.Runtime.InteropServices Imports System.Windows.Forms Namespace CoreClasses Implements IDisposable Public Class API Shared Sub adjustWindowSize(theForm As Form, formToCheck As Form) End Sub End Class End Namespace
