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...
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)
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]...
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)
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...
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...
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)
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)
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)...
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)
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...
Hmmmm. I have looked at your javascript, and noticed a few errors:
<script language="javascript">
function CalPictureSize(myUrl)
{
var myImage = new Image();
myImage.src=myUrl;
var imgHeight = myImage.height;
var imgWidth =...
DateDiff will give you whatever you specify as the interval. I don't think it will return fraction of days.
You could use:
DateDiff("n", CDate("01/01/1900"), 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...
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)
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...
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 = "newpage.asp" where targetframe is the name of the frame you want to redirect. This is client-side scripting, so the frame...
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.