Posts by mba • 210 points
18 posts
-
-1
votes1
answer92
views -
0
votes2
answers282
viewsA: Comparing date and time in different fields
I solved the problem as follows: SELECT P.nome, A.data, A.hora from acesso as A inner join Pessoa as P on A.id_pessoa = P.id where A.data between @data1 and @data2 and 1 = (case when A.data = @data1…
-
0
votes2
answers282
viewsQ: Comparing date and time in different fields
I have a table that contains the following fields type name (nvarchar), Date of type (Date) and time like (Time). I need to do the comparison by period example: 08-02-2019 e 18:30:10 até 30-05-2019…
-
-1
votes1
answer424
viewsQ: How to increase fullCalendar time
As it leaves the fullCalendar time period in four period of 15 me each. And how to start the timeline through a finished time. By default the plug comes initialized at 0:00 and end 23:00. Another…
-
1
votes2
answers87
viewsQ: How to pass data from select to an array
How to save the select data down to an array SqlConnection conConexao1 = clsdb.AbreBanco(); SqlCommand cmd1 = new SqlCommand("select id, tamplete1, tamplete2 from usuarios ", conConexao1);…
-
0
votes1
answer28
viewsQ: How to make the correct Ipaddress.Parse conversion
Hello, I’m making a communication with an equipment using socket. I’m using the library System.Net to convert the ip and pass the port as parameter in the IPEndPoint to use in the…
-
1
votes1
answer456
viewsQ: Putting effect in text box
My person doubt is more theoretical, I would like to know what is the name of the effect that we give when the input rece focus the name that is inside the box it goes to the top. The feeling I have…
-
0
votes1
answer237
viewsQ: Updating date and clock
I am creating a clock from an informed value, the problem is that the clock is not being updated. The other problem is that the exhibition is reversed, the month is coming before the day. What am I…
-
0
votes1
answer726
viewsQ: Handling request message in Ajax HTTP Status Code
I have a request in Ajax that consults payments on a third party server, I would like to know how to handle HTTP errors. Example: 'server responded with a status of 404 (Not Found)' This error can…
-
0
votes1
answer362
viewsA: How to Decrease Paper Size
The problem was in the printer, I downloaded the software from the manufacturer and reset the printer settings and solved the problem. Thank you.
-
-1
votes1
answer362
viewsQ: How to Decrease Paper Size
I am making a print with css print on the Bematech MP-4200 TH printer, my content is in a good size customized by css, however I would like to decrease the size of the paper because this leaving a…
-
2
votes1
answer155
viewsQ: How to disable a datatables at print time
The page has a datatables https://datatables.net/, would like to hide the items that is created by it at the time of printing, example: search field, paging etc. My datatable is like this:…
-
0
votes2
answers94
viewsQ: Creating a foreach as a result of an Entity query
Hello, I’m trying to foreach a query result, the field I need is a string, but at the time I step into the foreach it’s being transformed into another value. I need to compare two dates, in case the…
-
1
votes2
answers1870
viewsQ: How to pass input value via post on Asp.net core Razor
I would like to know how to pass the entered value in an input to a Post method in Pagemodel. In cshtml: <div class="col-sm-6"> <label asp-for="Tickets.Identificador"…
-
0
votes0
answers401
viewsQ: Reducing the photo size
I am recording the photos taken by my application in the sqlite database, know that it is not much recommended more need to transfer these photos to a central database that unifies all data of all…
-
2
votes1
answer756
views -
0
votes1
answer559
viewsQ: Change color of Listview item in Xamarin according to database data
I need to change the color of the listview item according to the data coming from the database, I have a field visited that this receiving a "*" would like to change the color of the person who has…
-
1
votes1
answer202
viewsQ: Delete listview item in Xamarin
How do I delete an item from my listview? I delete the item, but when I click on the next item the same item I deleted is selected. My code: adapter.Remove("LISTA 1"); adapter.Remove("LISTA 2");…