User Profile

Collapse

Profile Sidebar

Collapse
namit101
namit101
Last Activity: Jul 24 '08, 03:29 PM
Joined: Feb 22 '08
Location:
  •  
  • Time
  • Show
  • Source
Clear All
new posts

  • namit101
    replied to generatin pdf file from html input
    in .NET
    You could try

    http://pcsw.us/projects/pdfizer/

    Hope that helps.
    See more | Go to post

    Leave a comment:


  • namit101
    replied to Invoked member
    in .NET
    I'm not exactly sure what you mean. Perhaps you mean, how do you pass the reference of an argument to the method? For example:

    Code:
    
    ///this function would return 12;
    public int add()
    {
    int a1 = 1;
    int a2 = 2;
    
    Change(out a1,out a2);
    
    return a1+a2;
    
    }
    
    public void Change(out int a,out int b)
    {
     a = 5;
    b=7;
    ...
    See more | Go to post

    Leave a comment:


  • After turning off automatic redirection, I realized that the server was sending me to another location (which changed my uri in the httpwebrequest) . The original problem was related to using the right cookie container/credentials (now fixed).
    See more | Go to post

    Leave a comment:


  • namit101
    started a topic c# math arrays?
    in .NET

    c# math arrays?

    Hi,

    does c# provide any classes for handling single dimension vector math (i.e., something to adding two double[] arrays)? Does anyone know any good opensource math libraries that would accomplish this?
    See more | Go to post

  • namit101
    replied to Parse XML Backwards
    in .NET
    You should use some kind of recursive function, like:

    Code:
    public string ProcessXML(XmlNode node)
            {            
                if (node.ChildNodes.Count == 0)
                {
                    return node.InnerText;
                }
                else
                {
                    StringBuilder sentence = new StringBuilder();
                    for (int i = 1; i <
    ...
    See more | Go to post

    Leave a comment:


  • namit101
    started a topic c# / Wpf performance suggestions?
    in .NET

    c# / Wpf performance suggestions?

    Hi,

    I have a tab control with tab pages that contain many customized ListViews which contain many items using databinding. Unfortunately, it is very slow going between tabs as much time seems to be needed to render all of this.

    Is there any way to speed up the rendering by buffering it or by some other method? Anybody have any other suggestions that might improve the performance?
    See more | Go to post

  • namit101
    started a topic C#: HttpWebRequest.GetResponse() changing URI?
    in .NET

    C#: HttpWebRequest.GetResponse() changing URI?

    When I create an HttpWebRequest, it seems to have the right uri to access the website (with the GET variables there too). But as soon as I run request.GetResp onse() the URL changes such that it no longer includes the GET variables and it uses that new uri for accessing the server. Anyone know what might be the problem?


    Code:
    string url = "http://internal.company.com?var1=x&var2=y";
    HttpWebRequest request
    ...
    See more | Go to post
No activity results to display
Show More
Working...