Questions tagged as 'c#'

0
answers

"Enumerable.cs not found", how to adjust?

After initializing a "ContentPage", the following error appears: "Enumerable.cs not found". Infact,Ididnotfindthefile.Is"Enumerable.cs" unique to "System.Core"? I tried installing "System.Core" but it showed an incompatibility I do not under...
asked by 21.09.2017 / 20:51
0
answers

Develop Plugin for Windows Desktop

I am developing a cordova plugin for windows desktop and I need to use some native functions, I will have to use Windows Runtime. I started by following a tutorial and I have the following structure: - /src - /EchoRuntime - /bin - /obj...
asked by 16.10.2017 / 17:55
1
answer

How to flex a checkbox via webbrowser?

I'm trying to mark a checkbox via webbrowser, but I can not dial. HtmlElementCollection theElementCollection = default(HtmlElementCollection); theElementCollection = doc.GetElementsByTagName("div"); foreach (HtmlElement curElement in theElemen...
asked by 16.10.2017 / 18:33
1
answer

Datagridview updating by form son

I have a main form ( form1 ) where I load a datagridviwer and I need to do the following: I have a second form ( form2 ) that excludes the selected line in datagridviwer ( form1 ), only I need to do that when I de...
asked by 15.09.2017 / 15:18
0
answers

Could not load file or assembly 'Interop.MicroPoint_IP_RealTime'

I have ERROR below when running the project in Debug (in Release it works normally):   An unhandled exception of type 'System.IO.FileNotFoundException'   occurred in Slim.exe       Additional information: Could not load file or assembly   ...
asked by 15.09.2017 / 16:21
0
answers

JSON for websocket gives error

I send a JSON to the websocket. JSON and sending is defined like this: var binary = btoa(Uint8ToString(view)); var toSend = { 'fileName': fileName, 'sequence': SendedChunks, 'data': binary.toString() }; var z = JSON.stringify(toSend...
asked by 30.09.2017 / 01:51
0
answers

Can I connect birt reports to a C # application?

I have a C # application in which there are routines that feed the database. I would like to use birt reports to display reports of the information present in the database. Is there any way to in the c # application I trigger birt reports to dis...
asked by 05.10.2017 / 02:54
1
answer

Notification with C # Framework, is it okay?

I would like to know if you have how I can use notification hub or other notifications with the C # Framework? If so, how does anyone have an example?     
asked by 05.10.2017 / 15:45
1
answer

Timeout limit trying to send email c # windows forms

I'm trying to create an application to send "forgot password" emails but without success so far I posted here a problem where the screen was freezing and gave time to the application, I was told to use background worker, so I'm using more now ev...
asked by 16.09.2017 / 22:47
2
answers

How to use two checkboxes in a C # mvc view to choose the type of query?

Controller.cs public ActionResult pesquisarCliente(string _codigo) { var r = db.Pedido.AsQueryable(); if (!string.IsNullOrEmpty(_codigo)) { r = r.Where(n => n.Cliente...
asked by 17.09.2017 / 16:14