Discussions
Categories
Groups
Community Home
Categories
INTERNAL ENABLEMENT
POPULAR
THRUST SERVICES & TOOLS
CLOUD EDITIONS
Quick Links
MY LINKS
HELPFUL TIPS
Back to website
Home
Content Management (Extended ECM)
API, SDK, REST and Web Services
Form API - ListData
Colin_Breen_(cbreen_-_(deleted))
Dim llform As LAPI_FORMS Dim fdata As LLValue Dim fd As LLValue Dim sq As LLValue Dim i as Integer llform = New LAPI_FORMS(session) fdata = (New LLValue).setAssocNotSet fd = (New LLValue).setAssocNotSet sq = (New LLValue).setAssocNotSet i = llform.ListData(-3303, 4967, fdata, fd, sq) TextBox2.Text = i TextBox2.Text = fdata.ToStringThe result in textbox2 is ?The Form contain data field date but i can't retrieve it by calling ListDatai value = 112101?Can someone tell me where is going wrong?
Find more posts tagged with
Comments
Carsten_Kulms
The LAPI_FORMS return code 112101 corresponds to "Error loading submitted data".You should check the detailed error message; see the VB example in the LAPI documentation how to display all the error information of the used session.