Questions tagged as '.net'

1
answer

Can you use Firebird by accessing Windows Phone?

I developed a C # Windows Forms application with Visual Studio 2013 and with Firebird database, but I would like to make a small application to facilitate access to the system. But in this application it would be necessary to access the same app...
asked by 07.10.2015 / 20:25
1
answer

How to change the system default browser?

How do I change the system default browser? When opening a link , go to my browser with the link already open? I've already made him recognize the links when starting the browser: Public Overrides Sub OnLoad() Handles Me.Load If...
asked by 20.09.2015 / 00:21
1
answer

Configuration Table

How could I do to use a configuration table in nHibernate? That is, a table of only one record and that it only controls this record, I know I have to do this via application, but I wanted to know if nHibernate already has some feature that hand...
asked by 24.08.2015 / 19:07
1
answer

How to pass more than one argument using Process + OpenSSL

Using the following code I pass a certain argument, then I need to pass a password that OpenSSL requests, but how do I do this? I tried StandardInput but got an exception:    Additional information: StandardIn was not redirected Di...
asked by 16.10.2015 / 17:20
1
answer

Apply filter in DataGrid filled with List without changing DataSource

Is it possible to apply filter to a DataGridView that is "filled" with a List , without changing the DataSource of the grid? Example: When I have a grid that uses a BindingSource I can apply a filter, such as meu...
asked by 18.08.2015 / 16:15
2
answers

Web Service Test of Posts - SSL error

Someone else has had this problem by referencing the web service for tests and implementations of the post office. I need to do some validation but I can not execute any method without ssl errors.     
asked by 14.08.2015 / 21:00
1
answer

Transfer of List from one class to another

I want to treat a list in a method from another class and then return the treated list. I would like to know how to transfer this list to the other class. I did as follows: Main class: DataTable result = new DataTable(); VerificaJuridi...
asked by 03.12.2015 / 14:36
1
answer

HttpWebRequest with SSL

When I have to reproduce a few steps ( GETS and POSTS ) of an access all https using .net I need to use ServicePointManager.ServerCertificateValidationCallback . So here's my question: do I have to declare before doing...
asked by 07.08.2015 / 13:36
1
answer

Problem with a field in RegEX

I have the following expression: (?!.*"); It captures anything separated by the ; character except when it is within a string. Here's an example: ABC; #captura o último ; 123; #captura o último ; "XYZ";...
asked by 13.07.2015 / 00:25
1
answer

Url.Action with routevalues and objects

I have the following Url.Action : @Url.Action("ActionName", "ControllerName", new { area = "AreaName" }) I also need to send some objects to this action through this Url.Action , how could I do this?     
asked by 02.09.2015 / 13:22