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

    DataAdapter does not generate Update+Delete

    Are you attached to a view (query if your in Access) or a table? If your view is not updatable, your dataadapter won't be either.
  2. gmcevoy

    Single Quotes Removing

    This will maintain your Apostrophe properly without 30 lines of code. str = Replace(str, "'", chr(34)) or str = Replace(str, "'", "''")
  3. gmcevoy

    Query runs first time, errors second time

    We have an ODBC connection to a SQL Server database which we have built an Access Query on. We do this in several spots without a problem. The problem is one Query we run will run the first time we open the program, the second time we open the query an error with a problem with Heterogenous...
  4. gmcevoy

    Email/Export Crystal Report

    Hi We export to pdf all the time for display, people are used to viewing pdf. This is the additional lines you should use. Although the loop is not always required, it will not always load large reports properly if you don't use it. Do While cryTwo.IsLoaded = False Loop...
  5. gmcevoy

    Login failed on SQL Server using Crystal Reports

    I also have the same code and it doesn't seem to run either. It doesn't get past the load
  6. gmcevoy

    Dynamic Dropdownlist in table control

    Zombie you missed a couple of steps, I have figured it out and had what you wrote when I posted this as well. What also has to be done is every cell and row id has to be set in the server table control as well. This is what I was missing. As soon as I add that it worked fine. What you wrote...
  7. gmcevoy

    Dynamic Dropdownlist in table control

    I build a table on the fly using a table control. On the table control I add a textbox, 2 labels and a dropdownlist. When the selected item in the dropdownlist is changed I need to read that event. The problem being is because the dropdown box was built dynamically there is no known name for...
  8. gmcevoy

    ASP.NET web page hosting

    I use setupsite.com, they also use SQL Server or Access. Very good service, very cheap. I have about 30 clients that I have moved over to there system now.
  9. gmcevoy

    Pictures in Word

    Hi I want to set a random picture into a word template, I can get the picture into the template but it doesn't set where I want it to. It causes the rest of the template to move down the page and picture and doesn't set where I need it to set. here is the code we have...
  10. gmcevoy

    Storing a paragraph to database

    Hi Like snowboardr said you can use the replace statement, but you don't need to use chr function. You can use the replace statement like this strText = replace(strText,"'", "''") this same code is common practice in VB with ADO connections.

Part and Inventory Search

Back
Top