Questions tagged as 'c#'

1
answer

Animation to decrease the size of a cube in Unity

Hello! I'm in Unity using C # and I have a cube that when I press 'q', it decreases to 0.5 of scale starting from scale 1 and when I release 'q', it goes back to scale 1. I wanted there to be some quick animation of the decay and growth of the c...
asked by 11.05.2018 / 05:10
0
answers

"Active" carousel in html

Good. I have a project with multiple views that contain a carousel. For example, this is my home page AndwhenIclickonthefirst"See More" button, this appears So far so good! But if I leave this "window" and click on another "see more" b...
asked by 17.05.2018 / 17:18
1
answer

doubts c # label show

I'm doing a job that consists of entering 2 values (c #) and say the biggest one I could do (as a message) but I can not do to insert into label correctly can anyone help me? using System.Windows.Forms; namespace _17_maior_menor { public...
asked by 17.05.2018 / 19:31
0
answers

How to do dependency injection in a dynamically created class?

I'm making a gateway for a client project to consume microservices. In this gateway, the way the client will consume the application is through an interface. The implementation of this interface will be created dynamically (at compile time). So...
asked by 09.05.2018 / 21:59
7
answers

Best data type to work with money?

I'm developing a project for commercial automation, using PAF-ECF and everything else. What would be the best data type to work with SQL Server and C # for money issues? Especially in relation to rounding and truncations. I imagine the bes...
asked by 13.02.2014 / 23:33
0
answers

Is it possible to style text within a dynamic DropDownList?

I have the code below that is dynamically populated and I would like to give an emphasis (bold, italic) in the " (From xx / xx / xxxx to xx / xx / xxxx) "but if I try to put a tag inside the <option> the system does not understand...
asked by 21.05.2018 / 22:12
0
answers

ZXing Colorful .net

I need to create a colored qrcode using zxing.net but I can not and I do not even think 1 tutorial on the internet even searching and trying the days, does anyone have any idea how I can develop 1 color qrcode using zxing and c # net . If it hel...
asked by 10.05.2018 / 19:27
0
answers

Update Runtime Object Asp.Net MVC

I have a difficulty in an action. I want to update an object at runtime, for example, I have a request, that request is in approved state. except that by unsubscribing this request, I want to change the status of it to FINALIZED. The problem is...
asked by 14.05.2018 / 16:57
0
answers

Program does not appear on toolbar when starting

Hello, I have the following error: when opening the program, the icon does not appear in the taskbar, and before that it did not happen. It happened now! Here's the image when you open the program (Look at the Taskbar): Anditonlyappearsaf...
asked by 12.05.2018 / 23:14
1
answer

Validation of all Text box

Code: if (this.Controls.OfType<TextBox>().Any(f => string.IsNullOrEmpty(f.Text))) { MessageBox.Show("É necessario preencher todos os campos.", "Atenção", MessageBoxButtons.OK, MessageBoxIcon.Exclamation); } This command was ver...
asked by 12.05.2018 / 23:20