Interesting questions
-
0
votes0
answers19
viewsError trying to create Sql Server database in Visual Studio (C#)
I’m trying to create a database in Visual Studio, but returns error as the capture screens even with active services. From now on, thank you.…
-
0
votes1
answer34
viewsHow not to play for API response page?
By clicking on the button I designed to communicate with the call API, it throws me to a page where it confirms that everything was correct. Do not qeroq play for this page, what I could do,…
-
0
votes1
answer173
viewsGroup products by vuejs categories
I have a component that displays products and I have an H2 where I display the category name. The problem is that the names of the repeated categories appear, since two products belong to the same…
-
1
votes1
answer264
viewsImpose ! inline CSS attribute
I have a big problem to solve here and even though I think there is no solution I want help, I will not be seeing the problem as a whole... I have the following code on a page: .elemento { width:…
-
1
votes1
answer1202
viewsSend Image Base64 to e-mail
I am trying to send an email with an image in Base64. html is going however the image does not. An example of how the message is mounted: <p>Mensagem.</p><br><br><img…
-
2
votes1
answer84
viewsHow to assign character array in a structure?
The program reads 10 films, each film has gender name, and age rating, then lists; I’m having trouble assigning matrix string (I think it’s just that mistake) #include <stdlib.h> #include…
-
-2
votes4
answers177
viewsCount(*) returning null
I have this query: SELECT COUNT(*) FROM USER_IND_COLUMNS WHERE TABLE_NAME = UPPER('TABLE') AND COLUMN_NAME IN (UPPER('ANO'),UPPER('MES'),UPPER('DIA'),UPPER('HORA')) GROUP BY INDEX_NAME HAVING…
-
1
votes1
answer309
viewsPlacing static HTML element as an extension for Chrome
I would like to make an extension for Google Chrome that enables a horizontal bar that is always available at the top of the user window. The placement would be something like: The question is: how…
-
1
votes2
answers404
viewsConsuming Webapi by Angularjs
I have a POST method in Webapi, and this defined the Routeprefix of the Api, the Route of the POST method and Cors is enabled. [RoutePrefix("api/v1/crm")] [EnableCors(origins: "*", headers: "*",…
-
4
votes3
answers551
viewsif and Else with almost equal blocks
In Python, suppose I have a function: def func(x): if x%2 == 0: j = x/2 print(j) else: j = x print(j) Don’t mind the logic of the code, it’s just a simple example. The if and Else blocks are almost…
-
0
votes1
answer247
viewsQuery Mysql with 3 tables
I have the following query that should bring the sum of views and last view (table sir_ter_relatorios_terrenos), sum of favourites (table sir_ter_favoritos) and the person’s name (table sir_users)…
-
3
votes2
answers186
viewsRun command for each column of a date.frame
Hi, I have a data.frame (df) 8 rows x 8 columns. I am calling the columns "ST[i]". df <- structure(list(ST1 = c(58.69, 58.5, 58.5, 58.69, 58.69, 58.5, 58.69, 58.69), ST2 = c(68.7, 68.42, 68.42,…
-
2
votes1
answer158
viewsError generating production report - Reportviewer Version 11
I am working with webforms and generating a report in reportviewer locally, the report accepts parameters and has a dataset // Parametros List<ReportParameter> parametersReport = new…
-
1
votes2
answers2473
viewshow to extract zip files in c# to a folder where system is installed
How to Extract Zip Files in c# to a folder where the system is installed? using System; using System.IO.Compression; using System.Windows; using System.Xml; namespace TestXml { /// <summary>…
-
1
votes0
answers281
viewsfloating banner covering the entire page
I want a banner or a div that is in the middle of my page is that in this banner has a button to close it is that until it closes it is not possible to have access to anything of the page..…
-
3
votes2
answers312
viewsHow to round up number?
I need to use the following logic to round up: Numbers between x.1 and x.9 will be rounded to x.5, that is, it would look like this using examples: 1.0 = 1; 1.2 = 1.5; 1.9 = 1.5; Any idea on how to…
phpasked 7 years, 5 months ago Angular Man 47 -
-2
votes0
answers32
viewshow to use "SET ARITHABORT ON" in vb6
Good afternoon Personal, I needed to use some commands to concatenate some records in a query... So far so good, I did it that way and it worked: SET ARITHABORT ON; SELECT COALESCE((SELECT…
-
2
votes0
answers22
viewsGeneric method for updating Cross-thread error form
I have a form where you need to do several updates using the thread-safe calls for Windows Forms controls Snippets of code that do this repeat several times. Trying to refactor I created a kind of…
-
2
votes2
answers115
viewsWhat is the linux text editor command that I can see output in real time?
What is the linux text editor command that I can see output in real time? For example I want to give a "vim" in the access log of my apache I want to see GET entering the log in real time which…
-
2
votes1
answer1172
viewsNode.js receiving GET command
Hello, due to some problems to load the bootstrap Twitter libraries in my project, I made several changes to it, in which with help from other users, I arrived at the following Node.js code: Node.js…