Through webservices, I must reproduce The "Customer Card" form into a web prject within Visual studio (C#).
Till here everything is allright but I can't fill out a dropdown liste with the values of an option field.
I have a problem too with how to reproduce the look up button to select a customer.
I need your help. Thanks
0
Comments
Lookup - you need to read the customers from another webservices, display them, work with the paging etc...
MVP - Dynamics NAV
My BLOG
NAVERTICA a.s.
MVP - Dynamics NAV
My BLOG
NAVERTICA a.s.
Thanks for ur answer
Please look this and tell me what's wrong, because "cust.Blocked = Blocked.All" doesn't work
Customer_Service service = new Customer_Service();
service.UseDefaultCredentials = true;
service.Url = "http://localhost:7047/DynamicsNav/WS/VenteaCredit/Page/Customer";
Customer cust = new Customer();
cust.Blocked = Blocked.All;
cust.Name = "BIIILLLL";
service.Create(ref cust);
MVP - Dynamics NAV
My BLOG
NAVERTICA a.s.
MVP - Dynamics NAV
My BLOG
NAVERTICA a.s.