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 strongm 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: slwolf8
  • Order by date
  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!!
  15. slwolf8

    index out of range error

    I am attempting to write some code to delete a row from a datagrid. My code is throwing the index out of range error right on the first line of code in my deletecommand event: Dim strSubCatID As Int32 = dgSubCat.DataKeys(e.Item.ItemIndex) Dim dr As DataRow Dim...
  16. slwolf8

    datagrid control need the functionality of 2 footers.....

    Ha! That sounds like a great idea! I'll give that a try! Thanks!!
  17. slwolf8

    datagrid control need the functionality of 2 footers.....

    I have been using my footer as a sort of add new record feature. Today I discovered an article that shows you how to display a "total" field in the footer. Any ideas on how I could do both of these? My add new record feature works a little different than usual. There is an "add" button...
  18. slwolf8

    Dropdownlist in a datagrid - error

    hey thanks!!! that worked! now unfortunately my ddl comes up empty, but at least there's no error! thanks!
  19. slwolf8

    Dropdownlist in a datagrid - error

    I am trying to add a dropdownlist to a datagrid. I am using code that I got from the learnvisualstudio.net videos. I am getting the following error when I click the edit linkbutton: Object reference not set to an instance of an object. It points to...

Part and Inventory Search

Back
Top