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 gkittelson 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. BillNielsen

    embedding an exe in a HTML page

    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...
  2. BillNielsen

    Delphi Freezes when it loads

    Is your project saved? If worse comes to worse, you can always reinstall Delphi. Bill N
  3. BillNielsen

    help with my first Autorun

    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.
  4. BillNielsen

    File Download Dialog Box Appears

    Thanks guys,I appreciate the help. Bill N
  5. BillNielsen

    File Download Dialog Box Appears

    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...
  6. BillNielsen

    help with my first Autorun

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

    help with my first Autorun

    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...
  8. BillNielsen

    File Download Dialog Box Appears

    I'm trying to link a help file (*.hlp) in a page. I'm using this code: <a href=&quot;Myhelp.hlp&quot;>Call the Windows based help file</a> I keep getting the File Download Dialog Box (&quot;Do you want to save or open this file?&quot;). I've read an article at MSDN...
  9. BillNielsen

    Using &quot;like&quot; in a query submitted from a web page

    What database are you querying? MS Access? Have you tried: SQLQuery = _ &quot;select Name from MyTable where Description like *&quot; & chr(34) & txtSearch.value _ & chr(34) & &quot;*&quot; I use the chr(34) for '&quot;' because at times I've found the same thing where for some...
  10. BillNielsen

    getting last day of a month

    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...
  11. BillNielsen

    getting last day of a month

    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
  12. BillNielsen

    Open recordset

    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
  13. BillNielsen

    Good morning, I am trying to sen

    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...
  14. BillNielsen

    Good morning, I am trying to sen

    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...
  15. BillNielsen

    how do you &quot;showmodal&quot; a form and get a response

    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) & &quot;To: &quot; & sEditedAdd, vbYesNoCancel, &quot;Verify?&quot;) = vbYes Then but I cannot use a simple messagebox. So I...
  16. BillNielsen

    the at symbol (@) in a messagebox

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

Part and Inventory Search

Back
Top