User Profile

Collapse

Profile Sidebar

Collapse
muskan
muskan
Last Activity: Mar 21 '07, 11:41 AM
Joined: Nov 1 '06
Location:
  •  
  • Time
  • Show
  • Source
Clear All
new posts

  • muskan
    started a topic dxDBGrid & dxsidebar controls

    dxDBGrid & dxsidebar controls

    hello,


    Pls tell me how to add dxDBgrid & dxsidebar activex controls in toolbox

    reply me soon it is very urgent.

    Thanks

    Teena
    See more | Go to post

  • muskan
    started a topic c questions
    in C

    c questions

    hello,

    I want to know the answer of these following question....... ....

    . main()
    {
    fork();
    fork();
    fork();
    printf("\n hello");
    }
    How many times print command is executed?


    which one will over flow given two programs
    prog 1: prog2:
    main() main()
    { {
    int fact; int fact=0
    long int x; for(i=1;i<=n;i+ +)...
    See more | Go to post

  • muskan
    replied to change the existing record
    in .NET
    thanks for reply......

    I know this method
    but I want to know some other method for update the records

    I mean to say........
    suppose there 10 textboxes on the form
    and I want to change value of more than 5 textboxes then we have to specify all textboxes value in SET clause .

    I think this is not the good way to update.This method is fine when only 1 or 2 textboxes on the form
    ...
    See more | Go to post

    Leave a comment:


  • muskan
    started a topic change the existing record
    in .NET

    change the existing record

    hello,


    I want to change any of the textbox value and after changing the value when I click on update button record should be reflected into database.

    I don't know how it will be done

    Thanks..
    See more | Go to post

  • muskan
    replied to connectivity error using sql server
    hello,

    Thanks for reply.

    But still connection is not established
    It giving the same error
    I have written as:
    conn.connection string="PROVIDE R=SQLOLEDB;Data Source=VTECHS;d atabase=abc;Use r ID=fggh;Passwor d=*****;"


    tell how to remove.
    Thanks....
    See more | Go to post

    Leave a comment:


  • muskan
    started a topic connectivity error using sql server

    connectivity error using sql server

    hello

    I have written:

    conn.connection string= "data source=VTECHS;d atabase=abc;uid =hkjhkj;passwor d=***;"
    conn.open
    But this line creating error .
    Error is "[Microsoft][ODBC Driver Manager] Data source name not found and no default driver specified
    ".

    Please tell me how to remove the error.
    See more | Go to post

  • muskan
    started a topic Insert the record into database in ASP

    Insert the record into database in ASP

    hello

    I have taken two buttons on the form
    Actually I know the database connectivity but I don't kow how to write the code on the clicking event

    I want to insert the record into database using sql server 2000 in ASP after clicking the Insert button.& delete the record on clicking the delete button


    Please tell me it is very urgent.
    thanks......
    See more | Go to post

  • hello,

    I have written a code like that

    <script type="text/javascript">
    document.forms[form1].items["txtcustid"].

    actually It is showing items instead of elements & also after writing the textbox name not showing focus method....
    See more | Go to post

    Leave a comment:


  • how to set focus in textbox control inh asp.net using c#

    hello

    I want to set the focus in textbox control.
    I have tried a lot but it is not woking.Tell any property or method for this
    but without setting the tabindex property.

    so how it will be possible .
    See more | Go to post

  • thanks for reply
    now it is working...
    See more | Go to post

    Leave a comment:


  • thanks for reply

    I have tried like that

    Chkwithdrawn.Ch ecked =ds.Tables[0].Rows[i][15].ToString();
    but it still not working .It gives the error" cannot implicitly convert object to bool"

    tell how to remove this error....
    See more | Go to post

    Leave a comment:


  • thanks for reply..

    actually I have showed the relationship b/w the 2 tables
    I want to know that it is possible to show the result of the relationship into the datagrid control....
    See more | Go to post

    Leave a comment:


  • retreive values from the database in asp.net using c#

    hello,

    I have written below code for retreiving the values from database into the textboxes only when I enter id into the textbox.
    but it doesn't show any values ino the textboxes.

    please tell how it will be done.

    da = new SqlDataAdapter( "select * from customers where customerid=" + '" + txtcustid.Text + "' ,conn);

    DataSet ds = new DataSet();
    da.Fill(ds,"cus tomers");...
    See more | Go to post

  • how to retreive checkbox value from the database in aspnet using c#

    hello,

    Actually I want to retreive the checkbox value from the database.

    I have written like this:-

    Chkbillingcode =ds.Tables[0].Rows[i]["billingcod e"].ToString() ;
    But it gives error.Could u help me to solve this problem.
    See more | Go to post

  • muskan
    started a topic show relationship between tables in Asp.net using c#
    in .NET

    show relationship between tables in Asp.net using c#

    hello,

    Can I show relationship between tables in the datagrid control.

    I have written a below code for establish relation b/w tables.

    dset.Relations. Add("Customer requests",
    dset.Tables["Customers"].Columns["icustid"],
    dset.Tables["requests"].Columns["icustid"]);
    See more | Go to post

  • muskan
    started a topic send mails
    in .NET

    send mails

    Hello,

    I have written this code for sending mails but is not working.
    Tell what should I have to write after the equal sign in
    SmtpMail.SmtpSe rver = ;

    so mail to be stored in /Inetpub/mailroot/queue & also how can I send External mails throu this code.


    MailMessage msgmail= new MailMessage();
    msgmail.From = txtFrom.Text;
    msgmail.To = txtTo.Text;
    ...
    See more | Go to post

  • how can mid and right function used in asp.net using c#

    hello

    I have written like this

    if right(wherecond ition == "and")
    here
    wherecondition is a string type where condition is stored.

    and also tell me how can I use mid function.
    See more | Go to post

  • muskan
    started a topic How we can unload the form in ASP.NET using c#
    in .NET

    How we can unload the form in ASP.NET using c#

    hello,

    which statement or function can be used to return back to the code after clicking on close button. while we r running the application in asp.net using c#

    could u help me...........
    See more | Go to post

  • I have taken the index instead of 0 but it is not showing all the records

    Could u give me hint by writing some code....
    See more | Go to post

    Leave a comment:


  • How to retrieve all the records from database into textboxes using dataadapter

    hello,


    I want to fetch all the records from database one by one when I click on next button

    I have written this code for fetching the records from database.
    But it shows only first record.
    What code I have to written so that all the records can be fetch into textboxes.

    SqlDataAdapter da = new SqlDataAdapter( "select * from detail",conn1);
    DataSet ds = new DataSet();...
    See more | Go to post
No activity results to display
Show More
Working...