So I figured out how to receive value from PLC, with using a button/label, in case someone else is ever having this issue. I'm currently using the Advanced HMI basic label to write value to PLC for conveyance. Would write to PLC be the same as below, except use the .write("") instead of .read("") ?
Private Sub Button1_Click(sender As Object, e As EventArgs) Handles Button1.Click
Label2.Text = EthernetIPforSLCMicroCom1.Read("N7:0")
End Sub