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

    Add-Ins for MY OWN app

    Hi, I have quite a difficult question. I want to put add-ins in my application. I sorted out almost everything. The only problem I have is that The add-ins are ActiveX DLL's, and in order for my app to use them, the need to be referenced. I can't do this, because the application should already...
  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

    Thanks. I sorted it out. Couldn't have done it without your help. Here it is: var count = 0; var tempImg = new Array; tempImg[0] = new Image(); tempImg[0].src = "ImageZero.gif"; tempImg[0].onload = chkLoad; //Report Progress tempImg[0].onerror = doError; //Process error tempImg[1]...
  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

    The problem is that it doesn't give an error. I used.. var tempImg = new Image(); tempImg.onload = chkLoad(); //Move the progressbar tempImg.src = "ImageOne.gif"; The problem is that the missing images never fires the onload, which causes the progressbar to never reach 100%, and...
  7. Bixarrio

    Checking if image exists

    Hi, Sorry. I forgot to put a subject. I wrote some script that preloads images before displaying them in a table. This works great with a nice progress bar, etc. but my problem is this: If one of the images can not be found, the progress bar stops at 95% (for 20 images) and then never displays...
  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

    Use InStrRev and InStr Dim iStart As Integer Dim iEnd As Integer Dim s As String s = "INSERT INTO tblMyTable (Bla, Bla) VALUES (21, Fred)" iStart = InStrRev(s, "(", -1, vbTextCompare) If iStart Then iEnd = InStr(iStart, s, ")", vbTextCompare)...
  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("d", "01/01/1900", "10/10/2001") 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

    It seems like 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...
  15. Bixarrio

    Help:passing variables from JavaScript to ASP

    Hmmmm. I have looked at your javascript, and noticed a few errors: <script language=&quot;javascript&quot;> function CalPictureSize(myUrl) { var myImage = new Image(); myImage.src=myUrl; var imgHeight = myImage.height; var imgWidth =...
  16. Bixarrio

    datediff() vs Excel time discrepancy

    DateDiff will give you whatever you specify as the interval. I don't think 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...
  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

    Try to set a style for both the treeview and the menus in the style, set the z-index for the treeview to -100, and the z-index for the menus to 100. This will only work if both styles have position:absolute in them. However, there is a bug (as admitted by Micro$oft developers) where both...
  19. Bixarrio

    Response redirect ro a frame set

    Response.Redirect will redirect the page in the frame you are in. If you want to change a page in a different frame, you can use parent.targetframe.location.href = &quot;newpage.asp&quot; where targetframe is the name of the frame you want to redirect. This is client-side scripting, so the frame...
  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