Posts by Andrey Hartung • 1,763 points
42 posts
-
0
votes1
answer591
viewsA: Convert SSIS data from varchar to int
Right click on the task that fetches the CSV data and opens the Advanced Editor, then you go to the Input and Output Properties > Source > Output Columns > click on the field you want to…
-
1
votes0
answers335
viewsQ: SSIS - Errors when running a package . dtsx
I am running a package that has 2 variables to run a date filter and when running it it works properly, but it bursts the following errors: -> Error: Attempt to parse the expression…
ssisasked Andrey Hartung 1,763 -
8
votes2
answers439
viewsQ: Settings . bat running a . dstx
I am running a file . dtsx using a load bat and I am wanting to make some adjustments: Legibly mount the file name date. Adjust in log file to tell which package name . dtsx was executed Decrease…
-
3
votes1
answer3140
viewsQ: How to convert this date to datetime in oracle?
Correct way to convert the date '27/12/2016 16:31:39,137000000' for datetime(timestamp(6)) in the oracle? Some unsuccessful attempts that result in error ORA-01821: formato de data não reconhecido…
-
0
votes1
answer844
viewsQ: Why does this query not work on Oracle?
I am translating a query from SQL Server to Oracle and found an error that makes no sense and I am unable to fix. The error shown is as follows:: ORA-00904: "ITM"."NRO_INT_ITEM": identificador…
-
0
votes1
answer178
viewsA: Bug script to delete entire SQL SERVER database
The variable @COMANDO era varchar(8000), but the amount of CONSTRAINT caused the command to burst this size, because of that the last line was cut. So if I ran the second time he would finish…
-
3
votes1
answer178
viewsQ: Bug script to delete entire SQL SERVER database
I have the script below to drop EVERYTHING from the database, but in one of the database I have the processing that needs this script happens a bug, for some reason it can not run the first time I…
-
0
votes2
answers300
viewsQ: How to reload grid without checking if it exists JS Jquery
The system was built with modals and it is possible that there is a modal there in the 2nd level that needs to update two grids below (one in the main screen and the other in the modal in the 1st…
-
6
votes2
answers737
viewsQ: Concatenate fields in a more performative way
I am concatenating the description lines of a record so that instead of having N records for a description it has only one. I can make it happen, but I wanted a more performative way, because I’m…
-
2
votes1
answer2822
viewsQ: How to get all the HTML of this page as a string?
I’m doing a college job and with that trying to read the HTML of a Bradesco page(Link I want HTML here) The problem is that I can’t get the HTML inside the frames and I don’t know how to get it.…
-
2
votes1
answer91
viewsQ: arterySignalIr/Ping - What is causing this error?
The project MVC in C# here the company is with a very bizarre bug, to say the least. From time to time a random error bursts: The controller for path ...arterySignalIr/Ping was not found or does not…
-
2
votes2
answers368
viewsQ: Is the calculation of RENAVAN correct? Can you improve something?
Hello, I am searching on the internet and found on that website a code in C# of how to calculate RENAVAM, I moved a little, but I can’t find anywhere that explains how RENAVAM calculus actually…
-
5
votes3
answers96
viewsQ: Doubt how to use a Less class with RAZOR
I’m doing some research to implement a feature to make life easier when it comes to programming. It is possible to do this? We are using VS2013 with Razor. I have the following class Less:…
-
2
votes2
answers4212
viewsQ: Prevent the action of reloading the page by clicking on the OK of ALERT JS
I do a very rough check to see if the form is filled in, in case it is not appearing a alert("Preencha todos os campos!");, the problem is that when I click OK it reloads the page and thus cleaning…
-
4
votes2
answers117
viewsQ: Is it correct to use $(selector). not(':Visible') here?
I am refactoring the CSS of a system function and to treat the CSS property and not a string I switched this line of code: (1st way was working properly) var ultimaMensagem =…
-
1
votes3
answers3594
viewsA: What is the difference between display:inline-block and float:left
Float property Display property Float: left; The element floats to the left Display:inline-block Displays an element as an inline-level block container. The Inside of this block is Formatted as…
-
1
votes3
answers661
viewsQ: How to make the text disappear from the WPF C#field
I’m using wpf for the first time, as is the declaration of a textbox field in which I have a text (Ex: "Login") and when I click it disappear and soh the pointer so I start typing? If you don’t…
-
10
votes3
answers32528
viewsQ: Selected date comparison with current JS date
I’ve searched the internet and right here on the site, but could not find any clean way and that works to do this. I need JS to compare the date indicated in the field (which will be in a format…
javascriptasked Andrey Hartung 1,763 -
2
votes3
answers249
viewsQ: Set JS to calculate the size of a div
I made a one-page website and to calculate the size of the main Divs I used this JS: function tamanhos(){ $('#a, #b, #c, #d').css('min-height', $(window).height()); } $(window).load(tamanhos);…
-
0
votes1
answer42
viewsQ: Animation of menu buttons is not working properly
Hello, I’m joking about CSS, HTML and JS to build a random site. In theory the site was all right, but now that I upended the site and went to open on my mobile and the animation of the round menu…
-
2
votes1
answer118
viewsQ: How to navigate a website if a single page?
I want to make one of those one-page websites, but I can’t think of one thing: how can I do that when I click a button it scrolls down the page to the related content? In the menu have to have a…
-
4
votes2
answers844
viewsQ: Why does this menu not work in the mobile version?
I was looking for some menus/layouts templates and found that very cool, but when I googled to the mobile view when I clicked on the menu the 1st ball came and went, instead of seeing all of them…
-
1
votes4
answers1122
viewsA: Align 4 Divs in CSS table
Using only what you posted in code, and only by fixing what @Sanction said about self-closing tabs on Divs, here’s a solution: HTML: <div id="todos"> <div id="div1"></div> <div…
cssanswered Andrey Hartung 1,763 -
1
votes2
answers2982
viewsA: Effect of Parallax when mouse over
In general this effect is done with jQuery’s Parallax. Here’s a full article about Simple parallax with Jquery and CSS Here are some sites with examples: 50+ Best Jquery Parallax Parallax.js I think…
-
1
votes1
answer88
viewsQ: How does Google Docs text synchronization work in Drive?
So I couldn’t find this information, but I’m curious to know how it works real-time synchronization of text documents on Google Drive. The issue is that two people can edit the file at the same…
google-drive-apiasked Andrey Hartung 1,763 -
5
votes1
answer4173
viewsQ: Difference between $(window) and $(Document)
Is there any difference between using the $(window) e $(document)? Because from what I found they do the same thing.... And that initialization: $(window).on('ready load resize', function(){ It…
-
13
votes2
answers428
viewsQ: Is it correct to use JS to make the effects of an HTML?
What I want to know is whether it is right to use Javascript/Jquery to do some button and screen effects, center the content horizontally and do certain tasks that can be done by CSS. The company’s…
-
5
votes3
answers10234
viewsQ: border-Radius in table does not work CSS
I’m trying to put a Radius border on my table so that the four tips of it are rounded. If I touch the tr/th/td border-Radius it will change the radius of the ballots and not only those of the table,…
-
3
votes2
answers4148
viewsA: What should an HTML value attribute contain?
The value is the information that will be sent to the server, can be used 1, 2, f, m, masculino, feminino, whatever. Because it is you who will receive this information and treat the use of it. In…
htmlanswered Andrey Hartung 1,763 -
0
votes2
answers72
viewsQ: Button animation does not happen
When I clicked on the button it was supposed to go left for 400ms but when I click it goes straight without the animation, it "jumps" straight to the final place without going through the rest. CSS:…
-
12
votes2
answers1331
viewsQ: What is the difference between Animation and Transition CSS
What is the difference between the properties animation: and transition: of the CSS?
-
19
votes2
answers1620
viewsA: When to use icon, or text, or more text icon?
I’m taking the HMI course in college this semester and the professor addressed exactly this subject. The teacher explained that the system needs to be as intuitive and easy to understand as…
uxanswered Andrey Hartung 1,763 -
11
votes2
answers1626
viewsQ: How to use and what is the user-select property for
I’m learning front-end and came across on that website with a CSS property called user-select, I didn’t understand what it was for and I couldn’t find a good explanation. I’d like you to explain to…
-
2
votes1
answer2228
viewsQ: How to organize the HTML body on the screen with CSS
I made a header and a retractable side menu, but I can not now organize the body of the site next to the menu, it is always down and if I give float left and right it is occupying 10% of the screen…
-
5
votes1
answer26463
viewsQ: Using Javascript to change CSS property
I’m not getting it to work, I have a retractable side menu and a button in a bar in the header. I’ve set my menu to margin-left: -250px; and wanted that when I pressed the button it set to…
-
0
votes0
answers88
viewsQ: How to create table with android email plugin
Hello! I’m breaking my head since morning and can’t make it work. Using only these HTML commands i need to create a table. Follow the commands if you do not want to enter the site: The table needs…
-
13
votes1
answer9507
viewsQ: What is -Webkit-Transform? What is it for?
So, direct I find in Csss this -Webkit-Transform, but I have no idea what it is or what it’s for and God also does not know answer me: I would be eternally grateful if someone could explain me or…
-
3
votes2
answers1467
viewsQ: Center Horizontally
Can’t seem to center my div in the middle of the page! I tried to use what they posted in that post, in that other post, in the CSS Tricks and on a lot of other sites on google and I can’t center…
-
18
votes4
answers2297
viewsQ: Is it correct to use a table in the page layout?
I made a data table for a colleague of mine here at work and used a table, only it had no header, it had only 2 columns. And he told me that the staff hates table, which was for me to read about…
-
1
votes0
answers71
viewsQ: Site Buga all when hosted
I am learning front-end and I made a website using bootstrap here, I decided to climb it somewhere free to start the joke and to my surprise he is having some problems. The impression I have is that…
-
1
votes2
answers553
viewsQ: Make Javascript work on a certain screen size
Hello! I’m setting up a responsive website and using some bootstrap layouts to make the site. The problem is that the layout I liked most it was not done with a good menu for a lot of content,…
javascriptasked Andrey Hartung 1,763 -
2
votes2
answers70
viewsQ: Problem with a Javascript function
I have a problem here and I don’t know how to solve, in theory, in my role below 768px was to add the class .navbar-inverse the tag nav, and above 768px is to remove it if it exists, but nothing…