what does this error mean:
Error Message: error CS0176: static member
'dzHW.dzHW.GetpProcessHandle(string)'cannot be accessed with an instance reference; qualify it with a type name instead
line number: 12
line: process = procname.GetProcessHandle(ProcessName)
thanks very much.
Error Message: error CS0176: static member
'dzHW.dzHW.GetpProcessHandle(string)'cannot be accessed with an instance reference; qualify it with a type name instead
line number: 12
line: process = procname.GetProcessHandle(ProcessName)
B4X:
'part of App_Start
Sub App_Start
procname.New1
ProcessName="device.exe"
process = procname.GetProcessHandle(ProcessName)
If process > 0 Then sysland_statechanged
If process < 0 Then Msgbox("myapp is not running.","Error!!!",cMsgboxOK,cMsgboxNone)
frmLandscape.Text=""
end sub
thanks very much.