Link to home
Start Free TrialLog in
Avatar of r3nder
r3nderFlag for United States of America

asked on

Expression is a value and there fore cannot be the target of an assignment

EMPPINENTERED = ""
        EMPPINENTERED = Result.ToString()

Open in new window

Thats the error i am getting from these 2 lines of code
Avatar of Éric Moreau
Éric Moreau
Flag of Canada image

how is EMPPINENTERED defined?
Avatar of r3nder

ASKER

Public Function EMPPINENTERED() As String
        'Throw New NotImplementedException
    End Function
ASKER CERTIFIED SOLUTION
Avatar of Éric Moreau
Éric Moreau
Flag of Canada image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Maybe this is what you want to do?
Dim Result = EMPPINENTERED( )

Open in new window

Avatar of r3nder

ASKER

Thanks Eric