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

Recent content by slwolf8

  1. slwolf8

    controlling "repeat group header" option programatically

    right, that's it exactly. strange request i know :) thanks though!!
  2. slwolf8

    controlling "repeat group header" option programatically

    well it's just that it would be hard to guess what number to put there because i don't know how many records would fit on a page (the user could change print margins etc)....
  3. slwolf8

    controlling "repeat group header" option programatically

    I need to display reports in my asp.net page as one long continuous report. However, when printed, my boss would like the header to repeat. Is there a way to control this feature programatically (vb.net)?
  4. slwolf8

    datagrid sql statement help

    first off, i realize this is kind of an odd request, try and ignore that :). my boss wants me to implement a copy row feature in a datagrid. essentially, i need to gather all the info from the current row and do an insert into the sql database that has all that info. i know that i can grab...
  5. slwolf8

    protecting web.config

    I'll give that a try. Which accounts have to have access, just aspnet?
  6. slwolf8

    protecting web.config

    is it possible to protect my web.config from other admins who have access to the IIS machine?
  7. slwolf8

    Delete Command for datagrid not working

    Thank you again so much!!!!! Clearing the dataset first did it!!! That also solved another problem I had. Thank you soo much!!!
  8. slwolf8

    Delete Command for datagrid not working

    I am still having trouble with this!! The deletions (updates) are done in the database but the datagrid doesn't update to reflect the changes. Here is the code I am using now: Private Sub dgSubCat_DeleteCommand(ByVal source As Object, ByVal e As...
  9. slwolf8

    Loading User control

    I have a user control "header.ascx" that I would like to load into a place holder on some of my webpages. It will be functioning like a header. Can anyone offer me some guidance on how to do this (VB)? I gather that I will need to do something like the following: Dim ctlHeader as Proj.Header...
  10. slwolf8

    Delete Command for datagrid not working

    One more question. If I were to call SqlDataAdapter1.update(ds, "table") in the deletecommand event of the datagrid would that be the same thing as doing the SqlDataAdapter.deletecommand.executenonquery()?
  11. slwolf8

    Delete Command for datagrid not working

    Oh my word that is SOOO funny. I like that idea!!! Thanks, I'll give that a try!!!!
  12. slwolf8

    Delete Command for datagrid not working

    i'm just a little confused on what to do :). The book I am following (Microsoft Certification book by Gunderloy) had me setup the code this way in the delete command event of the datagrid and it also had me configure the data adapter with a delete command: DELETE * FROM Subcat HERE...
  13. slwolf8

    Delete Command for datagrid not working

    My delete command for my datagrid isn't working. I am using the following code: Dim strSubCatID As String = dgSubCat.DataKeys(e.Item.ItemIndex).ToString Dim dr As DataRow Dim i As Integer For i = 0 To DsBudget.Tables("SubCat").Rows.Count - 1...
  14. slwolf8

    index out of range error

    that's what it was!! thanks!!

Part and Inventory Search

Back
Top