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

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

    ...reportviewer to 9.0 and added this to the file: <add name="Reserved-ReportViewerWebControl-axd" path="Reserved.ReportViewerWebControl.axd" verb="*" type="Microsoft.Reporting.WebForms.HttpHandler" resourceType="Unspecified" preCondition="integratedMode" /> I also changed the register...
  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!
  16. lmohr79

    Excel e-mail attachment corrupts

    Sorwen - sorry it took so long to get back to you - just love back to back meetings!!!!! I can open the file on the H drive normally - works just fine. I can also attach the file through Outlook, e-mail to myself and then open with no problem. I get the same results (corrupt file) running...
  17. lmohr79

    Excel e-mail attachment corrupts

    I've got a multiple step process, end goal is to send an Excel file by e-mail using VB.NET. Original data is in .txt report, so using Monarch V9 to create an Excel file from a summary. Then want to create either a Windows app or service to e-mail the report. I can get the file to e-mail just...
  18. lmohr79

    Migrating everything BUT data from SQL2000 to SQL2005

    Thanks for the help - question - should I run the "Method 2" script first? I was having problems with the initial script referenced by gmmastros, so created a second script on the SQL2K box w/o the "Script SQL Server logins", but now getting errors about valid logins.
  19. lmohr79

    Migrating everything BUT data from SQL2000 to SQL2005

    I'm setting up a SQL2005 database on a test server (fairly small) and need to copy/migrate an existing SQL2000 db to the new server. But the SQL2K db is much to large for the test server. Is there a way I can create/copy everything BUT the data (schema, permissions, etc.)? One of the things...
  20. lmohr79

    Adding SATA II hard drive and need a SATA II PCI card questions

    Thanks to all the replys - ended up getting a SATA I card, installed OK and then added the new HD as additional storage. I appreciate all the insight, really helped a lot!

Part and Inventory Search

Back
Top