I have a query that when executed with ADO.NET takes less than a second to return your data. When adding parameters to this query, the return remains the same.
However, when adding a parameter of type datetime , the query does no...
I'm having problems importing projects into VS 2015. The project was done in an earlier version of IDE and when I import it it does not come with correctly added components, needing to add one by one.
Is this correct or do you have to follow...
I'm having a question, I have a code that dynamically creates a TreeView through a C # code. TreeView was created in WPF.
My goal is to create a function that opens a XML item and created a TreeView , and then it is possi...
I want to send an e-mail in Rich Text Format (RTF) using the EWS (Exchange Web Service) API
ExtendedPropertyDefinition RtfCompressed = new ExtendedPropertyDefinition(0x1009, MapiPropertyType.Binary);
PropertySet propSet...
Well, I have an enum for the days of the week, being:
Segunda = 2,
[Display(Name="Terça")]
Terca = 3,
Quarta = 4,
Quinta = 5,
Sexta = 6,
[Display(Name = "Sábado")]
Sabado = 7
So I build an object that has a da...
I have an xls file that I load and transform into binary as follows:
FileStream fs = new FileStream(physicalPath + "/cadastros/documentos/" + "AWS-Estudantes_" + Convert.ToString(System.DateTime.Now.Year) + "-" + Convert.ToString(System.DateTi...
How do I print two messages using MessageDialog of Windows Phone 8.1?
using System;
using System.Collections.Generic;
using System.IO;
using System.Linq;
using System.Runtime.InteropServices.WindowsRuntime;
using Windows.Foundation;
usi...
In Windows Phone, we have the Pivot structure, which has the PivotItems, which are tabs in which the user navigates just by sliding the finger left or right.
I'm making an app and following the design of Windows 10, with hamburger menu, I arr...
I would like to know in a logical and robust and clear way,
How does the organization behave in software that it will have:
-Logging (any action performed on the system must be logged)
ex: "User X entered a new product in the system, in Da...