Search results for query: *

  • Users: flann
  • 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

    Best asp.net book you're read?

    thank you, that does sound like the type of book i've been looking for.
  3. 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() =...
  4. 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.
  5. 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?
  6. 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?
  7. 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.
  8. F

    ListView Icons

    I understand how to get the .pdf file to start by manually putting in a string, but I do I get the index value of the selected item? I'm trying this.. Dim oProcess As System.Diagnostics.Process Dim x As Integer x = ListView1.SelectedItems.IndexOf oProcess.Start(strFiles(x))
  9. F

    ListView Icons

    I got my Icon to show up, but I can't seem to figure out how to get the pdf file to open? Dim s As String Dim imageListLarge As New ImageList ListView1.Clear() imageListLarge.Images.Add(Bitmap.FromFile("c:\PDFFile.ico")) ListView1.LargeImageList = imageListLarge Dim strFiles As...
  10. 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,
  11. 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...
  12. F

    pdf viewer?

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

    Getting field value from a dataset

    I figured it out. the red code should be strAnalyst = DsLeads1.ClientInfo(strAnalyst).AnalystID()
  14. 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...
  15. F

    Display a tooltip for each item in a combo box

    thank you. How hard is it to make your own combo box?
  16. F

    Display a tooltip for each item in a combo box

    I guess this is just not possible :(
  17. F

    Display a tooltip for each item in a combo box

    it's close, but I need to be able to have the tooltip in appear when the menu drops down and you hover over any item. I also need to be able to have the tool tip be different from what is in the combo box. An example would be, SEO would be in the combo box and then when you hover, the tool tip...
  18. F

    Display a tooltip for each item in a combo box

    after further evaluation, I noticed that the menu item does have a mouse hover after you select the item. It is however the same text that is in the combo box.
  19. F

    Display a tooltip for each item in a combo box

    Thank you for responding, however when I opened the project, the mouse over on each item didn't work. I looked at your code and I didn't see anywhere that this would happen. Under the sub ComboBox1_MouseHover I changed the code to Me.ToolTip1.SetToolTip(Me.ComboBox1, "hello") to see what it...
  20. 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