Posts by Paulo Henrique • 43 points
4 posts
-
0
votes1
answer86
viewsA: Currentitemchanged event of a Bindingsource is not called when changing a subitem
After several attempts, I managed to solve the problem that way: // Aqui o binding da descrição da classe Bar textBoxBar.DataBindings.Add("TEXT", bindingSource, "Bar.Description", true,…
-
1
votes1
answer86
viewsQ: Currentitemchanged event of a Bindingsource is not called when changing a subitem
I got a class like that: public class Foo { #region Construtor public Foo() { } #endregion #region Propriedades public virtual int? Id { get; set; } public virtual string Description { get; set; }…
-
2
votes1
answer1170
viewsQ: "arithmetic Exception, Numeric overflow, or string truncation string right truncation" in search using LINQ
I have a table in a Firebird database CREATE TABLE CIDADE ( CID_CD SMALLINT NOT NULL, CID_DS CHAR(20) NOT NULL, CID_UF CHAR(2) NOT NULL, CID_DISTANCIA_SEDE SMALLINT NOT NULL, CID_CD_ALTERNATIVO…
-
1
votes1
answer393
viewsA: Ajax function does not pass the Success
Apparently there is nothing wrong with your code, try running the URL in a browser and check whether it will return the logged in user. Normally I do so: @GET @Path("/loginCustmerUser")…