Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations wOOdy-Soft on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Recent content by CGreenMTU

  1. CGreenMTU

    classroom asp.net tutorials

    Thanks so much. i began programming with ASP.NET with VB.NET this past summer for a company I worked for and used quite a few of their asp.net books, but never bought my own. Is there any ASP.NET / ADO.NET books that you could recommend that would be a great all-around reference for designing in...
  2. CGreenMTU

    classroom asp.net tutorials

    thanks alot Isadore! I think i'm going to develop a small application that will show for example: customer information relating to an order from drop down menus and textboxes. I also would like to do a tutorial on a log-in application (possibly to view customer information). I'd also like to...
  3. CGreenMTU

    classroom asp.net tutorials

    I'm wanting to develop a classroom asp.net tutorial, but don't want to make it too complicated for those who aren't programmers. I'm wanting to use asp.net & vb.net for the tutorial and do a connection to an access database (add, delete, updates possibly). I was wondering if anyone knew of any...
  4. CGreenMTU

    Searching LDAP directory using PuTTY

    hi, i'm a newbie when it comes to LDAP (in the process of learning). I'm using PuTTY to test some search queries, etc....and i'm having problems accessing a few objectClasses. The directory is for a college and it stores information about students, faculty, staff, which would include name...
  5. CGreenMTU

    List multiple table columns in DropDownList

    I got it to work like this (I used '&' instead of '+'), but when the drop down list populates, the two fields are right next to each other like = FirstNamedInsured32 How can i put a space or tab in there?
  6. CGreenMTU

    List multiple table columns in DropDownList

    this is the error i get on run: Exception Details: System.InvalidOperationException: The provider could not determine the Double value. For example, the row was just created, the default for the Double column was not available, and the consumer had not yet set a new Double value.
  7. CGreenMTU

    List multiple table columns in DropDownList

    I'm basically asking how do you put two fields in the datatextfield, like the person in the original thread is asking.. thanks
  8. CGreenMTU

    List multiple table columns in DropDownList

    is this not possible? i was just curious if anyone could help me out. thanks
  9. CGreenMTU

    databind question

    I have a drop-down menu which populates 3 textboxes based on the selection in the drop-down menu. The drop-down menu is populate thru TablePolicy, and fills the 3 textboxes from TablePolicy. I also have a search set up in one of the textboxes (search by Claim Number), which populates other...
  10. CGreenMTU

    Drop-Down List

    when i select an item in the drop down list, the datavaluefield pops up in a messagebox. when i click the "please choose" line, nothing happens..
  11. CGreenMTU

    Populating textboxes from dropdownlist selection

    I was working on the same concept the other day. Maybe this will help. It works for me.... Private Sub ddlInsured_SelectedIndexChanged(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles ddlInsured.SelectedIndexChanged connection.Open() Dim query As...
  12. CGreenMTU

    Drop-Down List

    that code still gives me the same error. any other suggestions?
  13. CGreenMTU

    List multiple table columns in DropDownList

    this is an old thread, but i'm having a problem and maybe someone can look at my code. I want to display two fields in a drop-down list and here is my code. Can someone tell me what is wrong with it? Sub FillInsuredDropDownList() Dim strMasterClaimsRecord As String = "SELECT...
  14. CGreenMTU

    Drop-Down List

    I'm using the following on page load: If Not IsPostBack Then DropDownList1.Items.Insert(0, "Please Choose") End If And this is what i'm using for my Selected Index Changed: Private Sub ddlInsured_SelectedIndexChanged(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles...
  15. CGreenMTU

    Drop-Down List

    I know this is an old post, but what the heck. I'm doing the same thing with the following code and it works fine: If Not IsPostBack Then DropDownList1.Items.Insert(0, "Please Choose") End If However, if i select "Please Choose" in the drop-down menu after selecting another item, it gives me...

Part and Inventory Search

Back
Top