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

    XSL Translate Function and Multiple Child Nodes

    Hello, I'm running into an issue when using the translate function on an xpath query. Basically, my xpath statement is only catching elements when they are the first child of a node if i use the translate function So if this is my xml <files> <file id="1"> <tag type="General"...
  2. werD420

    (disk geom.)hd shows uninitialized/except to vista

    hey all, Ive been doing a little work on a hd of mine and made the mistake of running partition magic in vista. so now i have a drive that shows up fine in vista, but says bad disk to partition magic. If i try to mount it with Linux i receive, "this disk has not been initialized" vmware doesnt...
  3. werD420

    .innerHTML = losing my styles

    hello ive got the following html <ul class="entrydates"> <li> <b>Submitted On:</b>2007-05-07</li> <li><strong>Expires:</strong>2007-06-15</li> <li><em>Last Edited:</em>2007-05-07</li> </ul> Im attempting to highlight part of it(along with the rest of the message), however,when i run the...
  4. werD420

    xsl highlight function breaking html tags

    hello, Ive come across a highlight function that i was able to add to a search feature i have on a page. however the current method it uses will wrap text that is found even inside of html so its making the tags no longer work. has anyone dealt with this type of thing before? here's the...
  5. werD420

    Custom ToolTip z-index issue

    Hello, Im having an issue wih a css tool tip script I came across. basically my issue is related to the z-index property. Even though my tooltips are set to z-index > 0.. on display they appear behind any absolutely positioned divs. If i set the absolutely positioned divs to z-index of -1 the...
  6. werD420

    Is 1gb dual channel better than 1.5gb+ single channel

    I have 2x512mb kingston hyperx plugged up dual channel in my system. i have two open slots and another stick of 512(ultra) and a 1GB ocz stick thats gone for rma at the moment but if i plug in the 512 the bios post as singlechannel. I generally use this as my dev machine so i have a lot of...
  7. werD420

    loading pages in a frameset

    Hello, Ive got a knowledge base app with a frameset which consists of a table of contents and content frame. I run an action onload of the frame to keep track of the current frame location via reading the src attribute of the frame if i cant check it via javascript. For the most part i...
  8. werD420

    Resize a span

    Hello, im attempting to add the ability to resize a table of contents. but i seem to be running into a problem with it. Im using the MOUSEMOVE Event to capture the x posistion of the mouse but i lose the x position as soon as the Drag event begins. does anyone know of a way i can capture the...
  9. werD420

    Can I create my own custom event? ie. onIframeSrcChange

    hello is it possible to create my own custom event? I have a treeview that i would like the location(selected index) updated if someone clicks a link inside of a page in an iframe. so i thought it best to check if the link is a member of the treeview by checking the src attribute when its...
  10. werD420

    animated drop down

    hello im trying to animate a drop down y changing properties of a div tag. unfortunately i cannot figure out how to restrict the text area to compensate for its collapsed size. here is my test page code you can copy past it to see what i mean. I want "-Lorem Ipsum Dolor" hidden until Animate is...
  11. werD420

    xsl:problems generating new xml from xml

    hello all im working on an xml/xsl tool that displays post left by management it uses an xsl style to transform the xml containing my entries into an xml that can be quickly read into to my .net tools. here is the original xml <data> <supervisors> <supentry id="1"...
  12. werD420

    Xpath Relational Query (like a join)

    Hello I have an xml document that im currently using a forward only .net repeater on and using some xpath queries to display the data The xml is quite simple <?xml version="1.0" encoding="utf-8" ?> <data> <supervisors> <supentry id="1" author="Jim"...
  13. werD420

    Replacing Slected Text oe Bold,Italic...

    Helo im creating a simple text editor in which the user can bold some text for a page. I call it like so <input type="button" id="Button1" value="Bold" onclick="bold(document.selection.createRange().text)" /> and bold is as folows function bold(SelectedText){ if(IsDesign){var currentText =...
  14. werD420

    Embedding applet in page with embed instead of applet

    hello im trying to embed an applet in my page when i use it this way it works fine <applet code = "NESCafeApplet" archive = "NESCafe056.jar" width = "443" height = "435"> <param name = "ROMFILE" value = "games/Mike_tyson's_punch_out.nes"> <param name = "LIGHTGUN"...
  15. werD420

    Focus After Last Letter Typed

    Hello I have a .net page that uses a textbox as an event to do a postback and call a webservice that returns a dataset and binds it to a datagrid my only problem is that I call the post back OnKeyUp and when i try and direct focus back to the textbox it is pushed to the first letter in the box...
  16. werD420

    Adding child element to xml file XMLDOM :S

    Hello all im trying to take a returned xml file that the body looks like this <string xmlns="http://microsoft.com/webservices/">Entry 1<br/> Entry2<br/> </string> Im trying to split this data using javascript and then append the data as individual Child Elements of String. Im able to create...
  17. werD420

    process xml soap response

    Hello all im trying to consume a web service using javascript and soap but i cant seem to figure out how to getthe response, Any help with this is greatly appreciated im at a loss on it Here's what the soap response looks like HTTP/1.1 200 OK Content-Type: application/soap+xml; charset=utf-8...
  18. werD420

    variable in form change

    how would i do the below im trying to pass which form element it will be called through asp <script language="JavaScript" type="text/javascript"> <!-- function getFName(browse, attach) { var path; var pos; var filename; var jar; path = browse; pos=path.lastIndexOf("\\"); filename =...
  19. werD420

    If Time is &gt; &lt; Statement

    Hey all whats a good way to do this If Time() >= "6:00:00 AM" and Time() <= "11:00:00 AM" Then shift="1" ElseIf Time() > "11:00:00 AM" and Time() <= "2:00:00 PM" Then shift="2" ElseIf Time() > "2:00:00 PM" and Time() <= "5:00:00 PM" Then shift="3" ElseIf Time() > "5:00:00 PM" and Time()...
  20. werD420

    IsInteger problem with form validate

    Hey all ive got the following form vadiation <script type="text/javascript"> <!-- function formValidation(form){ if(notEmpty(enrollform.csrname)){ if(notEmpty(enrollform.LastName_Dem)){ if(notEmpty(enrollform.FirstName_Dem)){ if(notEmpty(enrollform.SSN_Dem)){ if(notEmpty(enrollform.DOB_Dem)){...

Part and Inventory Search

Back
Top