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

  1. lazyRascal

    How can I set IP address on HP2550n LaserJet

    Thank you for your responses. I've downloaded Hp web JetAdmin but I haven't had any success using it. It reports an error condition but does not find the HP printer that I'm trying to configure. I'll keep working with it. Once again, thank you for your suggestions.
  2. lazyRascal

    How can I set IP address on HP2550n LaserJet

    I have a HP Laserjet 2550n which has lost its' IP settings. Since it doesn't have a LCD display to interact with to enter settings, I assume I'll need a utility to manage the settings. Can anyone tell me what tool I can use, and where I can find it for download, to manage these settings? Thank...
  3. lazyRascal

    Adding USB support to Windows 98SE partition on laptop

    I think you may be correct felixc. When I look at the resources used on the WinXP partition, I see IRQ 18, 19 and 23 are being used. When I view resources on the Windows98SE partition under Computer Properties I find 03, 07, 09, 10 and 11 are not listed as used. Is there any way to reserve...
  4. lazyRascal

    Adding USB support to Windows 98SE partition on laptop

    Yes, I've tried. Gateway's site lists the chipset as Intel 845MP. When I try to load the software from Intel's or Gateway's sites for the 845MP chipset, I get the message: 'The Intel(R) Chipset Software Installation Utility requires a supported chipset platform running on a supported operating...
  5. lazyRascal

    Adding USB support to Windows 98SE partition on laptop

    I'm setting up a dual boot Gateway 600YG2 laptop computer. It originally came with Windows XP Pro. I resized the original 28Gb drive to 26Gb and then created a FAT32 2Gb partition which I loaded with Windows 98 Second Edition. I can't get the USB controller or USB hubs to work. When I use...
  6. lazyRascal

    How can you patch a private network ?

    Thank you for the responses. It looks like I have plenty to read to prepare to use the WSUS.
  7. lazyRascal

    How can you patch a private network ?

    How do you update, patch and keep your operating systems up-to-date on a private network with no Internet access? Can you store the updates on the server and pull then from the clients? If so, can someone give me some help and explain how to do this?
  8. lazyRascal

    Recordset

    I have a web site that displays items for sell by various sellers. Each seller has multiple items. The items are displayed sorted by price descending. What I want to do is display the currently selected seller's item's first, sorted by price descending. Then following these items, I want to...
  9. lazyRascal

    Javascript multi-dimensional array syntax

    It's likely the confusion about the array is on my part. I may be totally wrong, but what I thought I was doing is declaring a 4 element array referenced as matrix[0]...matrix[3]. Then the first loop is declaring an array of 10 arrays of these preceeding arrays referenced as...
  10. lazyRascal

    Javascript multi-dimensional array syntax

    Thank you for the responses. What I'm trying to do is persist the results of a recordset where I can manipulate it with javascript. Here is the entire code of what I'm testing. Would someone give it a 'look see' of the javascript portion for obvious syntax errors. My objective is to produce an...
  11. lazyRascal

    Javascript multi-dimensional array syntax

    I'm trying to create a three dimension array in javascript. I know since javascript doesn't support multi-dimensional arrays, as such, that to accomplish equavalent results you must create arrays of arrays. I thought the following code would work. var matrix = new Array(4) for (i=0; i <10...
  12. lazyRascal

    Concatination problem using innerHTML

    Yes, the code works now. To clean it up, per the 'certainly better way' comment, I changed it to: var tStr tStr = "" if ( 1 <= t){ tStr= "<a nohref id='a1' onmouseover=\"document.getElementById('sq1').src='over.gif'; " ; tStr= tStr + "document.getElementById('pic').src='/images/" + i + "/" + p...
  13. lazyRascal

    Concatination problem using innerHTML

    This, as simple as it may be to a knowledgable person, may be the most important thing I've learned today! Thanks a million.
  14. lazyRascal

    Concatination problem using innerHTML

    It appears to be working. What is the \ character in the code doing? btw, thank you so much.
  15. lazyRascal

    Concatination problem using innerHTML

    function selected(row, i, p, t) { row.style.backgroundColor = 'aaaaaa'; row.style.color = 'white'; if (curSelected != null && curSelected != row) { curSelected.style.backgroundColor = ''; curSelected.style.color = ''; } curSelected = row; document.getElementById('pic').src="/images/"...
  16. lazyRascal

    Concatination problem using innerHTML

    Sorry, the function is named selected in the previous code. In my example I called it changeInfo. I do apologise. Please bare with me.
  17. lazyRascal

    Concatination problem using innerHTML

    The calling asp code rendered should produce the following. <table cellpadding='3' cellspacing='0' id='myTable' class='myTable' bgcolor='#ffffff'> <tr valign='top' onClick='selected(this,1,100031)'> <td width='90' valign='top'> <A nohref border='0'><img...
  18. lazyRascal

    Concatination problem using innerHTML

    Sorry I misunderstood. Here is the function. function selected(row, i, p, t) { row.style.backgroundColor = 'aaaaaa'; row.style.color = 'white'; if (curSelected != null && curSelected != row) { curSelected.style.backgroundColor = ''; curSelected.style.color = ''; } curSelected =...
  19. lazyRascal

    Concatination problem using innerHTML

    To clarify: My page has a column of thumbnails on the left side of the page. When a thumbnail is clicked (this calls the function), a display area on the right loads the full size image of the thumbnail. Under the full sized image, I want to create a row of rollovers which have related images...
  20. lazyRascal

    Concatination problem using innerHTML

    I'm trying to dynamically change an anchor and image within a <div> section from a function. example: function changeInfo{ var text1, text2, text3 text1 = "<a nohref>" text2 = "<img src='dog.gif'>" text3 = "</a>" document.getElementById('myDiv').innerHTML = text1 + text2 + text3 } This...

Part and Inventory Search

Back
Top