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 Wanet Telecoms Ltd 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. Bixarrio

    Add-Ins for MY OWN app

    ...should already be compiled, and the add-ins should only be added later, without a recompile. How can I "reference" the DLL's after the app has been compiled? I was thinking of using the LoadLibrary API, but I'm not quite sure how to use it. _________________ Bixarrio e = m * (c ^ 2)
  2. Bixarrio

    Problems with addNew

    After userRS.CursorType = adOpenDynamic add userRS.LockType = adLockPessimistic should work... _________________ Bixarrio e = m * (c ^ 2)
  3. Bixarrio

    Hi, I have a slight problem.

    Hi, I have a slight problem. I need to convert 150 documents to PDF each month. I have Acrobat 4, and I wanted to print each document to it, but it asks me for a filename each time, for each document. How can I avoid this? _________________ Bixarrio e = m * (c ^ 2)
  4. Bixarrio

    Checking if image exists

    ...If (count==tempImg.length) { // All images are loaded, so display them. for (i=0; i<tempImg.length; i++) { document.getElementById(&quot;img_&quot;+i).src=tempImg[i].src; } } } Works great! Thanks again. _________________ Bixarrio e = m * (c ^ 2)
  5. Bixarrio

    Checking if image exists

    If the image doesn't exist, the onerror event does not fire. I tried this: tempImg.onerror=alert('image could not be loaded'); And nothing happened. It stopped. I got no alert. _________________ Bixarrio e = m * (c ^ 2)
  6. Bixarrio

    Checking if image exists

    ...= chkLoad(); //Move the progressbar tempImg.src = &quot;ImageOne.gif&quot;; The problem is that the missing images never fires the onload, which causes the progressbar to never reach 100%, and that results in the images never being displayed. _________________ Bixarrio e = m * (c ^ 2)
  7. Bixarrio

    Checking if image exists

    ...bar stops at 95% (for 20 images) and then never displays any images, since it's waiting for all the images to be loaded first. How can I detect whether an image is missing, so that I can replace it with another (&quot;transparent.gif&quot;) image?? _________________ Bixarrio e = m * (c ^ 2)
  8. Bixarrio

    Help:passing variables from JavaScript to ASP

    Why don't you calculate the width and height in bigpicture.asp? _________________ Bixarrio e = m * (c ^ 2)
  9. Bixarrio

    Dynamic PDF documents

    Hi, I downloaded the fdf toolkit, but I'm having problems with it. If my acrobat is not freezing, it's opening the template instead of the generated pdf. I'll check out the other stuff. Thanks _________________ Bixarrio e = m * (c ^ 2)
  10. Bixarrio

    Dynamic PDF documents

    Does anyone know how this is done? I've been to a site, where you write a test, and if you pass, it dynamically generates your certificate in pdf with your name, and the date etc. I have looked in the Acrobat Forum, but couldn't find anything yet _________________ Bixarrio e = m * (c ^ 2)
  11. Bixarrio

    Help:passing variables from JavaScript to ASP

    What are you trying to do? If I knew, I might be able to help. _________________ Bixarrio e = m * (c ^ 2)
  12. Bixarrio

    Stripping a string to get values from within brackets

    ...(21, Fred)&quot; iStart = InStrRev(s, &quot;(&quot;, -1, vbTextCompare) If iStart Then iEnd = InStr(iStart, s, &quot;)&quot;, vbTextCompare) MsgBox Mid(s, iStart, (iEnd - iStart) + 1) Else MsgBox &quot;No ( found&quot; End If _________________ Bixarrio e = m * (c ^ 2)
  13. Bixarrio

    datediff() vs Excel time discrepancy

    I just did the same: 1) Converted a cell with 10/10/2001 to a number with 5 decimal points. 2) Did a DateDiff(&quot;d&quot;, &quot;01/01/1900&quot;, &quot;10/10/2001&quot;) For 1) I got: 37,174.00000 For 2) I got: 37,172.00000 I am stunned. _________________ Bixarrio e = m * (c ^ 2)
  14. Bixarrio

    windowsitem in asp

    ...they changed the pages. Here is a page that mentions that listboxes, frames and multipage controls will always be on top of other controls: http://msdn.microsoft.com/library/default.asp?url=/library/en-us/off2000/html/rehowUseZorderToLayerControls.asp _________________ Bixarrio e = m * (c ^ 2)
  15. Bixarrio

    Help:passing variables from JavaScript to ASP

    ...} if (imgWidth > 500) { imgWidth=500; } else { imgWidth=imgWidth; } /* Replace this: &quot;<%session(&quot;height&quot;)=&quot; + imgHeight + &quot;%>&quot...
  16. Bixarrio

    datediff() vs Excel time discrepancy

    ...it will return fraction of days. You could use: DateDiff(&quot;n&quot;, CDate(&quot;01/01/1900&quot;), Now) which will give you the minutes, and then work from there. 60 minutes in 1 hour, 24 hours in 1 day. I'm not exactly sure what you want though _________________ Bixarrio e = m * (c ^ 2)
  17. Bixarrio

    Finding Users' Connection/Internet Speed

    I don't think it can be done. What you could do is to ask the user, and save the value into a cookie, or in a db if the user is registered, so you will have that information next time, and would only need to ask again if the cookie was deleted, or something _________________ Bixarrio e = m * (c ^ 2)
  18. Bixarrio

    windowsitem in asp

    ...only work if both styles have position:absolute in them. However, there is a bug (as admitted by Micro$oft developers) where both listboxes and comboboxes does not respond to the z-index, and will ALWAYS be on top. It might be true for the treeview too. _________________ Bixarrio e = m * (c ^ 2)
  19. Bixarrio

    Response redirect ro a frame set

    ...targetframe is the name of the frame you want to redirect. This is client-side scripting, so the frame you are in will not redirect anywhere. You should note, however, that you can not access the frame's contents if it was loaded from a different domain. _________________ Bixarrio e = m * (c ^ 2)
  20. Bixarrio

    Displaying images that are in a Blob field

    Open the db and then use Response.BinaryWrite(img) where img is the blob field's content _________________ Bixarrio e = m * (c ^ 2)

Part and Inventory Search

Back
Top