CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com

Search:

Type: Posts; User: f1alan

Search: Search took 0.03 seconds.

  1. And lift off for Code Rocket 2.0 on a mission to take software design to new heights!

    Hi Again,

    I just wanted to let everyone know that we have now released version 2.0 of Code Rocket and you can read about the new products and download trial versions here:...
  2. Code Rocket 2.0 Beta: New languages, debugger support and more.

    Hi Again,



    I just wanted to let you know that we can now reveal that Schiehallion was the codename for Code Rocket 2.0, which has just entered its beta phase. We have added some exciting new...
  3. Coming Soon: Schiehallion from Rapid Quality Systems

    Hi,

    Rapid Quality Systems are currently developing a brand new software design product code named "Schiehallion".

    Our Code Rocket products allow developers to design and visualize their C#,...
  4. Replies
    3
    Views
    1,845

    Re: Parameterized query with Select Command

    Hi Aalok,

    I don't know what version of .NET you are running, but I can only assume that the AddWithValue method is not available in your version.

    AddWithValue is not the only way to add a...
  5. Replies
    3
    Views
    1,845

    Re: Parameterized query with Select Command

    Hi,

    Try something like this:

    SqlCommand cmd = new SqlCommand("SELECT QuesID, QuesDet, Quiz_Name FROM ak WHERE Quiz_Name = @Quiz_Name", conn);
    cmd.Parameters.AddWithValue("Quiz_Name", "Some...
  6. Re: Submitting part of a selected value to a database

    Hi,

    You can give each option in an HTML drop down list an optional value as well as the text that shows in the browser. Something like this should help you:

    <select name="weeks">
    <option...
  7. Replies
    9
    Views
    19,193

    Re: TableLayoutPanel height issue

    Hi Jason,

    Thanks for sharing your working solution. Much simpler!

    Alan
    www.rapidqualitysystems.com
  8. Replies
    9
    Views
    19,193

    Re: TableLayoutPanel height issue

    Hi Jason,

    I see what you mean.

    It seems that you have to decrement the RowCount property as well as removing the RowStyle. I got the following code to work:
    tableLayoutPanel1.RowCount--;...
  9. Replies
    9
    Views
    19,193

    Re: TableLayoutPanel height issue

    Hi Jason,

    Are you using the Visual Studio forms designer?

    If you are using the forms designer, then you can right click on the table panel and choose "Edit Rows and Columns". From this dialog...
Results 1 to 9 of 9





Click Here to Expand Forum to Full Width

Featured