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

    Javascript Image Swapping Help

    I have a button with an image beside it. Onclick, it should switch to another image, then back. View it at my test page http://www.billiardscores.com/ Throw some text in the box, and click the button.....You'll notice that while the spell checker is working, a SECOND image appears. I want it...
  2. gwrman

    layout issue

    I have a layout issue that i can't seem to work out. Basically, i have a menu on the top right hand side, and content that i wrap around it. (if it is big enough.) The problem is that I want the article content to come BEFORE the menu content when parsing the code from top-down, and I can't seem...
  3. gwrman

    position two unordered lists (horizontal) side-by-side

    I have a div, that houses 2 unordered lists. The lists need to be side by side, but at opposite ends, so that there is a space, if any, in the middle. I've got it looking correct in IE, but FF places the right hand UL one line lower than they left. they need to be on the same line. Here is...
  4. gwrman

    Get value from 1 window in to textarea in another window

    I have a pop-up window where user uploads a file. what is the best way to insert that value in to a textarea in the main page? The textarea has ID="tal
  5. gwrman

    refresh on back button or goBack(-1)

    Anyone know of a way to produce Something like the "onclick=history.go(-1)" command, except it would grab a fresh version of the page from the server and not just pull the old page out of the users cache.
  6. gwrman

    Requesting a layout critique please

    Hello, I've redone a layout for one of my sites without use of tables. (my first) just the one page please. Among general comments, i'd appreciate comments specifically on color scheme, layout of the various page elements, or any other layout/visual presentation ideas...
  7. gwrman

    Order of code exection of divs?

    How does the order of parsing work for div's that are floated? is it just whatever one comes first in the html doc?
  8. gwrman

    Any way to make this xhtml strict compliant?

    I am trying to validate a page that includes an embedded video clip from youtube. Is there any way I can adjust the code they suggest, so that it validates as xhtml strict? <object height="158" width="193"> <param name="movie" value="http://www.youtube.com/v/pIO4Pxc7eHA"> <param name="wmode"...
  9. gwrman

    Includes

    Can someone comment on the use of SSIs? Do these place a lot of strain on the server? Also, are "virtual" includes or "file" include directives more efficient?
  10. gwrman

    vbscript variable size, termination of.

    Three questions... 1) I read that a variable can only be 255 char, is this true, or is this only true of the variable NAME? 2) Is it best-practice to set every declared variable to "nothing" immediately after it is no longer needed? 3) I am using FSO to "publish" updated content to static...
  11. gwrman

    CSS Width differences (ie5/6 and FF)

    Following XHTML & CSS. The problem is that the header in FF must be reduced in width by 2px (243 instead of 245) in order to make compensation for the 1px border on each side. In IE though (5, 6) there seems to be no need to do this. How can I compensate for the unevenness? .sidebar-item {...
  12. gwrman

    CSS for ie7 Cleartype?

    Okay, so the cleartype font in IE7 has really grown on me. Does anyone know of a way I can use CSS to render a similar look in all browsers?
  13. gwrman

    IE/FF pixel difference - need help with workaround

    I have a menubar made of a <UL>. total width is 950px, and there are 7 items in the menu. if i have 4 spaced at 129px, and 3 spaced at 128px = 950. In firefox, this works perfectly, but in IE (6) it knocks the last menu item to the next line. In IE7, i just need to knock off one pixel from...
  14. gwrman

    Quick Layout/colors/design review

    http://www.robarspages.ca/aphc/index.asp Have a quick peek at this mockup for a new project i'm starting. What changes would you make?
  15. gwrman

    Export Outlook Mail Accounts?

    I upgraded my system, and want to migrate my outlook mail account settings (rather than having to set up about 15 email accounts again) to the new one. Is there a way to do this? I tried to search for a solution, but not much turned up. I've transferred the data file, but that only transferred...
  16. gwrman

    handling xml errors

    I use the following code with the yahoo search api: <%@ Language=VBScript %> <% Dim mysearch, mypage, pageinc, xml, objNodeList, objNode, objNode2 mysearch=Left(Request.QueryString("q"),256) mypage = Request.QueryString("p") if mypage=0 then mypage = 1 %> <html> <head> <title>Yahoo! Web...
  17. gwrman

    hmlhttp request to check if URL is valid - not working

    I use the following code to chck for a working url. It does work for some, but sites that seem to be written in PHP, and google, seem to return a "fail" - I can't figure out how to get p-ast this. Dim objHTTP Dim sHTML Set objHTTP = Server.CreateObject ("Microsoft.XMLHTTP")...
  18. gwrman

    Auto Hyperlink Words in Content that Exist in DB

    in say, a dictionary of terms with definitions, (in a database) how can i hyperlink (automatically) words within the definition text for which a definition also exists. url structure is like this www.site.com/glossary?word=someword Then - in the definition of "someword" there is a word that...
  19. gwrman

    regexp Help

    Okay, so ive got a regexp that works perfectly in an online tester. I am having trouble implementing in my existing code. It takes a variable (xmlhttp.responseText) that holds an external page's source code, and checks it for the existance of a link to a specified domain. It should then show...
  20. gwrman

    String Manipulation Help Please - find X and separate

    I have a small snippet that captures the html of an external url, and stores it in "xmlhttp.responseText" I want to be able to pick out a section based on one other variable, "known", which is a url that would be in href="" attribute of the <A> tag. Basically, I want to say: if the url...

Part and Inventory Search

Back
Top