Click here to Skip to main content
15,797,578 members
Home / Discussions / .NET (Core and Framework)
   

.NET (Core and Framework)

 
GeneralRe: difficulties with AdvancedDatagridView Pin
Member 147338667-May-20 2:46
Member 147338667-May-20 2:46 
GeneralRe: difficulties with AdvancedDatagridView Pin
Pete O'Hanlon7-May-20 2:49
subeditorPete O'Hanlon7-May-20 2:49 
QuestionWindows 1903 Jump Lists Pin
Robert Heath29-Apr-20 20:25
Robert Heath29-Apr-20 20:25 
GeneralRe: Windows 1903 Jump Lists Pin
Richard MacCutchan30-Apr-20 0:10
mveRichard MacCutchan30-Apr-20 0:10 
AnswerRe: Windows 1903 Jump Lists Pin
Eddy Vluggen30-Apr-20 0:29
professionalEddy Vluggen30-Apr-20 0:29 
Questionhow to use datatable as Datasource with Datagridview unless datagridviewrow Pin
Member 1473386629-Apr-20 3:31
Member 1473386629-Apr-20 3:31 
AnswerRe: how to use datatable as Datasource with Datagridview unless datagridviewrow Pin
Richard MacCutchan29-Apr-20 4:20
mveRichard MacCutchan29-Apr-20 4:20 
QuestionThere is no Unicode byte order mark. Cannot switch to Unicode. Pin
Michele Smith20-Apr-20 13:56
Michele Smith20-Apr-20 13:56 
Hello, I am receiving the error message:

There is no Unicode byte order mark. Cannot switch to Unicode


in this XML segment:

<?xml version="1.0" encoding="UTF-8"?>

-<OrderUpdateReply>


-<Error>



<ErrorDescription>There is no Unicode byte order mark. Cannot switch to Unicode.</ErrorDescription>

</Error>

</OrderUpdateReply>


It occurs on the final line of this method:

private async Task<string> QueryOrders(string key, string accountName)
        {
            string XMLstring = CalculateOrderQueryXML(key, accountName);
            StringContent stringcontent = new StringContent(XMLstring);
            stringcontent.Headers.ContentType.MediaType = "text/XML";
            HttpResponseMessage response = await http.PostAsync("https://www.mywebsite.com/shared/xml/orderquery.rest", stringcontent);

            /*string for response*/
            string ResponseString = await response.Content.ReadAsStringAsync();

            XmlDocument xml = new XmlDocument();
            xml.LoadXml(ResponseString);
    
            return xml.OuterXml;

        }

AnswerRe: There is no Unicode byte order mark. Cannot switch to Unicode. Pin
Richard Deeming21-Apr-20 1:21
mveRichard Deeming21-Apr-20 1:21 
QuestionResource Error Pin
Member 129880739-Apr-20 19:19
Member 129880739-Apr-20 19:19 
QuestionRe: Resource Error Pin
Richard MacCutchan9-Apr-20 22:37
mveRichard MacCutchan9-Apr-20 22:37 
AnswerRe: Resource Error Pin
Dave Kreskowiak10-Apr-20 7:40
mveDave Kreskowiak10-Apr-20 7:40 
AnswerRe: Resource Error Pin
Jin Vincent Necesario15-Apr-20 20:10
professionalJin Vincent Necesario15-Apr-20 20:10 
QuestionHow to know which Id belongs to which object? Pin
simpledeveloper30-Mar-20 13:29
simpledeveloper30-Mar-20 13:29 
AnswerRe: How to know which Id belongs to which object? Pin
Eddy Vluggen30-Mar-20 14:06
professionalEddy Vluggen30-Mar-20 14:06 
GeneralRe: How to know which Id belongs to which object? Pin
simpledeveloper30-Mar-20 20:46
simpledeveloper30-Mar-20 20:46 
AnswerRe: How to know which Id belongs to which object? Pin
Richard Deeming31-Mar-20 2:10
mveRichard Deeming31-Mar-20 2:10 
GeneralRe: How to know which Id belongs to which object? Pin
simpledeveloper1-Apr-20 11:35
simpledeveloper1-Apr-20 11:35 
GeneralRe: How to know which Id belongs to which object? Pin
Richard Deeming1-Apr-20 14:05
mveRichard Deeming1-Apr-20 14:05 
GeneralRe: How to know which Id belongs to which object? Pin
simpledeveloper2-Apr-20 7:30
simpledeveloper2-Apr-20 7:30 
QuestionAn expression tree lambda may not contain a null propagating operator Pin
simpledeveloper27-Mar-20 22:38
simpledeveloper27-Mar-20 22:38 
AnswerRe: An expression tree lambda may not contain a null propagating operator Pin
Richard MacCutchan28-Mar-20 0:48
mveRichard MacCutchan28-Mar-20 0:48 
AnswerRe: An expression tree lambda may not contain a null propagating operator Pin
Bohdan Stupak28-Mar-20 5:38
professionalBohdan Stupak28-Mar-20 5:38 
QuestionColumn length change using Entity Framework Code First Pin
simpledeveloper17-Mar-20 14:59
simpledeveloper17-Mar-20 14:59 
AnswerRe: Column length change using Entity Framework Code First Pin
Gerry Schmitz17-Mar-20 17:22
mveGerry Schmitz17-Mar-20 17:22 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.