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 bkrike 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. MelissaEvans

    I have created a large OCX that is

    I have created a large OCX that is basically a user interface. I had to do this so I could use it in my own shell and so that another developer could use it too. There are many, many pieces to this OCX, and the install program for it was obnoxious. In order to get it to the other developer, I...
  2. MelissaEvans

    Binary Compatibility Distribution

    OK... This is something that I thought I understood, but apparently do not. *sigh* I have developed an OCX with Binary Compatibility. The file that it's pointing to is the current version of the OCX. I don't know what it's doing with this file. I had assumed it was checking for differences...
  3. MelissaEvans

    Three ADO Mysteries

    Given: SQL 7.0, using an ODBC connection, ADO 2.5, MDAC 2.51, server side cursor, keyset cursor type, optimistic locks 1. I have a trigger that is altering a field in the background upon update. Actually, it makes several changes. I am using a keyset cursor type (which means that I should...
  4. MelissaEvans

    ADO Find w/o MoveFirst

    I need to be able to search a recordset for a specific piece of data. I use the .Find method with the skip of 0, moving forward, starting at the first record; but it doesn't find the record. If I do a .MoveFirst, then it does. The problem is that with SQL Server 7 and a server side cursor...
  5. MelissaEvans

    "Adventure" installing home-made OCX

    I have an OCX with several user controls. Two of the controls are private (they are inside of a public control, but not for the use of other programmers). A - private control, used in B B - private control, used in C C, D, E - public controls I have created an install script with the PDW. When...
  6. MelissaEvans

    Programatically getting DSN's, DB's and Tables

    I have an app that is very configurable. It talks to a table, but the user decides what table it uses. Not only that, but the user decides what ODBC DSN to use, and which database to use. Currently, I have a configuration tool where the user types in this informtaion, but that's very prone to...
  7. MelissaEvans

    getting the RecordCount faster

    I've come to the realization that I must use a Server Side cursor in an ADO connection (to a SQL Server 7.0 database, but this shouldn't be set in stone; my boss love to sell with Access and anything else that would make the customer happy). One customer has an extremely large table (100,000)...
  8. MelissaEvans

    ADO, AddNew, and ID Fields

    Overview: I have an ADO connection object and recordset object. I need to be able to add new records to the recordset object and so I am using the AddNew method. (My other option is to do it "behind its back" by executing a SQL insert statement; but I can only get a static cursor, so...
  9. MelissaEvans

    Stretching a .jpg in a PictureBox control

    Something's goofy with my computer, and whenever I alter the size of an Image control (with the stretch property set to true), it disappears. We've come to the realization that it's some obscure oddity on my machine only. This wouldn't bother us too much, except we fear that our customers will...
  10. MelissaEvans

    Image Stretching problem

    I have an image control on a form that I need to be able to move. There are some command buttons that alter the height, width, and so forth with code like image1.height = image1.heigh + 60 I have a picture inside the image control, and the stretch property is set to true. I want the picture to...

Part and Inventory Search

Back
Top