Basic4ppc: Compiling error CS0012

Ariff

New Member
Licensed User
Hi,

I'm an beginner in writing source codes in basic.

When I tried to compile my codes, I received an error message of error CS0012 as per below:

upload_2015-12-17_17-10-10.png



Did anyone encountered this?
Do you have any idea of solving this issue?

Thanks!
 

Attachments

  • upload_2015-12-17_17-9-6.png
    upload_2015-12-17_17-9-6.png
    25.5 KB · Views: 354

Ariff

New Member
Licensed User
Hi Erel,

Thanks for reply.

I wrote a simple code as below and compile it. I'm able to compile it & run the exe without no issue.

//
Sub Globals
'Declare the global variables here.

End Sub

Sub App_Start
Msgbox("Are the LED(s) light up correctly?","Test Result",cMsgboxYesNo, cMsgboxQuestion)
End Sub
//
 
Top