Posts by Thiago Alex • 349 points
15 posts
-
1
votes1
answer56
viewsQ: Bower at Visual Studio 2015
I downloaded Visual Studio 2015 Community and went to test to see if everything was OK. But it is not, when I create an ASP.NET MVC 5 web project, the Bower.json file does not 'offer' Intellisense…
-
4
votes1
answer454
viewsQ: Return Partialview with validations for a Modal ASP MVC 4
I have an Index screen, where is the table of registered people, on the same screen I have a new button that calls a Modal(boostrap) this way: <a href="@Url.Action("Add", "Pessoa", new { area =…
-
12
votes4
answers80887
viewsQ: How to force the opening of a link in another tab and not window?
I have a button (anchor) that needs to be 'hidden', or no text. Its structure is this: <a class="testeimprimir" href="javascript:teste1();" target="_blank">TESTE</a> The Function is…
-
2
votes2
answers3622
viewsQ: Multiple Divs with Same Responsive Height
I have four five Ivs, one of which is a container for the other four. Structure: <div id="divPai" style="width:100%"> <div id="divInfUser" style="width:25%; height: 30%; background-color:…
-
0
votes0
answers666
viewsQ: Bundleconfig - No files found on the server
I’m using Kendo UI on a project MVC 4, I made the settings in Budleconfig: bundles.Add(new ScriptBundle("~/bundles/kendo") .Include("~/Scripts/kendo/2013.2.918/kendo.all.min.js")…
-
1
votes3
answers3178
viewsQ: Hover in two elements at the same time
I own a div and inside it a <a> I can see it in the div, but the anchor color doesn’t change. HTML structure: <div class="TamanhoECorTabs ThemeGrid_Width6"> <a id="ancora"…
-
1
votes1
answer154
viewsQ: How to increase the distance to appear icon that expands menu
I am in a MVC 4 project, using bootstrap and I want to know if there is a way to change the configuration so that the button that expands the menu (which only appears on smaller screens) appears on…
-
2
votes1
answer1249
viewsQ: ASP MVC 4 and Webservice
I have a Webservice with all the methods I need to make the system work and I also have a page ASP NET MVC 4. I already referenced the Webservice Referral Service. I can access a method that returns…
-
1
votes5
answers501
viewsQ: Hover only on some columns
I have a table with 6 columns, but I just want to give hover in the first 4 columns. It is possible to do this? I’m using MVC 4 and bootstrap I’m already using a method in Jquery: $(".table tbody…
-
1
votes1
answer502
viewsQ: How to add an amount sent from an onclick to Ajax date?
I have a table in HTML and in a table column there is a link that opens a Modal. In this modal I register approvals and show who approved and the date of approval (More than one person can approve,…
-
2
votes2
answers1318
viewsQ: How to write HTML inside Ajax Success
I have a project in ASP.NET MVC 4 and in it I have a requisition Ajax where calls the controller sending only one parameter. The request does everything correctly, brings me a list with the data I…
-
1
votes2
answers237
viewsQ: How to add link in a Kendo UI tabstrip?
I have an application where there are 5 tabs, it is mandatory that they are followed in sequence. When the page starts the first tab occupies the whole space of the window (it looks like it is not…
-
2
votes1
answer277
viewsQ: Error in runtime VB6
I have a DLL that was created in . NET and I need it to run as COM+. code in . NET: using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace thiago.dll.NET {…
-
1
votes1
answer1601
viewsQ: Pass parameters in a VB6 application
How do I pass VB6 parameters? Private Sub Command1_Click() Dim cnpj As String cnpj = "tal" Dim chaveCliente As String chaveCliente = "tal" Dim chaveAcesso As String chaveAcesso = "tal" Dim status As…
-
1
votes2
answers1412
viewsQ: How to turn a DLL created in C# to VB6?
I created a very basic DLL in C# just for testing. It looked like this: using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; using…