Search results for query: *

  1. Dharamart

    BackgroundThread with infinite loop with Async method ?

    private void Form1_Load(object sender, EventArgs e) { Method1(); } public static async Task Method1() { await Task.Run(() => { while (true) { updateXml("company", "qwer"); string myfile =...
  2. Dharamart

    BackgroundThread with infinite loop with Async method ?

    Hello Friends, I need help in windows form. When ever i am trying to implement the Async method in background for infinite time , my windows apps not performing well. so i need solution for this please suggest me the solution for this issue. i just want to run my windows application does not...
  3. Dharamart

    Resolved UDF:data unable to read by c#

    @JohnH Your comment helped me a lot to find my solution for my issue.
  4. Dharamart

    Resolved UDF:data unable to read by c#

    please suggest me sample code or help notes. thanks,
  5. Dharamart

    Resolved UDF:data unable to read by c#

    this node i consider a corrupted node. <UDF:VATDEALERNATURE.LIST DESC="`VATDealerNature`" ISLIST="YES" TYPE="String" INDEX="10031"> <UDF:VATDEALERNATURE DESC="`VATDealerNature`">Regular</UDF:VATDEALERNATURE> </UDF:VATDEALERNATURE.LIST> I just wanted...
  6. Dharamart

    Resolved UDF:data unable to read by c#

    is there any way by which i can remove corrupted node like <ENVELOPE> <HEADER> <VERSION>1</VERSION> <STATUS>1</STATUS> </HEADER> <BODY> <DATA> <MESSAGE> <VOUCHER >...
  7. Dharamart

    Resolved UDF:data unable to read by c#

    this XML generated by indian software called tally. XmlNamespaceManager xmlnsManager=new System.Xml.XmlNamespaceManager(doc.NameTable); xmlnsManager.AddNamespace("UDF",""); XmlNodeList nodes = doc.GetElementsByTagName("UDF:*"); foreach...
  8. Dharamart

    Resolved UDF:data unable to read by c#

    'UDF' is undeclared prefix.
  9. Dharamart

    Resolved UDF:data unable to read by c#

    using System; using System.Xml; public class Program { public static void Main() { var xml = @"<ENVELOPE> <HEADER> <VERSION>1</VERSION> <STATUS>1</STATUS> </HEADER> <BODY> <DATA> <MESSAGE> <VOUCHER...
  10. Dharamart

    Resolved UDF:data unable to read by c#

    I just wanted to read or ignore the <UDF:data>test</UDF:data> from XML in c#. C# read everything from XML except <UDF:data>. please help me this one much needed.
Back
Top Bottom