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

    Convert DTS package to .Net

    I am trying to convert a DTS package in SQP 2000 to ASP.Net in a tight timeframe. The DTS package functionally is fairly simple: queries the database, creates some text file, emails the text files to various people, and then updates the database. I saved he package to a .bas file to start...
  2. WMXTeam

    Spell check for DataGridView

    I have a Windows Form App written in VB that uses DataGridViews extensively to allow users to update data. From a user perspective, the DataGridView functions similar to Excel. As a user moves from row to row, column to column, the data is automatically save. I need to add Spell Check to...
  3. WMXTeam

    Converting a Web Service Client from VS2005 IIS 5 to VS2010 IIS7

    I am working on converting a .Net 2.0 application (web service client) that uses a web service. This project is being moved from a Windows XP machine using VS 2005 to a Windows 7 machine using VS 2010. The other difference is the XP machine uses IIS 5.1 and the Windows 7 machine uses IIS 7.5...
  4. WMXTeam

    Select cell for data entry in DataGridView

    Thanks you for the suggestion; however, I tried it and it did not work. The first cell displays a blue bar and does not allow the user to start typing. The user must press the tab key or click on the cell with the mouse to make the cursor change and allow typing. Any other suggestions?
  5. WMXTeam

    Select cell for data entry in DataGridView

    I have a button on my form that repositions the grid to the top and selects the first (visible) cell in the first row. The grid is repositioned and the first cell is highlighted in blue; however, the user must select the cell by clicking the mouse or pressing the tab key in order to type in any...
  6. WMXTeam

    Saving word document using code

    Thank you PRPhx for you help. Your last question put me on a path where I found the answer. The two workstations I was having an issue with did not have .PDF as a "Save As Type" in Word. I found "2007 Microsoft Office Add-in: Microsoft Save as PDF or XPS" on Micosoft's site...
  7. WMXTeam

    Saving word document using code

    Yes. I double checked and the user has permission to save to that folder. I even did a test by manually opening a word document and saving it to the folder. Any other ideas?
  8. WMXTeam

    Saving word document using code

    Unfortunately, the error routine in the app isn't providing a lot of details. All I get is this: Err#: 1 TimeStamp: 1/18/2011 2:13:19 PM etype=U errSubName=0 curPrgVer=|.0 enumber=0 edesc1= at Microsoft.Office.Interop.Word.DocumentClass.SaveAs(Object FileName, Object FileFormat, Object...
  9. WMXTeam

    Saving word document using code

    I have a Windows Form Application that creates a Word document and then saves it to a PDF. The application works fine on three workstations. On two workstations, we get the an error at the point the document is saved. Microsoft.Office.Interop.Word.DocumentClass.SaveAs(Object FileName, Object...
  10. WMXTeam

    Using ToolStripComboBox.OnSelectionChangeCommitted

    Thank you for your response. After I posted my code, I realized I had named my class the same as the object. This is exactly what I needed. Thank you very much for your help.
  11. WMXTeam

    Using ToolStripComboBox.OnSelectionChangeCommitted

    I am trying to figure out how to use ToolStripComboBox.OnSelectionChangeCommitted method with a combox in a tool strip on my form. Here is the link I found, http://msdn.microsoft.com/en-us/library/system.windows.forms.toolstripcombobox.onselectionchangecommitted(ko-kr,VS.80).aspx. This is my...
  12. WMXTeam

    Using Access 2007 with ASP.net

    I have a small ASP.NET 2.0 application that I use on my local XP machine running IIS 5.1. The app uses an Access Database. I am trying to update the application to use an Access 2007 database. I have installed the Microsoft Office Access Database Engine, and changed the connection string to...
  13. WMXTeam

    Error Deleting Record in Access DB

    After many more hours of troubleshooting, we determined that the query we were using to delete the record had been changed to a join query on the development environment. DUH! Thank you for your help and I apologize for wasting anyone's time.
  14. WMXTeam

    Error Deleting Record in Access DB

    We have an ASP application that uses an Access Database. In the development environment, I am getting the following error whenever we try to delete a record from a table: "Microsoft OLE DB Provider for ODBC Drivers (0x80004005) [Microsoft][ODBC Microsoft Access Driver] Cannot update. Database...
  15. WMXTeam

    Adding a Numbered List to Word Document

    Thanks for your help. I was able to figure it out. The issue was "rngRange.FormattedText.Text". I changed this to "rngRange.Text" and it worked. I had to make some other changes to get it to worked exactly as needed. My updated code is below. Public Sub addTableVendorClar(ByRef oWord As...
  16. WMXTeam

    Adding a Numbered List to Word Document

    I have been working on a program over the last several days that that opens up an existing Word Document, goes to a certain place in the document, and creates a numbered list from a SQL Query. Everything is working great except the list is created in the document in the reverse order that it is...
  17. WMXTeam

    Form Designer Display

    Right after I posted my question, I found the answer. So simple -- and yet not intuitive. From the main Foxpro window, I selected "Tools|Options" and changed the "Maximum Design Area" to a larger size. I apologize for taking up anyone's time.
  18. WMXTeam

    Form Designer Display

    I am using Visual Foxpro 7 to maintain an internal application. It is an application that we don't update very frequently. I recently noticed that when I open a form in Form Designer, it only displays a 1/4 of the form. I have tried changing different settings to be troubleshoot this, but I...
  19. WMXTeam

    OpenSchema() is missing some tables

    You response prompted me to check the permissions, which appears to have fixed the problem. The two tables in question did not have the correct permission for the login I was using. Thank you for the help.
  20. WMXTeam

    OpenSchema() is missing some tables

    We are using OpenSchema to return a list of tables in our SQL Server database. The two most recent tables (added in the past month) are not showing up in the list. I have not used OpenSchema a lot and am not sure how it is finding the list of tables. Is there something wrong in our SQL...

Part and Inventory Search

Back
Top