We are creating a HTML based multi media Help CD for an application. We have created some screen capture videos of the application doing some common functions using Lotus Screen Cam. When we try converting these screen Cam videos to AVI the file size is in the 40-60 MB range. I have noticed...
Thanks Storm,
I found out that AutoRun only works with .exe but your solution is creative and best of all it works.
Thanks again,
Bill N
P.s. I posted this same question in the VB forum and no one has even responded even though the VB forum has four times the members that this Delphi forum has.
Thanks DeZiner for your reply.
I'm not an expert on this and I certainly could be wrong but I do think that it is operating system level problem not a browser problem. I think the help file (I have to link to a specific windows help file not an office app) is associated with the operating...
I'm trying to create an autorun procedure that will start Internet Explorer and display a HTML file. The autorun file looks like this:
[autorun]
open=index.html
icon=myIcon.ico
When I put the CD in, the CD spins, the cursor flickers for a second (change to hourglass), then stop.
Can anyone...
I'm trying to create an autorun procedure that will start Internet Explorer and display a HTML file. The autorun file looks like this:
[autorun]
open=index.html
icon=myIcon.ico
When I put the CD in, the CD spins, the cursor flickers for a second (change to hourglass), then stop.
Can anyone...
I'm trying to link a help file (*.hlp) in a page. I'm using this code:
<a href="Myhelp.hlp">Call the Windows based help file</a>
I keep getting the File Download Dialog Box ("Do you want to save or open this file?"). I've read an article at MSDN...
What database are you querying? MS Access?
Have you tried:
SQLQuery = _
"select Name from MyTable
where Description like *" & chr(34) & txtSearch.value _
& chr(34) & "*"
I use the chr(34) for '"' because at times I've found the same thing where for some...
Thanks Marquis but I think I found an easier way.
Since Access is very forgiving it will round an ill formated date to its closest correct date. Hence if you pass the 0 date of the next month, Access will return the last day of the last month. Hence the code:
dim dteLast as Date...
I know I've seen a function that returns the last day of a month before but I can't seem to find it. I've created a function using an array (31,28,31,30...) but someone mentioned to me there is even easier method. Does anyone have any code on this?
Thanks,
Bill N
By just looking at things, I've never seen:
rstProductionReporting.[EOF]
I think this might cause a problem since it is a method not a field.
Hope this helps,
Bill N
No I have Outlook 98 but did you make a reference to the type library?
I actually have this function inside this function:
Public Function SendMessage() As Boolean
'This procedure will send an Emails to all users
'The Outlook type library must be referenced for this module to even compile
'To...
What code are you using?
I use code like this and never get the prompt:
'*********************************************
Private Function MailMessage() As Boolean
Dim objOutlook As Outlook.Application
Dim strText As String
Dim strFile As String
Dim rsUsers As Recordset
On Error GoTo errHandler...
I would like to display a form similiar to a messagebox that asks the user if they wish to continue. Something like:
If MsgBox(cAreYouSureChange & sPrevAdd & Chr(13) & "To: " & sEditedAdd, vbYesNoCancel, "Verify?") = vbYes Then
but I cannot use a simple messagebox. So I...
Hi All
I have a form where an user can eliminate Email addresses from a list box. Once the user has selected the number of Email addresses, I'm trying to to alert the user of the addresses that are about to be eliminated in a messagebox. The problem is the at symbol (@) in the email address...
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.