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 Mike Lewis 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: *

  • Users: citizenzen
  • Order by date
  1. citizenzen

    how do i bind selectedvalue for radiobuttonlist in datagrid?

    Thank you KDavie, I am not getting as many errors, but the database values are not being selected. For the detailsview, i placed the above code in the ItemCommand and then I switched the code to modeChanging event. i tried row-editing, but I don't get any of the response.writes to indicate...
  2. citizenzen

    how do i bind selectedvalue for radiobuttonlist in datagrid?

    Hello KDavie. Thanks for your feedback. I do have 2 grids- a master grid and a details grid. The detailsview may have radiobuttonlists and dropdownlists. I am a bit confused, as I essentially need to be able to show the user what they initially selected in the radiobuttonlist or...
  3. citizenzen

    how do i bind selectedvalue for radiobuttonlist in datagrid?

    .aspx CODE FOR THE DETAILSVIEW - TemplateField <asp:TemplateField HeaderText="Master/Dub" ConvertEmptyStringToNull="False"> <HeaderStyle Font-Bold="True" /> <EditItemTemplate>...
  4. citizenzen

    how do i bind selectedvalue for radiobuttonlist in datagrid?

    mdt is not empty. before i placed the template control in, i was able to successfully pull data. please advise.
  5. citizenzen

    how do i bind selectedvalue for radiobuttonlist in datagrid?

    this is what I changed. I had a loop for my data, but now, the detailsview does not appear. foreach (GridViewRow abc in musicGrid.Rows) { foreach (GridViewRow detm in musicDetailsGV.Rows) { CheckBox bCheck =...
  6. citizenzen

    how do i bind selectedvalue for radiobuttonlist in datagrid?

    in my code-behind, I get Object reference not set to an instance of an object. , the error is supposedly with my datasource: myvideo.DataSource = mdt; foreach (GridViewRow abc in musicGrid.Rows) { CheckBox bCheck = (CheckBox)abc.FindControl("selectMusic")...
  7. citizenzen

    how do i bind selectedvalue for radiobuttonlist in datagrid?

    I have datavaluefield in my code behidn above. I am getting an error with everything.
  8. citizenzen

    how do i bind selectedvalue for radiobuttonlist in datagrid?

    I have a detailsview which is based on the selection of mastergrid. The detailsview has templatefields for editing and I included textboxes, radiobuttonlists, dropdownlists, etc. When the user chooses to edit, I need to retrieve the sql values so they can see what they previously chose...
  9. citizenzen

    How to have db values show for dropdownlist &amp; radiobutton in editmode

    Hello. I have a detailsview where I placed textboxes, radiobuttonlists, and dropdownlists. I am able to successfully show the database values for the textboxes, but how do i do the same for radiobuttonlists and dropdownbuttonlists? Both lists shold show the values entered from the database as...
  10. citizenzen

    NullException Error when binding to a dropdown

    Hello. I am receiving an error when I bind to a dropdownlist. Object reference not set to an instance of an object. at modifyProgramming.fillLibrary() in c:\Inetpub\wwwroot\TapeLibDEVTG\modifyProgramming.aspx.cs:line 313 I have a similar page which functions fine, but I don't see where my...
  11. citizenzen

    is it possible to convert sql generated xml file to filemaker pro xml?

    Hello. I understand that filemaker pro has 2 proprietary XML formats. however, it's not clear to me whether I can convert a sql generated xml file to filemaker pro's xml. Is this possible?
  12. citizenzen

    can i include a second query that can then highlight results?

    i actually refined my statement, and more cells are finally being highlighted, but there should be about 275 and I am getting only 10: '1) Pull results from initial recordset While Not rs.EOF For i = 0 To rs.Fields.Count - 1 row = 2...
  13. citizenzen

    can i include a second query that can then highlight results?

    thank you. i was embedding the second statement within the overall query (which pulls the initial data). so far, only one cell is highlighted, although there are more to highlight. i am still getting an error within this second block. the program stops at the 'end if'. i put 2 variables in...
  14. citizenzen

    can i include a second query that can then highlight results?

    is it really possible to include a second query within my module that will highlight found records based on the query? i have 2 queries. the first one runs successfully. however, i want to include a second query that is also pulled from the database. with the second query, i am searching...
  15. citizenzen

    how can i move search to next cell if cell is empty?

    as some of the strings don't exists, I tried the following, but i still get incorrect data in the transposed cells. is there an ifExists function? For i = 0 To UBound(sInt, 2) Step 1 lRow = 2 For Each rCells In ws_source.Cells.Range("A1986:A2003")...
  16. citizenzen

    how can i move search to next cell if cell is empty?

    i get a blank worksheet: For i = 0 To UBound(sInt, 2) Step 1 lRow = 2 For Each rCells In ws_source.Cells.Range("A1986:A2000") ws_dest.Range("A:G").EntireColumn.AutoFit Select Case rCells.value Case "User:", "ID:"...
  17. citizenzen

    how can i move search to next cell if cell is empty?

    i get an empty sheet. no values are inserted.
  18. citizenzen

    how can i move search to next cell if cell is empty?

    Hi. I am running a basic macro to search text within a long excel document. i am copying the contents of the search into a new excel document. the data is transposed. the problem is that some of the cells within the source document are blank. ie: User: ID: Email: City: Sector: User...

Part and Inventory Search

Back
Top