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

  • Users: jrapp
  • Order by date
  1. jrapp

    XSLT Matching Tree from Different Nodes

    I like it! I'll give it a try. Thanks
  2. jrapp

    XSLT Matching Tree from Different Nodes

    I'm trying to output a category tree/sitemap to HTML using XML & XSLT. The XML gives me a list of categories and the current selected category in two different nodes. I need to grab the category node from the tree that corresponds to selected category. Here's a sample XML: <Page>...
  3. jrapp

    BladeCenter MMU Reset

    Thanks! I actually stumbled upon this earlier, not sure why I couldn't find it... 5, 5, then 10...
  4. jrapp

    BladeCenter MMU Reset

    Hey everyone. We've got a BladeCenter full of HS20's. I'm trying to get into the MMU web management interface, but the username/password has been changed from the default USERID/PASSW0RD. We purchased this off-lease and don't know the original owners. I found the button to reset the IP...
  5. jrapp

    Updating Access From SQL, Speed Issues??

    Hey everybody. I have a stored procedure that runs every 10 minutes and updates a few fields from SQL to Access via a linked server. The problem is, it takes about 15 seconds for each row to update, and at times there can be thousands of rows, meaning it takes a very long time to update...
  6. jrapp

    Dynamic Controls - Client Side??

    Hey everybody. I'm looking for a solution to a design problem/idea that I've run into. I need a method to create controls dynamically, client side, and have said controls be posted back to the server. I know how to make new controls in javascript, but I can't post them back into .net. Here's...
  7. jrapp

    Internet Explorer Sidebars?

    Hey everbody. I'm looking for a resource on how to build explorer bars in vb6 or vb.net. However, all the sites that I have found so far are either C++ or C#, neither of which languages I know, nor have a compiler or ide for. So, I'm hoping that someone could help me out and point me in the...
  8. jrapp

    ASP.NET Cookies Problem.

    That was the problem. I'm using XP for my test server, so it must be a problem in asp.net. That is possibly the strangest error I've seen yet, definately a bug. Thanks for the help! Jeff Rapp jrapp@sell2all.com
  9. jrapp

    ASP.NET Cookies Problem.

    Hey everybody. The program that i'm writing makes use of cookies to track logins. When I run it from my machine (the "server") as http://localhost/app/default.aspx, the cookies save fine. When I try to run it from another machine, or even mine by going to http://my_computer/app/default.aspx...
  10. jrapp

    Copy Record Inside Table?

    I went ahead and used Angel's idea, however that somewhat changes what I was trying to do (keep coping even if new columns are added). The error I was experiencing was &quot;There is already an object named 'Items' in the database.&quot; eh? Thanks for all the help! Jeff Rapp
  11. jrapp

    Copy Record Inside Table?

    Here's what I'm doing. Angel, I haven't tried yours yet, but that's my next step. Thanks! CREATE PROCEDURE proc_copyItem @ItemID int AS SELECT * INTO #temp_items FROM Items WHERE ItemID=@ItemID ALTER TABLE #temp_items DROP COLUMN ItemID SELECT * INTO Items FROM #temp_items GO Jeff Rapp
  12. jrapp

    Copy Record Inside Table?

    Hey all. What I'm trying to do seems to be very simple, yet I can't get it to work correctly. I need to make a stored procedure that takes in an ID number (unique key), finds that record and appends a copy of that record to the bottom of the table, with a new ID number. SQL Server keeps...
  13. jrapp

    MSFLXGRD Not Registering Correctly?

    Works great! Thanks a bunch!
  14. jrapp

    MSFLXGRD Not Registering Correctly?

    Hey everybody. I have a vb6 app that makes extensive use of the msflxgrd.ocx libraries and is installed on a number of client machines via a Windows Installer msi package. The install and the program both work great, so long as you are logged in as admin. The problem here is that normal users...
  15. jrapp

    ML530 and Windows 2000?

    Wait, I got it to work. It was one of two things. I disabled the onboard SCSI controller, and I waited longer for setup. Not sure which one worked.
  16. jrapp

    ML530 and Windows 2000?

    Hey all. I have an ML530 with dual PIII Xeon 866, Smart Array 4200 Card, IBM Serveraid 4H card, and am having a big problem installing Win2k. I am currently using the IBM Serveraid card since it was easier to configure, and all seems working fine on that end. The problem is installing Win2k...
  17. jrapp

    Roaming Profile Quota?

    Hey everyone. We have a Win2000 server machine running as a domain controller and an active directory server. Everything works wonderfully. We're looking to change one thing, however, and have been unable to find where the setting is at. As of now, the profile size is set to 30 mb, and we...
  18. jrapp

    ServeRAID 3L and XP Pro?

    I have been fighting with this all day long. I have a Netfinity 5000 with a ServeRAID-3L card inside it. I have the drive setup like I want them (9.1 GB x 2, RAID 0), upgraded the firmware to 6.10, tried to specify the drive I have gotten from IBM (23k4684.exe) in setup, no luck. XP will not...
  19. jrapp

    Stripping Email Headers?

    Hey everyone, I'm working on an email tracking system for a customer service company. I've established how to send and recieve messages, but my question is, does anybody have any suggestions as how to strip out the headers from the message so that I can forward it to another mailbox? Thanks...
  20. jrapp

    Write a program like Outlook?

    Hey Sidro, I'm working on something similar to this right now (an email tracking system), still in the design phase. There are a few ways to do this, a couple (free ones) are using the MAPI ActiveX Component included with Windows (which will allow you to both send and recieve) or work with...

Part and Inventory Search

Back
Top