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 Rhinorhino on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Recent content by jjwild

  1. jjwild

    Outputing a PDF file and updating the web page at the same time

    Thanks for the post. I didn't want to have the users have to click a link, so I tried the separate page. This worked fine except if the user clicks Cancel, they are left with a blank web page that they have to separately close. It there any way in the code behind to force the page to refresh...
  2. jjwild

    Outputing a PDF file and updating the web page at the same time

    I am using Response.BinaryWrite to export a PDF to my web page. This works fine - when the code behind is finished I am prompted to Open or Save the PDF file. However, this process is triggered by clicking a "Run Report" button on the web page and as part of running the report and exporting it...
  3. jjwild

    Paste An Image Into A Web Page

    I posted in there - thanks.
  4. jjwild

    Paste An Image Into ASP.Net Page

    I have a client who needs to capture an image into the Clipboard and then upload that image to the web server. The site is ASP.Net and VB.Net. Uploading text from the Clipboard is simple with Javascript. To upload an image, I believe I need an ActiveX control. Does anyone have any data on...
  5. jjwild

    Paste An Image Into A Web Page

    Our users need to be able to capture an image into the clipboard and then paste that to a web page to be stored on the server. I believe an ActiveX control would be needed to do that. Does anyone know of one we could obtain to do this? Simple to use and reliable are more important than cheap...
  6. jjwild

    IIS Won't Start On XP Pro

    No. I have had other problems with the computer since then and I think it is corrupted outside of anything I did. I am going to return it. Thanks, John
  7. jjwild

    IIS Won't Start On XP Pro

    I have a brand new Lenovo laptop with XP Pro on it. I do web development, so I installed IIS on it. If I now try to start IIS, I have an hourglass for 2 seconds but IIS does not start. Each time I do this, it leaves an mmc.exe process running, but that is it. I tried to deinstall IIS using...
  8. jjwild

    Dynamically Assigned Event Handler Not Invoked

    The basic error was solved by tsuji, though I ended up programming it a different way. Thanks for the help. My base error was assigning a string value to the event. This: rowNewRow.onMouseOver = "rowMOver('2')"; should have been this: rowNewRow.onMouseOver = function() {rowMOver('2')}; I...
  9. jjwild

    Dynamically Assigned Event Handler Not Invoked

    I am adding rows to an existing table using Javascript. The rows display properly, but the javascript I have assigned to handle the onmouseover event is not invoked. The code I use is the following: rowNewRow.setAttribute('onmouseover',"rowMOver('2')"); rowNewRow being the variable...
  10. jjwild

    Keyword Not Supported: Provider - Sporadic Error

    Thanks, but putting "Jet OLEDB:Database Password=" in the connection string instead of just "Password=" is needed for the Access 97 mdb. Without it, we receive a complaint that "the workgroup information file is missing or opened exclusively by another user". Any other ideas on this?
  11. jjwild

    Keyword Not Supported: Provider - Sporadic Error

    We are writing a ASP.NET/VB.NET web site that uses an Access 97 database (legacy requirement). It is running fine most of the time, except that about every 100th request sent to the database, we are receiving the Keyword Not Supported: Provider error. This happens on all 3 of our machines and...
  12. jjwild

    Suddenly Cannot Start Up Site = Object Not Set

    Note: I later found out that none of my sites were running. I reinstalled .Net framework and rebooted and I was OK.
  13. jjwild

    Suddenly Cannot Start Up Site = Object Not Set

    I was working in a small project in Visual Studio and I suddenly was not able to run it - when I started it, the first line in the aspx file would always generate the error "System.NullReferenceException: Object reference not set to an instance of an object.". The <%@ Page line was giving the...
  14. jjwild

    Rich Text Shows Formatting Text

    If the rich text box is blank, then the formatting characters show in the report. If there is any actual text in it, they do not. This occurs on my client's XP PC, but does not happen on my Windows 98 PC. Anyone have any ideas? I am using CR 9 in VB6. Thanks, John Wildanger
  15. jjwild

    Compiled Report's Graphic Bad

    I have compiled a CR 8.5 report using the tool from Business Objects to create exe's. The report runs well and its text looks fine. Unfortunately, the logo at the top of the report looks terrible. It looks great when the report is run in Crystal Reports. Anyone have any ideas on how to...

Part and Inventory Search

Back
Top