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 bkrike 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: rrhandle
  • Content: Threads
  • Order by date
  1. rrhandle

    Compare two objects

    I have an object name oPart. It has a number of properties. I want to compare it to another oPart object to see if all the properties are the same. Been trying to use the IComparer thingy all day, but nothing works. All I want to know is if oPart_new = oPart_old. Thanks
  2. rrhandle

    Trigger code on SESSION END

    I have a shopping cart application. As user fill their carts with various items, I need to track the remaining quantity of those items in the database so other users can be alerted when an item is "out of stock." I imagine there are a number of ways to do this like moving items to a temporary...
  3. rrhandle

    Datagrid Headers reading up-and-down.

    Does anyone know how to configure the headers of a datagrid to read up-and-down instead of left-to-right? Thanks, Rob
  4. rrhandle

    String replacement updates

    I am frequently finding myself have to replace text in a table(s). I know there must be a better way to do this, so I am asking for suggests. EXAMPLE: Replace 'TH-' in the ABBR_1 field with 'TMF-' Table name: ABBR ABBR_1 PRICE Desc ------ ----- ---- TH-34 12.34 3"...
  5. rrhandle

    Shut down robocopy mirror script

    I am using robocopy to mirror a folder on one pc to a folder on another pc. Everything is working fine, but I need to make changes to the script occassionally. How do I/should I end the process that is currently running?
  6. rrhandle

    What is "Restartable"?

    I am learning to use Robocopy in the Windows Resource Kit. It mentioned that some files that are backed-up may not be "Restartable." What does that mean? Sorry if this is a Sys Admin 101 question. I'm a programmer. Don't do much with Sys admin stuff. Thanks for the help. --Rob
  7. rrhandle

    DTS Package will not open

    I used DTS to create a backup routine for our database. It has run fine, but today I need to make a change to it. After openning Enterprise Manager, I openned the Data Transformation Service folder, then Local Packages, and clicked on the package I wanted to edit. I receive the following...
  8. rrhandle

    Windows Firewall / IIS / Network users

    I have IIS running on a pc (Office1) on our in-house network. It works fine. I enabled Windows Firewall, and no one can get to the intranet site on Office1. I then set out to find what I needed to do to enable our users to get through the firewall, but I have gotten no place; only more...
  9. rrhandle

    Create a Word Document

    I am using vs.net 2003, and would like to create and manipulate a Microsoft Word document. None of the examples I find on the internet seem to work. Has anyone successfully done this from a web page? Thank, --rob
  10. rrhandle

    DataGrid does not recognize added columns.

    I have a dataGrid bound to a collection of objects. Everything works fine, but when I added two new properties to the objects, they do not show up as new columns in the dataGrid. Any suggestions?
  11. rrhandle

    Deleting objects from custom collection

    I have a collection named cAnimals. Each object in the collection has the properties of: TYPE (dog, cat, bird, etc.) AGE NAME I would like to delete all objects where TYPE is "dog." The only solution I have found is to write all that are NOT "dog" to a new collection, then replace the original...
  12. rrhandle

    Accessing a control within a repeater

    I have a repeater: <asp:Repeater id="PendPmtRepeater" runat="server"> <ItemTemplate> <tr> <td class="small"> <%# DataBinder.Eval(Container.DataItem, "ApptDate")%></td> <td class="small" align="right"> <%# DataBinder.Eval(Container.DataItem, "Timeslot")%></td> <td...
  13. rrhandle

    Pre-select a RadioButton

    I am sure this is simple, but I can't figure it out today. How do you pre-select a radiobutton?
  14. rrhandle

    Working with enums and dropdowns

    The application has two enum named AnimalEnums DOG=1000 CAT=1001 The page has a dropdown name ddlAnimal How can I populate the dropdown list in Page_Load with the two enum values? Also, the type of animal has already been select on the previous page, so I would like that animal to appear...
  15. rrhandle

    Custom Control Menu = too many form tags

    I am using VS2003 to build a web app. I would like to use a user control for the menu that appears at the top of most pages. All pages have form tags. The user control example I found also has a form tag. When I attempt to load the page, I get the error: "Only one form tag per page". Any way...
  16. rrhandle

    Save as report

    I have a piece of VBA code that loops through the database, finds the information it is looking for, then saves the search results to a text file named C:\Search.txt. My question: Is it possible to have this text saved as a report, and have the report automatically open? Thanks --Rob
  17. rrhandle

    Unique Constraint vs. Unique Index

    Can someone explain the difference between a Unique Constraint and a Unique Index, and which should be used when? Thank you
  18. rrhandle

    Particular page stops working in IE

    I have a web site I go to multiple times every day. Today the page will not load. I get the 500 error. Other browsers on my pc dispaly the page. I am stumpt. Any suggestion? System is Windows XP Anti-virus software is AVG Thanks
  19. rrhandle

    Sor multiple dimensional array

    Anyone out there in posession of code to sort a multiple dimensional array?
  20. rrhandle

    onClick event within a DIV tag

    I would like to trigger the Javascript onClick event when the user clicks anywhere within a <DIV> tag below. Is that possible? response.write("<DIV STYLE='position:absolute; top:250px; left:40px; width:400px; height:300px; background-color:blue; color:red; background: url(mmc.gif);'></DIV>"...

Part and Inventory Search

Back
Top