Posts by JotaSantana • 31 points
5 posts
-
0
votes1
answer652
viewsA: Publish WCF service on IIS with test environment
I’ll answer the question if anyone is in the same situation. After a lot of searching I decided to make the configuration via code instead of using . ini, the framework provides properties to…
-
0
votes3
answers485
viewsA: Make an ORDER in Mysql from another TABLE
I was going to post a reply similar to @Wallace, but after some tests here I saw that it wouldn’t work because Order is done after Group By, to solve you have to use the Max() function to get the…
-
2
votes1
answer472
viewsA: Combobox equal to Google search
Use the Autocomplete combobox is the simplest way, but it really only works for the initials of the typed text. In this link there is a solution doing the text search in hand, in Keyup event, is in…
-
1
votes1
answer652
viewsQ: Publish WCF service on IIS with test environment
I created a webservice using WCF . NET 4.0, and hosted on the IIS of our local server (when everything is ok it will be migrated to a web server). In the winform application I managed to consume the…
-
0
votes2
answers166
viewsA: Insert the last table data into a second table
This instruction only entered the last one, because it is using LIMIT 1, if you know how many records you need to copy change the LIMIT. Give more details about the process, this routine is part of…