Posts by Juliano • 51 points
5 posts
-
0
votes4
answers362
viewsA: C# e.Hasmorepage is in Eternal Loop
Try it on there if (yPage > e.PageBounds.Height) { e.HasMorePages = true; yPage = 0; }else{ e.HasMorePages = true; }
-
2
votes2
answers223
viewsA: Currency fields 1.99 saving as 199 on Access
I decided editing directly in Dataset Designer, somehow it was setting providerType to Numeric, all I did was change to currency…
-
1
votes2
answers223
viewsA: Currency fields 1.99 saving as 199 on Access
Searching I found the following material, but as I used the tableAdapter components and datasets throughout the system I can’t apply it! but follows the code! public void Gravar(String Nome,…
-
1
votes2
answers2042
viewsA: jQuery: Show/Hide DIV inside a specific element
Being a little more specific than the colleague above and reinforcing what Patrick said, when repeating elements do not use id, but classes!!! Use find to find a specific element, in which case use…
-
1
votes2
answers223
viewsQ: Currency fields 1.99 saving as 199 on Access
I have a problem when I go to save the data of fields currency or decimal in an Access database using Visual Studio components. When I save something like 1.99m or has 1,99 in the textbox the data…