User Profile

Collapse

Profile Sidebar

Collapse
software student
software student
Last Activity: Nov 14 '07, 10:09 AM
Joined: Jul 21 '07
Location:
  •  
  • Time
  • Show
  • Source
Clear All
new posts

  • software student
    started a topic crystal report output errors
    in .NET

    crystal report output errors

    when i click on viuew crystal reports..the output is repeated for four/five times in a crystal report
    i've chacked the query its correct\dont knw wats the problem
    See more | Go to post

  • software student
    started a topic problem in crystal report
    in .NET

    problem in crystal report

    on caliling crystal reports it asks for database password
    i tried a code ..but it is giving error

    my code is:

    ReportDocument rd = new ReportDocument( );
    rd.Load("collap sed_building_da te");
    DataSet ds= new DataSet();
    rd.SetDataSourc e(ds.Tables("cr mie_mgmt"));
    rd.SetDataSourc e(ds.Tables("co llapsed_buildin g"));...
    See more | Go to post

  • software student
    replied to problem in displaying images
    in .NET
    yes
    "the parameter is not valid" and sometimes "orgument was out pf bound of array"
    See more | Go to post

    Leave a comment:


  • software student
    started a topic problem in displaying images
    in .NET

    problem in displaying images

    i have stored full paths of pictures in sql server through browse file button. i want to display these pictures on windows form,am using c#
    i'have tried the following two codes..but dont understand what's wrong with them
    > pictureBox1.Ima ge = Image.FromFile( dr1.GetString(0 ));

    >Bitmap bp = new Bitmap(dr1.GetS tring(0));
    pictureBox1.Ima ge = bp;

    i even tried dr1.getstring(0 )...
    See more | Go to post

  • display picture into picture box selecting from sql

    i need to select a picture from sql server, picture is stored as path and have to display it in the picture box. now i dont understand how to covert it to picture box type
    See more | Go to post

  • software student
    replied to want to create popup windows
    in .NET
    i m using message box already i just wanted to replace it with pop up alerts showing message for new incoming call(showing text only)...
    See more | Go to post

    Leave a comment:


  • software student
    started a topic want to create popup windows
    in .NET

    want to create popup windows

    i want to create pop up window in my windows forms through code.im using c#. is there any code for it??
    See more | Go to post

  • software student
    started a topic problem with updating records from datagrid
    in .NET

    problem with updating records from datagrid

    i m editing records through datagrid..behin d my update button i've written following code..

    String str = " ";
    for (int i = 0; i == editgrid.RowCou nt - 1; i++)
    {
    str = "UPDATE criminal SET cr_id = " + editgrid.Rows[i].Cells[1].Value + ", cr_name= '" + editgrid.Rows[i].Cells[2].Value + "', cr_desc='" + editgrid.Rows[i].Cells[3].Value + "'...
    See more | Go to post

  • :)
    actually i missed lkast sentence that was

    how to validate numbers and alphabetic characters??

    any how..thx alot one of the prb is solved,,numbers are validated now wud u plz do one more favour?
    tell me how to validate text
    (alphabetic characters)...
    See more | Go to post

    Leave a comment:


  • software student
    started a topic validation checks in desktop application
    in .NET

    validation checks in desktop application

    in windows application i want to apply validation checks.i hv tried one for empty textbox
    i.e.
    if (textBox1.Text == "")
    {
    MessageBox.Show ("Enter phone number", "Error in Input", MessageBoxButto ns.OK, MessageBoxIcon. Information);
    this.textBox1.C lear();
    this.textBox1.F ocus();
    return;
    ...
    See more | Go to post
No activity results to display
Show More
Working...