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 John Tel 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?

    ...SqlConnection detconn = new SqlConnection(showdet); SqlCommand detcomm = new SqlCommand("select * from view_shwAllMusic WHERE ID=@ID", detconn); DataTable mdt = new DataTable(); try { foreach (GridViewRow abc in musicGrid.Rows) {...
  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?

    ...feature not only the user's previous selection, but new options from the database. Please advise. SqlCommand detcomm = new SqlCommand("select * from view_shwAllMusic WHERE ID=@ID", detconn); DataTable mdt = new DataTable(); try { foreach (GridViewRow...
  9. citizenzen

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

    ...SqlConnection detconn = new SqlConnection(showdet); SqlCommand detcomm = new SqlCommand("select * from view_showAudio WHERE ID=@ID", detconn); DataTable mdt = new DataTable(); try { foreach (GridViewRow abc in musicGrid.Rows) {...
  10. citizenzen

    NullException Error when binding to a dropdown

    ...SqlConnection libconn = new SqlConnection(showu); SqlCommand libcom = new SqlCommand("select * from view_chooseLibraryTG", libconn); libconn.Open(); DropDownList newlibr = new DropDownList(); DataTable libdt = new DataTable(); foreach (GridViewRow...
  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