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 Chriss Miller 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 lmohr79

  1. lmohr79

    Using ReportViewer 9.0 in VS2010 - web.config changes back to 10.0

    I'm builing a web app in VS2010 using 3.5 framework. Our SSRS server is SQL2005 with no plans to upgrade in the near future. So I'm trying to use the 9.0 version of ReportViewer. The project references Microsoft.ReportViewerCommon 9.0.0.0 and Microsoft.ReportViewer.WebForms 9.0.0.0 - no...
  2. lmohr79

    Query multiple and varying databases on same server dynamically?

    Due to client considerations, I have a project that has multiple databases (all same schema) on a single server, having 1 additional database with "master" data (client name, contact info, etc.) Users need to access data from across multiple databases. I know that I can use UNION if I know...
  3. lmohr79

    Can I display a ConfirmButton only on certain conditions?

    Thanks for the response Dan - you're right, it should be directed to JavaScript. And I think I'm close to a solution after some more research.
  4. lmohr79

    Can I display a ConfirmButton only on certain conditions?

    I'm new to AJAX (think the calendar is great) and ASP.NET in general, but I need to create a "confirm message" box when the Save button is clicked, but ONLY if 2 session variable do not equal. Here's pseudo code: btnSave_onclick if session("A") <> session("B") then display message "do you...
  5. lmohr79

    Reinstall of XP on HP Pavillion ze2315 - wireless not working

    Never mind - found the network adapter setting and installed driver. Just didn't look in the right place the first time! Thanks!
  6. lmohr79

    Reinstall of XP on HP Pavillion ze2315 - wireless not working

    Just had to reinstall XP on this laptop and the wireless doesn't register - can't find it listed in Device Manager. Downloaded driver from HP site (on another PC) and installed on the laptop - rebooted, but still no luck. Where I can look on the PC / Control Panel to find the hardware? I'm...
  7. lmohr79

    Move &quot;saved&quot; print document from one printer to another.

    gbaughma - I tried your option on a test machine and worked just fine! I'll attempt it on the production PC that uses the 3rd party app later today. Thanks for your help!
  8. lmohr79

    Move &quot;saved&quot; print document from one printer to another.

    I have a job that prints directly to a network printer (hardcoded by a third party) - no way to change the printer in this application/scenario. But I want to print to CutePDF (installed on the PC as another printer). Is there a way to take the job (I can change the printer advanced setting to...
  9. lmohr79

    SQL2K - import data THEN add? increment to primary key

    This makes sense - I did do some sleuthing prior to posting my question and came across some references to SET INDENTITY_INSERT. I believe this will work - we're in the process of setting up the app that will use this new SQL db, so no one will be accessing it during development except myself...
  10. lmohr79

    SQL2K - import data THEN add? increment to primary key

    I've got data from a MySQL database that had the primary key with "auto increment". Exported to a flat file for import. Now am importing to SQL2K - problem is that of the original 353 records (just a tiny db, thank goodness!), there are only 342, with the first record ID = 2. So I still need...
  11. lmohr79

    Excel e-mail attachment corrupts

    Found the answer! I needed to add a header to the email in code, with base64 encoding: email.Headers.Add("Content-Transfer-Encoding", "base64") Works like a charm! Thanks for all the imput!
  12. lmohr79

    Excel e-mail attachment corrupts

    Thanks for the reply Sorwen - there isn't any other code in my project - very stripped down as I'm troubleshooting. I'll check on the mail server & AV angle. One thing I'll try is sending a different type of file with the code - that might narrow down the problem. If I have any success, I'll...
  13. lmohr79

    Excel e-mail attachment corrupts

    I had another user write (copied in) the code in a new project on a different PC, but the same results. Anything I should look at in regards to References? I did have to add the System.Web reference - here are the references that are loaded: Office System System.Data System.Drawing System.Web...
  14. lmohr79

    Excel e-mail attachment corrupts

    Here's the process: I create the file in Monarch V9.0, exporting a summary using the "Project Exports" module - this is a separate process from the VB.NET code. The VB.NET code just generates the e-mail - so don't believe that a background process is creating the problem. I'm going to have...
  15. lmohr79

    Excel e-mail attachment corrupts

    Thought I should add - when trying to open the file with Excel and then get the error, the EXCEL.EXE process does stay open/active in Task Manager. No entry for Excel in Applications, just in Processes. Thanks!

Part and Inventory Search

Back
Top