User Profile

Collapse

Profile Sidebar

Collapse
ssknov
ssknov
Last Activity: Feb 12 '08, 12:57 PM
Joined: Dec 4 '07
Location:
  •  
  • Time
  • Show
  • Source
Clear All
new posts

  • krishnaneeraja
    krishnaneeraja posted a Visitor Message for ssknov
    Hi all,

    I want to know how to place image control in RDLC reports.
    I want to display image control in some places and I dont want to display image control in some places in RDLC reports(Windows application).
    Please anybody help me.

    Thanks and Regards,
    Neeraja.
    See more | Go to post

  • ssknov
    started a topic C#: Doubt in textbox Lostfocus event
    in .NET

    C#: Doubt in textbox Lostfocus event

    hi all
    i have a problem with my text box whose Lost Focus event has a validation code.
    but when the Lostfocus event occurs it prompts an error as below inside the designer.cs window
    can any one help me

    Code:
     void txtLoginId_LostFocus(object sender, System.EventArgs e)
            {
                throw new System.Exception("The method or operation is not implemented.");
            }
    ...
    See more | Go to post

  • Ado.net: how to assign the column value in a datatable to combobox.?

    hi all
    i want to show a column value from datatable.I tried as below . it doesnt shows the values.

    pls help.

    Code:
                  
                    SqlDataAdapter adpt = new SqlDataAdapter(cmd);
                    DataTable dtCust1 = new DataTable("CustomerDatTab");
                    adpt.Fill(dtCust1);
               
                      dataGridView1.DataSource=dtCust1;
    ...
    See more | Go to post

  • ssknov
    replied to How To Use A Database In Your Program
    in .NET
    hi frinav
    fine article.
    it ll be good if u can add examples for Executescalar, Datatable.

    thnk u
    kssk
    See more | Go to post

    Leave a comment:


  • C#:App: Creating common class containing INSERT method for many FORMS?

    HI ,
    i want to know how to create a class which has an INSERT method for several forms.

    for example: i have 3 forms , FORM1,FORM2 FORM3.

    FORM1 has 3 textboxes.
    FORM2 has 7 textboxes .
    FORM3 has 20 textboxes.

    Each textbox contrl has datas with differen datatypes.i want to create a common class with INSERT method which inserts data in different table for its corresponding calls made...
    See more | Go to post
    Last edited by ssknov; Jan 2 '08, 07:37 AM. Reason: typing error

  • ssknov
    replied to C#:how to make Esc key to close form
    in .NET
    ya
    thats right.

    but when i tried as

    this.close(); //also it doesnt responds my Esc key press.

    ssk...
    See more | Go to post

    Leave a comment:


  • ssknov
    started a topic C#:how to make Esc key to close form
    in .NET

    C#:how to make Esc key to close form

    hi
    i need to close the form when esc key is pressed. i tried as below but no response.

    Code:
    private void Form1_KeyPress(object sender, KeyPressEventArgs e)
            {
                if(e.KeyChar==(char)27)
                {
                    this.Hide();
                }
            }
    thanks in adv
    kssk
    See more | Go to post

  • ssknov
    started a topic C#App: Problem in DataGridView CellclickEvent
    in .NET

    C#App: Problem in DataGridView CellclickEvent

    hi
    everybody
    pls help me to solve my problem. Though my code is right (i feel) i couldnt achieve the result i expect , i tried in all means, any one pls solve my headache!.

    Code:
    private void DataGrdVw1_CellMouseClick(object sender, DataGridViewCellMouseEventArgs e)
                 {
                     string CurrentSelValue;
                     CurrentSelValue = DataGrdVw1.Rows[e.RowIndex].Cells[e.ColumnIndex].Value.ToString();
    ...
    See more | Go to post

  • ssknov
    replied to C#::Hiding MenuStrip in MDIParent
    in .NET
    My code doesnt works , even if i am right

    i am hiding my MDI's menustrip in its load, when i click the button in form2 it should be visible. i tried in my code. it wont works. pls c my code again.

    help me

    thanks
    kssk
    See more | Go to post

    Leave a comment:


  • ssknov
    started a topic C#::Hiding MenuStrip in MDIParent
    in .NET

    C#::Hiding MenuStrip in MDIParent

    hi

    i am creating a login page.Inthe form load itself i need to hide the MenuStrip in MDI Parent to HIDE, When the users gives the correct passwd and pushes the Loginbutton , My MDIParent1 forms menustrip should be visible .

    c my code . but it doesnt works. Any body pls clear my doubt.

    Code:
            private void LoginForm_Load(object sender, EventArgs e)
            {
                MDIParent1
    ...
    See more | Go to post
    Last edited by ssknov; Dec 20 '07, 07:32 AM. Reason: typing error

  • ssknov
    replied to c#:Doubt in eventhandler?
    in .NET
    i am trying

    thank u very much torgg
    See more | Go to post

    Leave a comment:


  • hi das
    sorry my question was wrong,
    though it was disabled it should be in white color?

    now i did it thanku.

    for others following code may help

    this.txtUserNam e.BackColor = System.Drawing. SystemColors.Co ntrolLightLight ;

    cheers
    kssk
    See more | Go to post

    Leave a comment:


  • ssknov
    replied to C#:Creating Login
    in .NET
    thank you

    i ll try and reply if any clarification
    kssk
    See more | Go to post

    Leave a comment:


  • ssknov
    started a topic c#:Doubt in eventhandler?
    in .NET

    c#:Doubt in eventhandler?

    hi all

    i have two forms FORM1 and FORM2.and form1 has two buttons.

    when buttons B1,B2 is clicked in FORM1, FORM2 should appear,
    but i need to trace which button is clicked .so that i want to display dfferent controls in FORM2 accordin to button click.

    Any body give some tips

    I am trying to trace the "event e" in the FORM2 's load event.

    pls help
    See more | Go to post

  • c#: How to change the Back color of the Disabled TextBox control

    hi
    I am using Textbox contrl which is disabled for some conditions.
    I would like to make the Textboxes back color as white as it looks when it is enabled? Can u pls help how to change its back color?


    Thank u
    See more | Go to post

  • ssknov
    started a topic C#:Creating Login
    in .NET

    C#:Creating Login

    hi all
    i need to create a login page.

    I have three fields in my UserMastertable

    1.Login Id
    2.UserName
    3.Password

    I had loaded these values in a dataset.
    nOw i need to compare the values UserName and Passwd given in a form by user with column values in dataset! How?

    help me

    thanks
    See more | Go to post
    Last edited by ssknov; Dec 19 '07, 08:33 AM. Reason: incomplete question

  • hi
    dip

    i tried. its working
    thank u very much

    kssk
    See more | Go to post

    Leave a comment:


  • ok thank u
    i ll try...
    See more | Go to post

    Leave a comment:


  • C# how to call child forms from mdi for menu item clik

    hi
    all

    can any one say how to call the child form from MDI menu item click event

    thank u
    ssk
    See more | Go to post

  • ssknov
    started a topic doubt in using serveral datasets?

    doubt in using serveral datasets?

    hi all
    i have a doubt, that
    when i have several "select" queries for different tables, different criterias in same table, SHOULD I USE seperate DATASETS for each query?

    pls reply me.
    since i did like that, so that the no of datasetsi increased in my proj?
    pls suggest?

    thanks in adv
    kssk
    See more | Go to post
No activity results to display
Show More
Working...