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. chappi

    component to create business cards on the fly. see description

    Try PDFlib (www.pdflib.com). Their component is pretty simple to use and you can do all sorts of things with PDFs
  2. chappi

    ASP and cXML

    Ok, I'm at a loss here. I'm usually not that stumped and I'm sure there are easy solutions. I am working on a punchout project to request shopping cart items from another source. The site goes out to another site, displays their products and when it comes to add the items to the cart, the...
  3. chappi

    ASP & FDF

    Well actually, I used neither. I installed the Adobe FDF Toolkit. You can download it from Adobe's Developer Network website and it needs to be installed as a DLL on the webserver to run. Works great now :-)
  4. chappi

    ASP & FDF

    Ha, that is awesome. Thanks so much, that was it! Thanks! J~ :)
  5. chappi

    ASP & FDF

    Hello, I am trying to pre-fill an existing PDF file with form data process by an ASP file. Everything seems to work just fine until the file is supposed to be written to the screen. I then get a message saying that the file is damaged and cannot be repaired. Here is my code to process the form...
  6. chappi

    ASP & Access 'LIKE' queries

    DreX -- You are a life saver! Thanks! [sunshine]
  7. chappi

    ASP & Access 'LIKE' queries

    I stumbled across an interesting problem. I need to query multiple access tables using a 'LIKE' query (kinda like a search engine for a website)... Whenever I use more than one table or more than one 'LIKE' my ASP page times out. Here is my original code: mySQL = "SELECT * FROM items, types...
  8. chappi

    Page Breaks

    Try using this stylesheet and place it right where you'd like the page break. Worked great for me: page-break-before: always; Jeannette [sunshine]
  9. chappi

    ASP error when connecting to db

    Thanks Lothario! That's exactly it!!! [sunshine]
  10. chappi

    ASP error when connecting to db

    One thing I've just noticed, in the last CODE section, the SQL statement variable is actually dbSQL, not mySQL... Thanks.
  11. chappi

    ASP error when connecting to db

    Hi all. I have come across an error and it's making me pull out my hair (pretty soon I'll be bald and not fun to look at -- or will I?)... Anyways, the only response I'm getting from IE is: Error Type: (0x80004005) Unspecified error When trying to get more info through the ASP error...
  12. chappi

    Input field problem

    Paul, How are you redirecting? How are you calling this redirect? Can you post some of your code? That would help troubleshoot. J~
  13. chappi

    Error message on asp file

    It looks like you have the code that adds values into the db, inside your if-statement, meaning it will get executed when any of the variables are blank and will produce the error you see. Try to place an <% else %> right before 'get highest confirmationNum' J~
  14. chappi

    Virus check before FTP upload?

    Hi, Does anyone know of a product/plug-in that would check any files that are being uploaded through forms over the Internet? I appreciate any help. Thanks, J~
  15. chappi

    text caption under thumbnails

    Email it to jeannette@cbs-inc.net. I'll take a look J~ :)
  16. chappi

    text caption under thumbnails

    Put it around your thumbnails. So place the opening <center> tag before the first <div> tag and place the closing </center> tag after the last </div> tag. This will center all your thumbnails.
  17. chappi

    Hiding a form field until another filed value is a certain value

    Try this: <html> <head> <title> New Document </title> <script language=&quot;javascript&quot;> function test() { if(document.myform.text1.value==&quot;test&quot;) { document.myform.text2.style.display='block'; } } </script> </head> <body> <form name=&quot;myform&quot;> <input...
  18. chappi

    text caption under thumbnails

    Just put center tags around the whole thing: <center>...body stuff...</center> J~
  19. chappi

    text caption under thumbnails

    Try this in the body: <div class=&quot;float&quot;> <img src=&quot;image1.gif&quot; width=&quot;100&quot; height=&quot;100&quot; alt=&quot;image 1&quot; /><br /> <p>caption 1</p> </div> <div class=&quot;float&quot;> <img src=&quot;image2.gif&quot; width=&quot;100&quot...
  20. chappi

    Record - Query

    No problem. Email your code to jeannette@cbs-inc.net. J~

Part and Inventory Search

Back
Top