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

  1. Biffy13

    works in firefox but not IE...need help

    I'm also thinking this is an HTML problem and not ASP. Sheco pointed out that the select is in the loop. Try: if not objrs.BOF and not objrs.EOF then repsonse.write" <SELECT name=""ticketselect"" ID=""Select1"">" & vbcrlf while not objrs.eof response.Write "<option value="""&...
  2. Biffy13

    How do I eliminate the = sign

    What about adding in the id: <input type="hidden" id="MessageBody" name="Monday" id="Monday" value="Monday"></input> Does that make a difference?
  3. Biffy13

    Database Encryption

    Well I can't take the credit for it as I found out about this method on the web, alas though, I cannot remember where.
  4. Biffy13

    Problem installing Visual Basic 6 on XP Home

    Ok I won't discount the problem of spyware, though, touch wood, I've never been troubled by spyware, viruses or anything. I'm also up to date with the Microsoft updates. I will try and investigate my machine further for anything that shouldn't be there. Thanks.
  5. Biffy13

    Problem installing Visual Basic 6 on XP Home

    Hi Thanks for all the replies. It is not showing up on the add/remove list. I also don't have anti-spyware running as I use Adaware that has to be run manually. I have read somewhere there might be an incompatibility issue with SP2 but I couldn't find any helpful suggestions about this. Any...
  6. Biffy13

    Database Encryption

    Let us know if it works ;)
  7. Biffy13

    Database Encryption

    I used to use a method for encrypting Acess databases by doing the following (sorry if this goes wrong but it's all from memory): - do encrypt database as - on file types, select all - rename your database to have a .asp extension, e.g. mydata.asp This meant that because it was an ASP file it...
  8. Biffy13

    Problem installing Visual Basic 6 on XP Home

    Yes I am logging in as an administrator, sorry - forget to mention that ;)
  9. Biffy13

    Problem installing Visual Basic 6 on XP Home

    Hi I have been trying to install Visual Basic on my XP Home laptop without success. It gets as far as 'setup is searching for installed components' and then stays there. I have to use task manager to end task it as it says it's not responding. I have tried allowing all through the firewall...
  10. Biffy13

    Using Images as Links to Other Pages

    Thanks for the star Foamcow ;)
  11. Biffy13

    Using Images as Links to Other Pages

    Woah there! You don't need all that code, just use: img { border: 0px; } or if you want it to apply just to one image with an id of say myimage: #myimage { border: 0px; } or put it in a class: .myimage { border: 0px; }
  12. Biffy13

    Using Images as Links to Other Pages

    Try <img src="yourpic" style="border: 0px;" /> Or in your stylesheet if you are using one: img { border: 0px; } Or if that doesn't do the trick: img a { border: 0px; }
  13. Biffy13

    whats the best way? layout CSS

    You could try something along the lines of: <style type="text/css"> <!-- ul { list-style-image: url(images/redstar.gif); } ul li a { /*value of the but class, or keep the class in the a tag and ignore this*/ } --> </style> <ul> <li><a href="#">Home</a></li> <li><a href="#">Menu</a></li>...
  14. Biffy13

    URGENT!!!! Unspecified error message

    Further addendum. It would appear that the server was fooling us into believing it had rebooted when it really hadn't (we remote in to it so we couldn't actually physically turn it off), which is why a 'reboot' didn't appear to fix the problem. It would also appear that a script which kept...
  15. Biffy13

    URGENT!!!! Unspecified error message

    Addendum. Restarting the web server seems to have temporarily solved the problem (even though a reboot didn't?).
  16. Biffy13

    URGENT!!!! Unspecified error message

    Hi This morning, all our websites that connect to a database suddenly started getting 'unspecified error' error messages. This started happening intermittently but is now a permanent error on any page that connects to a database. Up until then, they were all working fine, using DNS-less...
  17. Biffy13

    transfer values of select box from popup to textbox in a parent window

    Thanks Lrnmore. The window.close() is to close the popup window after it has re-opened the main window (using the window.opener). My problem with using cross-domains is that the main window is getting confused about which domain it should be on! I have come up with the solution of using the...
  18. Biffy13

    transfer values of select box from popup to textbox in a parent window

    Lrnmore, following your input to this thread, you seem like the kinda person who may be able to answer my question on popups. (please - begging tone!) Is it possible to popup a new window which is on a different domain, do some stuff in the popup, then auto-close the popup and reopen the main...
  19. Biffy13

    problem with window opener - images disapear!!!

    Hi Has anyone encountered a problem whereby the images on the main window disappear (cannot be displayed) after being called by window.opener.location.href? I have my main page on one domain (on an SSL), on which is a button that calls a popup (on another domain and not on SSL). This popup...
  20. Biffy13

    .NET and Goldmine 6

    Thanks 'The Wizard'. This might just do the trick.... magic ;)

Part and Inventory Search

Back
Top