CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com

Search:

Type: Posts; User: senglory

Search: Search took 0.10 seconds.

  1. Incorrect work of Dataset deserialized from XML

    string stmp = "\n<rs:data ItemCount=\"6\" xmlns:rs=\"urn:schemas-microsoft-com:rowset\">\n <z:row _x041a__x043b__x0438__x0435__x043d__x0442___x043a__x043e__x0434_=\"16440042770нс\"...
  2. Response.BinaryWrite - incorrect name of file opened on a client side

    01.Response.Buffer = true;
    02. Response.AddHeader("Content-Disposition", string.Format("attachment;filename={0}", documentFileName ));
    03. ...
  3. Re: PInvoke - How to convert IntPtr to double[]?

    If, for example, I know the size of returned data, is it possible to avoid Marshal.Copy()?
  4. PInvoke - How to convert IntPtr to double[]?

    [DllImport("PlainCLibrary.dll")]
    internal static extern IntPtr TestDoubleArray(double[] dbl, long len);


    The underlying TestDoubleArray() returns double*. I'd like to have it converti=ed...
  5. How to apply template for the first w:p in w:tbl?

    Regardless of the nesting level in that particular w:tbl. For example:



    <w:p w:rsidR="AAAAAA">
    </w:p>
    ...
    <w:tbl>
    <w:tblPr>
    <w:tblStyle w:val="TableGrid"/>
  6. Why do I get "Could not load type 'AdamItiel.GlobalApp'"?

    global.asax:


    Global.asax.vb


    Imports System.Web.SessionState

    Namespace AdamItiel
    Public Class GlobalApp
  7. WCF + DataTable in OperationContract = Exception on client side

    My WCF:


    [ServiceContract]
    public interface IWorkbookService
    {
    [OperationContract]
    DataTable GetDownpayments(KeyValuePair<int, string> sgm);
    }
  8. Replies
    1
    Views
    910

    Why does deserialization fail?

    XML:


    <?xml version="1.0" encoding="utf-8" ?>
    <TTTTModel>
    <TTTTClass>
    <TTTTType>Deployment</TTTTType>
    <TTTTDate>2009-09-30T00:00:00-07:00</TTTTDate>
    </TTTTClass>
    ...
  9. XPath to get the nearest preceding sibling - howto?

    I need to write a XPath for getting the closest sibling to the current node. It should return exactly 1 element. How to write it?
  10. Replies
    0
    Views
    1,184

    Why do I get w/o attributes?

    XML:



    <?xml version="1.0" encoding="UTF-8" standalone="yes"?>
    <w:document xmlns:ve="http://schemas.openxmlformats.org/markup-compatibility/2006"...
  11. Why the regex doesn't catch the "Extra" group?

    the regex:


    # Region
    <tr>
    \s*<td\s+class="grey11">Region:</td>\s*
    <td\s+class="b11\s+b">(?<Region>.+?(?=</td>))</td>
    \s*
    </tr>
    \s*
  12. Why the "RunWorkerCompleted" never comes after pressing ENTER?

    using System;
    using System.ComponentModel ;
    using System.Collections.Generic;
    using System.Linq;
    using System.Text;
    using System.Threading;
    using System.Reflection;


    namespace Retriever
  13. asp:RequiredFieldValidator doen't recognize input with spacebars

    asp:RequiredFieldValidator doesn't recognize input with text consisted only of spacebars as a valid input. How to make him to recognize them as I need? Or how to do it with...
  14. Replies
    1
    Views
    743

    Re: Freelance coder wanted - I pay

    Yoг may look at my portfolio here. If it looks interesting for you I'll be ready to discuss with you possible opportunities. Currently I'm in New Jersey iа it does any sence.
  15. How can I get the number of copies to be printed from the document being printed now?

    I'm developing application for managing print spooler and faced with the following problem. I need to get info about how many copies of the specific document which is being printed now were...
  16. How can I get the number of copies to be printed from the document being printed now?

    How can I get the number of copies to be printed from the document being printed now?
  17. Replies
    0
    Views
    1,469

    LoginView and Click server side event

    <asp:LoginView ID="LoginStatus1" runat="server" OnViewChanging="LoginView1_ViewChanging">
    <LoggedInTemplate>
    ...
  18. How to restrict versions of run-time required assembly by INTERVAL?

    The MSDN gives (in description of <bindingRedirect>) an example only for SINGLE version. But I would like to have ability to set restriction by interval. is it possible with App.config manipulation...
Results 1 to 18 of 18





Click Here to Expand Forum to Full Width

Featured