Questions tagged as '.net'

1
answer

Rotating Banner

Hello, use angularJS and wanted to put it to change the slides every 10 sec. I already tried some codes and I could not. Does anyone have a tip? Here's my controller. (function () { 'use strict'; angular.module('scases') .controller('Banne...
asked by 16.05.2016 / 16:10
1
answer

How to check if the framework is installed in the correct version?

Requirements to install the main software: .Net Framework 4.5.1 Service Pack 1 In other words, I am creating a download manager that downloads the correct version of the main software (32 or 64 bits) and the manager himself scans the client mach...
asked by 25.09.2016 / 19:13
1
answer

How to use an enumerator as an ItemSource of a ComboBox?

Assuming I have the following: enum Dias {Segunda, Terça, Quarta, Quinta, Sexta, Sábado, Domingo}; How can I use the enumerator Dias as ItemSource of a ComboBox in a WPF application? For example: <Combo...
asked by 23.09.2016 / 23:35
1
answer

Malformed reference element: Digital Signature

I ended up having the same problem about a post already done here, however come a doubt next to what was posted in the article. What windows update would be to remove from the ones mentioned in this article ? (removal would be a palliative unti...
asked by 13.04.2016 / 21:00
1
answer

Error opening application with process.start

I have an application that tries to execute with process.start or even directly by cmd of Windows, does not start correctly (the application itself presents an error), but if I go to the folder of it and open the executable, it ope...
asked by 12.04.2016 / 17:33
1
answer

DateTimePicker with custom dates

I'm developing a query marking system in Windows Forms and I had the idea of including a DateTimePicker where only the dates with available places should be "clickable" by the user. Is there a way to do this?     
asked by 16.01.2017 / 00:17
1
answer

How do I know if the customer sent me something?

I made this code here following some tutorials on the internet. buttonAbrirConexão.Enabled = false; TcpListener servidor = new TcpListener(6554); servidor.Start(); while(true) { Thread.Sleep(2500); if(servidor.Pending()) { Mess...
asked by 28.08.2016 / 02:39
1
answer

InlineString vs String - what's the difference?

In creating some spreadsheets with OpenXML, I came to doubt the difference between: CellValues.InlineString CellValues.String Is there any practical difference at the time of inserting texts (eg "hello world", "stackoverfl...
asked by 05.09.2016 / 18:20
1
answer

OutputCache only valid at controller level?

I have read the article: link And I started using the: [OutputCache(Duration = 60, VaryByParam = "none")] When I put it in the controller I notice the difference clearly. But when I'm using a library that is called by my control...
asked by 18.03.2016 / 15:02
1
answer

Summary in classes and methods [duplicate]

How important is it to use <summary> in methods and classes? How shocking is this at the development level? What is the good side and the bad side of its use?     
asked by 05.10.2015 / 19:18