02-02-2016 10:50 AM
Can anyone help me understand following error and reason I would be getting it?
NI-XNET: (Hex 0xBFF630C0) A property value was out of range or incorrect. Solution: specify a correct value.
I am using default database ":memory:" and creating objects on the fly (ECU,Frames, Schedules etc). But when I go to call "nxCreateSession" or "nxCreateSessionByRef" I get this error.
02-03-2016 10:59 AM
Are all of your values that you are setting with nxdbSetProperty valid inputs? If you could provide a list of properties and values that you are setting, I may be able to help you find any that are invalid. Unless you are explicitly checking for it, an erroneous input may not throw an error until you try to create the session.
02-03-2016 12:08 PM
Thanks for your replied DangerDave. I was able to figure out the problem.
I noticed that the value for "nxPropClst_LINTick" property I was setting to 10 which is interpreted as (10000 ms in the databse editor) and that was causing this error.
I rectified it to (0.01 which is 10 ms) and everything just started working.
02-03-2016 12:53 PM
Nice catch. Glad it's working for you now!