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: GezH
  • Order by date
  1. GezH

    Help identifying strange character

    Dear KODR, It's a few days ago, and your answer might have seemed simple... but you have no idea how much that has helped me. Thank you!
  2. GezH

    Help identifying strange character

    Hi all. This isn't stricly a Perl question, but I'm posting here as I know that Perl gurus are generally pretty knowledgeable when it comes to character and encoding issues. I have an app which is receiving XML from a service and parsing it, then displaying the data. The content is containing...
  3. GezH

    Installing packages

    Fair enough! Cpan.pm is downloading and installing modules, into a user directory as you mentioned above. So perl says "can't find xxx.pm in @INC" and lists all the directories it looks in, but of course my user directory isn't there.
  4. GezH

    Installing packages

    Hello all. I'm using CPAN to install packages. Once I've done so, I write a small script to test them, and Perl doesn't seem to have any idea that they're there, or where they are. How do I tell Perl where to look for the new packages installed? Thanks.
  5. GezH

    Help getting set up

    Hi all. I used to program Perl at work, but it's been a while, and it was on machines that were already setup by sys-admins. Now I'm trying to set up a Linux/Perl environment at home and having a couple of problems. Firstly, I'm having trouble installing modules. I want to install the CPAN...
  6. GezH

    Overflow property

    Ah - I posted to quickly! Just needed to add a 'width' element for the div it lived in: .imageDiv{ width:558px; overflow: auto; overflow-x: scroll; overflow-y: auto; } Sorry!
  7. GezH

    Overflow property

    Hello all. I'm attempting to use the overflow property, to provide a scrollbar where images are too wide for the div they live in: .imageDiv{ overflow: auto; overflow-x: scroll; overflow-y: auto; } I've tried various combinations, but it doesn't get picked up in IE6, is there anything I...
  8. GezH

    Variable height of element?

    Hello. My HTML has a <ul> element, with list items simply defined as: <li class="normal"> <p>Some text</p> </li> The stylesheet: #colMain ul#digimedia li.normal { width:300px; width/**/:/**/245px; float:left; margin-bottom:1em; padding-right:10px; height:155px...
  9. GezH

    Email login via perl script

    Yes... except that the actual file is lower case (dmake.exe) but I assume that doesn't matter?
  10. GezH

    Email login via perl script

    Thanks for the StrawberryPerl tip, it looks good. However I'm having problems installing the required dependency modules, and I'm not sure whether it's a problem specific to the release or just a general Perl thing. I'm trying to install OpenSSL using the cpan client, and I get the following...
  11. GezH

    Email login via perl script

    Thanks - looks like some fun things to try out there. I am currently working on a Windows PC. Am I able to run 'tar' files on ActivePerl for windows, or will I have to setup a linux environment?
  12. GezH

    Email login via perl script

    Hello all. Do you think it's possible to write a script which will simulate a login to an email client, such as Hotmail, gmail, yahoo etc? I was thinking along the lines of some kind of HTTP request which passed in the username and password, then tested the reponse code (authorized, forbidden...
  13. GezH

    Hidden HTML using CSS &amp; JS

    Looks great, thanks Dan, I'll give it a go.
  14. GezH

    Hidden HTML using CSS &amp; JS

    Hello all. Not sure if this should go in the CSS or JavaScript forum - it's a bit of both! What I want to do is to have a block of HTML which is only displayed when javascript is enabled on the browser. So, I think the HTML should be enclosed in a div, which calls a CSS class that hides it by...
  15. GezH

    JQuery code - Firefox / IE

    Ignore this, I'm going to start a new thread, the problem is elsewhere!
  16. GezH

    JQuery code - Firefox / IE

    It really didn't like that syntax. I replaced it with a simple: if(document.getElementById('myBox').checked){ ..and it's fine now. Now I have a problem with what it's doing inside the block! This code: jQuery('div.myDetails').show('slow'); ...doesn't work in IE also. After I check the...
  17. GezH

    JQuery code - Firefox / IE

    Hi, I have the following JQuery code which tests for a checkbox: if ($("#myBox").is(":checked")){ // do something } It works fine in Firefox, but in IE the debugger throws some kind of "null or not an object" error, and the rest of the script file fails. "myBox" is the id of the...
  18. GezH

    Using JQuery rules

    Hmm... without meaning to sound sarcastic, that's pretty obvious! What I'm asking is, whether I can put code like that into the JQuery rules. So, in pseudocode, my script would do the following: rules: { "card.cardName": "required", "card.cardType": "required", "myNewFormValue"...
  19. GezH

    Using JQuery rules

    Hello. I am making changes to a JSP page with javascript validation via JQuery. Currently the validate method defines a number of rules, for example: rules: { "card.cardName": "required", "card.cardType": "required"} }, messages: { "card.cardName": "Please enter the name on the...
  20. GezH

    Identifiying if browser has JavaScript disabled

    Many thanks feherke, that was just what I was after.

Part and Inventory Search

Back
Top