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

Search:

Type: Posts; User: josh6735

Search: Search took 0.01 seconds.

  1. Replies
    5
    Views
    12,650

    Re: Help with Windows fForm (.net)

    When you set the text of your text box, I think you want to append the text instead of replacing it. See your line of code that matches the following:



    textBox4.Text = value + "\r";


    If you...
  2. Replies
    3
    Views
    6,071

    Re: Using an object property in an SQL query

    You can use an object property, like .Text, in a query. One way to do this is by using a parameter object. The code below is a method tailored after your question, so you may be able to plug it right...
  3. Replies
    3
    Views
    1,504

    Re: Adding value and display to a ComboBox

    *Forgive the double post, but I was unable to edit the last one. Added code tags.

    There are some interesting strategies that you could use with the DataSource, DisplayMember, and ValueMember of a...
  4. Replies
    3
    Views
    1,504

    Re: Adding value and display to a ComboBox

    There are some interesting strategies that you could use with the DataSource, DisplayMember, and ValueMember of a ComboBox when binding to ADO objects such as DataTable. I recommend searching for...
Results 1 to 4 of 4





Click Here to Expand Forum to Full Width

Featured