User1142184950 posted
If someone can help me, I would greatly appreciate it
I have a Sub that I created in a class file AKA my DAL. The class file is located in a folder in my project as MetricsDAL.StoreDAL
I have a usercontrol called DailyView.ascx. At the top I make sure to "Import MetricsDAL" I also tried "Import MetricsDAL.StoreDAL" but either way it doesn't work.
So down below in my DailyView.ascx I set the object as "Dim myMetricsDal as New MetricsDAL.StoreDAL" <- which is the actual page where my sub resides.
Then I say "Call myMetricsDal. xxxx " and it doesn't show up in the list, or if I type it in as "FillGrid3" it does not exist in "StoreDAL" yet I see it sitting in there ready to go!
What am I doing wrong?
Essentially I want a Sub that does a database call, get values, then pass it to the DailyView page where I will assign to different Labels. But not working
Help of guidance please?
B