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 SkipVought on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  1. byurow

    Nested Gridview event not firing

    I will...thanks again! Brenda
  2. byurow

    Nested Gridview event not firing

    Ok...I really appreciate your help. I'll figure something out...even if I have to start over! Thanks again! Brenda
  3. byurow

    Nested Gridview event not firing

    I thought the same thing...but it doesn't work either. I need to go to the gvDirective.OnDataBound event to set up the data source and pass the ID of that grid to the gvTask grid. It should follow the following route: 1. gvTask_RowEditing (calls gvDirective.DataBind()) 2...
  4. byurow

    Nested Gridview event not firing

    I think I'm confused too ;) Parent: gvComplianceType Child: gvDirective Grandchild: gvTask I created a word document with screen prints of the grids to hopefully show what I am trying to do and where I am. Unfortunately, I can't upload it! Lets try this: If I click on the...
  5. byurow

    Nested Gridview event not firing

    Here is the code for the gvTask Protected Sub gvTask_RowDataBound(ByVal sender As Object, ByVal e As GridViewRowEventArgs) Handles gvTask.RowDataBound Dim row As GridViewRow = e.Row Dim strSort As String = String.Empty 'Check if this is our Blank Row being...
  6. byurow

    Nested Gridview event not firing

    Thank you both for your responses. I got as far as I did through google searches...I basically found others doing the same thing and made it work for me :) (only it really doesn't work). I didn't want to do a 3 layer grid but my users want to be able to see all data on one screen. I wanted...
  7. byurow

    Nested Gridview event not firing

    Let me first start with...I am teaching myself .net :) Now, having said that...I have a page that contains a 3-level nested gridview: parent child grandchild For the most part..it works. The parent and child grids both work perfectly. The grandchild however, is causing some...
  8. byurow

    Set printer options programmatically

    Hello, I am trying to help my non-technical users :) I have a Access 2003 report that I need to print 6 pages on 1 sheet and rotate it 180 degrees. It is easy enough (for most people) to just go into the printer settings (i.e. rotate printer orientation 180 degrees and print 6 pages per...
  9. byurow

    DropDownList null value

    Great! Thanks so much. I will look into it. Brenda
  10. byurow

    DropDownList null value

    Thanks for the reply Jason. This is actually the first .Net app I have written (basically I'm a DBA with time on my hands, so I am playing). I have built this app by using the tutorial from Microsoft. Could you point me in the direction of a sample app that shows how to bind directly to the...
  11. byurow

    DropDownList null value

    Ok, I can't figure this one out. I have a grid with a combo box that has the following code: </asp:TemplateField> <asp:TemplateField HeaderText="Day of the Week" SortExpression="Day_of_Week"> <EditItemTemplate> <asp:DropDownList...
  12. byurow

    Not In Query

    That did it...thank you!!!! I think I was looking at it too long! :) Brenda
  13. byurow

    Not In Query

    Ok, I have 2 tables. Tbl_IP_Address contains a listing of all IP Addresses assigned to my org. Tbl_MAC_IP associates the IP Address to the MAC address of a given device. I want to query for those IP Addresses not assigned to a MAC Address. Here is what I have so far: SELECT...
  14. byurow

    ODBC connection failed?

    Go to Tools...Database Utilities....Linked Table Manager. Select all tables then hit ok. It may prompt you for the new location and login information. Provide the correct information and you should be good. Brenda
  15. byurow

    Setfocus afterupdate event question

    You could always put the setfocus code on the Lost Focus or On Exit event. That would, however, create logic that would not allow the user to move to another field. You would need to create an If statement on the LostFocus event that allowed the user to move on if certain criteria were met...
  16. byurow

    simple query

    You can run them as one query: Where Asset Like "ABC1*" Or Asset Like "ABC2* Or Asset Like "ABC3*" Brenda
  17. byurow

    Runtime Error '2465'

    Remou...Yes, the control is visible, an ActiveX calendar has the current focus and Name AutoCorrect is not on. I am in the process of recreating the form with just that code. I will let you know if that works in a minute. Thanks! Brenda
  18. byurow

    simple query

    Try: Like "ABC1*" Or Like "ABC2*" or Like "ABC3*" or Like "ABC4*" Brenda
  19. byurow

    simple query

    Is there a space after abc? Have you tried "abc "? Brenda
  20. byurow

    Runtime Error '2465'

    Ja...I did look at the link and tried some of the suggestions...no luck. Remou...I am getting Error No 2465. I am placing the focus on a text box that is visible on the form so I can't imagine why Access is throwing an issue. My problem is that I don't understand why it works sometimes and...

Part and Inventory Search

Back
Top