Skip to content
  • Categories
  • Recent
  • Tags
  • Popular
  • World
  • Users
  • Groups
Skins
  • Light
  • Cerulean
  • Cosmo
  • Flatly
  • Journal
  • Litera
  • Lumen
  • Lux
  • Materia
  • Minty
  • Morph
  • Pulse
  • Sandstone
  • Simplex
  • Sketchy
  • Spacelab
  • United
  • Yeti
  • Zephyr
  • Dark
  • Cyborg
  • Darkly
  • Quartz
  • Slate
  • Solar
  • Superhero
  • Vapor

  • Default (No Skin)
  • No Skin
Collapse
Code Project
T

T_Teef

@T_Teef
About
Posts
23
Topics
13
Shares
0
Groups
0
Followers
0
Following
0

Posts

Recent Best Controversial

  • Rdlc report
    T T_Teef

    In C# i placed an rdlc report viewer on a windows form now when i make an object of the form it wont call the report viewer. please help if any . <pre>                         RdlcReportViewer rv = new RdlcReportViewer();                         rv.<u>reportViewer1</u>.LocalReport.EnableHyperlinks = true;                         rv.<u>reportViewer1</u>.LocalReport.ReportEmbeddedResource= "test.RdlcRptPayments.rdlc"; </pre> thankx. :)

    C# csharp help

  • web automation
    T T_Teef

    hi i am working on an application that automates a website, my work is to upload a file but it is not clear to me how i can get the browse folder dialog box event(on clicking the browse button).

    C# testing tools

  • how to click a link in axwebbrowser
    T T_Teef

    i know some thing is null because it is not able to find that link on the next page it is still looking on the same page. so now what should i do.

    C# help tutorial

  • how to click a link in axwebbrowser
    T T_Teef

    hi i am working on a web application that automates the web site. it automatically logins after login it wents to the next page but at that next page i want to click a link but the navigator still sees for the first page and gives error" object reference not set to an instance of an object". so plz look into the matter.

    C# help tutorial

  • web automation using axwebbrowser
    T T_Teef

    hi i am working on an application and very much able to do work like click a button, enter text in text boxes etc. my application works only for the single page(first page). i want to click the link label on the second page after login.

    C# testing tools

  • using a listbox within a listview how to pass parameter from listview
    T T_Teef

    well u r on the wrong forum plz select the right forum and go to asp.net forum where u will find the right person for it. but can we put a button over a button, or in other words can we write code of a button in another button. the answer is no. i guess that?

    C# tutorial help

  • sftp programming in ftp
    T T_Teef

    hi i want to connect to SFTP Server using SSH Channel and list files on remote directory, upload file and download file. I am not an expert in this area, please let me know how to achieve my targe using this code. :)

    C# sysadmin tutorial

  • ftp key_press_evevt(help)
    T T_Teef

    i do but still not working

    C# sysadmin help

  • ftp key_press_evevt(help)
    T T_Teef

    hi guyz i am working on an application of ftp. my application successfully connects to the remote server. the trouble i am dealing with is when i press any key to go(jump) to a specific file my application hangs, but after some time it resumes, i have used key_press_evevt to but not able to getting the logic behind that. so see if any one be able to do it. :)

    C# sysadmin help

  • how to select mulitiple files for upload
    T T_Teef

    hui guyz i am working on an ftp client which is working quite properly but have an issue it only uploads and downloads files one by one, so plz help. :)

    C# help tutorial

  • tree view select all child nodes when to click parent nodes
    T T_Teef

    thats why we have posted the code to get the help to obtain a piece of code to handle the treeviews click event :zzz:

    ASP.NET question csharp asp-net data-structures

  • tree view select all child nodes when to click parent nodes
    T T_Teef

    heres the code

    public partial class _Default : System.Web.UI.Page
    {
    public static SqlConnection sqlConn = new SqlConnection();
    public static SqlCommand sqlCmmd = new SqlCommand();
    public static SqlDataAdapter sqlDAptr = new SqlDataAdapter();
    //public DataSet busDataSet
    //{
    // get
    // {
    // return DS;
    // }
    // set
    // {
    // DS = value;
    // }
    //}

    protected void Page\_Load(object sender, EventArgs e)
    {
        try
        {
            //GetTables();
            PassQuery();
            //abc();
        }
        catch (Exception)
        {
            throw;
        }
    }
    
    
    public void PassQuery()
    {
        this.TreeView1.Nodes.Clear();
    
        DataSet myFirstTable = new DataSet();
    
        string Query = "select name from sys.tables";
        myFirstTable = Retun\_Table\_BasedOn\_Query(Query);
        DataSet\[\] mySecondTable = new DataSet\[myFirstTable.Tables\[0\].Rows.Count\];
    
        for (int i = 0; i < myFirstTable.Tables\["Table"\].Rows.Count; i++)
        {
            string str1 = myFirstTable.Tables\["Table"\].Rows\[i\]\[0\].ToString();
    
            string Query2 = "SELECT  sysobjects.name As Names, syscolumns.name AS FieldName " +
                           "FROM sysobjects INNER JOIN syscolumns ON sysobjects.id = syscolumns.id " +
                           "WHERE (sysobjects.name = '" + str1 + "')";
            mySecondTable\[i\] = Retun\_Table\_BasedOn\_Query(Query2);
            
            TreeNode tnParent;
            TreeNode tnChild;
    
            for (int a = 0; a < 1; a++)
            {
                tnParent = new TreeNode();
                tnParent.Text = str1.ToString();
                TreeView1.Nodes.Add(tnParent);
    
                foreach (DataRow rowChild in mySecondTable\[i\].Tables\["Table"\].Rows)
                {
                    tnChild = new TreeNode();
                    tnChild.Text  = rowChild\["FieldName"\].ToString();
                    tnParent.ChildNodes.Add(tnChild);
                }
            }
        }
    }
    
    public void Open\_Connection()
    {
        string Conn\_Str = "Data Source=dev-test;Initial Catalog=Malik;Persist Security Info=True;User ID=interns;Password=intern123";
        sqlConn = new SqlConnection(Conn\_Str);
        if (sqlConn.State != ConnectionState.Open)
        {
            sqlConn.Open();
        }
    }
    
    public DataSet Retun\_Table\_BasedOn\_Query(String Quer
    
    ASP.NET question csharp asp-net data-structures

  • tree view select all child nodes when to click parent nodes
    T T_Teef

    we r using asp.net and we have also created check boxes, we want parent node check box checked then its child should also get checked automatically.

    ASP.NET question csharp asp-net data-structures

  • tree view select all child nodes when to click parent nodes
    T T_Teef

    I have tree view control on my asp.net web page. this tree control has check boxes on every node. I want when user selects or make parent node check box checked then its child should also get checked automatically. how can i do this ? kindly its urgent, plz send some code hints.

    ASP.NET question csharp asp-net data-structures

  • Uploading a file but zero bytes are shown
    T T_Teef

    hi i am uploading file using ftp the file is uploaded successfully but the reason is that their is no data in it it shows zero(0) bytes. so plz help :(

    C#

  • ftp error "file not found, no access"
    T T_Teef

    thanks man its really helpfull. :-D

    C# sysadmin help tutorial

  • ftp error "file not found, no access"
    T T_Teef

    Hi guyz i am working on an ftp application need to know how to upload a file. i am having a trouble at Stream ftpstream = ftp.GetRequestStream(); error is The remote server returned an error: (550) File unavailable (e.g., file not found, no access)..

    C# sysadmin help tutorial

  • FileNotFoundException error
    T T_Teef

    i think its a memory error not sure. ;)

    C# help csharp data-structures debugging question

  • how to upload a file using ftp [modified]
    T T_Teef

    Hi guyz i am working on an ftp application need to know how to upload a file. i am having a trouble at Stream ftpstream = ftp.GetRequestStream(); error is The remote server returned an error: (550) File unavailable (e.g., file not found, no access).. :-D

    modified on Thursday, March 26, 2009 9:56 PM

    C# sysadmin help tutorial

  • how to browse a remote directory using ftp client
    T T_Teef

    thanks man its very helpful :-D .

    C# sysadmin tutorial
  • Login

  • Don't have an account? Register

  • Login or register to search.
  • First post
    Last post
0
  • Categories
  • Recent
  • Tags
  • Popular
  • World
  • Users
  • Groups