Search results for query: *

  • Users: flann
  • Content: Threads
  • Order by date
  1. F

    dynamic dropdownlist

    I'm trying to create a dynamic dropdownlist, not in a datagrid, that populates the list based off of the current month, and then the previous 11 months. I've got it working to the point that it does populate the ddl, but then it is refilling it. Does anybody know of a good resource that shows...
  2. F

    How to bind a DropDownList to a database field

    I'm trying to bind a ddl with a database field that is a Yes or No field. I can't seem to figure out how to make it work. In design view, I selected the field from the databindings, and then in code view put the normal... Me.SqlDataAdapter1.SelectCommand.Parameters("@LeadID").Value() =...
  3. F

    DropDownList Datagrid

    Does anybody know of an easy way to put a dropdownlist into a datagrid. I'm just doing your run of the mill datagrid, with an edit and delete button.
  4. F

    Iis 5.1 capacity

    I'm wondering if 5.1 would be ok for a site that uses asp.net and gets approx. 500 visits a day?
  5. F

    Updating with a dataset

    I'm trying to update an sql database using a datagrid and asp.net. sqlconnection1.open sqldataadpter1.update(dataset1, "ClientInfo") sqldataadapter.executenonquery() sqlconnection1.close Can anybody lend a hand?
  6. F

    Best asp.net book you're read?

    What is the best asp.net book anybody has read? I'm looking for something that is going to explain the details of the .net way of programming.
  7. F

    OpenFileDialog default view

    Is there anyway to set the default view in the openfiledialog to thumbnails? Also, can I get rid of the "my computer" and other icons on the left hand side of the ofd? Thank you,
  8. F

    ListView Icons

    I'm trying to create a listview that will display files from a directory and show them as icons. Dim s As String ListView1.Clear() Dim strFiles As String() = Directory.GetFiles(TreeView1.SelectedNode.Text) For Each s In strFiles...
  9. F

    pdf viewer?

    Is there anyway to open a pdf file within a windows form?
  10. F

    Getting field value from a dataset

    I'm trying to put the value of a field into a variable where a parameter is met. see code below Me.SqlDataAdapter1.SelectCommand.Parameters("@PEmailAddress").Value() = strEmail Me.SqlDataAdapter1.Fill(DsLeads1.ClientInfo) If DsLeads1.ClientInfo.Rows.Count = 0 Then...
  11. F

    Display a tooltip for each item in a combo box

    I can't seem to figure out or find the answer to how you would add a tooltip for each item in a combo box using vb.net 2003. Is this even possible, I can't believe that with all the functionality with vb.net that I wouldn't be able to do this. Can anybody help me?
Back
Top