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 wOOdy-Soft 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 StevenTaylor

  1. StevenTaylor

    Communication with components

    C,<br> <br> These objects are in the business objects tier and are located on the client machine. They populate themselves by creating temporary objects in the data services tier, calling the load functions of these objects, and removing these objects. This is how we handle all of the...
  2. StevenTaylor

    Communication with components

    Calahans,<br> <br> Currently, we are building objects that contain all the information for a single DB record, then making a collection object that loads and contains all of these objects. I don't know if that makes any sense, but that works really well for us.<br> <br> T
  3. StevenTaylor

    Working with the ListView Control

    Found it. You can use the ListItem.EnsureVisible method to scroll the listview.<br> <br> Thanks anyway,<br> T
  4. StevenTaylor

    Working with the ListView Control

    Using the ListView control, I can find out what the first item displayed is (GetFirstVisible). I want to be able to scroll the ListView manually by setting the first visible record. Does anyone know how to do this??<br> <br> Thanks,<br> T.
  5. StevenTaylor

    Maximum number of controls in a Form (VB)

    All I know is that in version 5, you could have a little over 240 controls on a form. I don't know about version 6.<br> <br> Sorry,<br> T
  6. StevenTaylor

    Anybody out there interested in talking about MS multitier dev issues?

    bironman,<br> <br> I’m sorry to say that your request for sample code is a hard one to fulfill. For example, the app I am working on right now has over 60 classes that work together to form the 'guts' of the application. While they all follow the same ideology and structure, they have...
  7. StevenTaylor

    How can I trap keyboard input for an entire project?

    Thanks Zx, works great!<br> T
  8. StevenTaylor

    How can I trap keyboard input for an entire project?

    I have an application that we are building that has to mimic an older application written in SQL Windows. In this app, the user has the ability to press various function keys at any time have certain things occur. In VB, how can I trap keyboard input over an entire app or form instead of each...
  9. StevenTaylor

    Need to add Intellisense to textbox

    Mike,<br> <br> If you are willing, I would also like to see your code for this and get the ISBN for the book.<br> <br> Thanks,<br> Steve
  10. StevenTaylor

    Anybody out there interested in talking about MS multitier dev issues?

    We have recently had a lot of success using an n-tier design. Like Kisner & Co., we have a UI tier, a business objects tier, and a data-services tier. All of our SQL statements are completely contained in the data-services tier; even our WHERE clauses are generated in this tier based on values...
  11. StevenTaylor

    Anybody out there interested in talking about MS multitier dev issues?

    John K.,<br> <br> I have been working on an n-tier application for a few weeks now. I have based my approach on the techniques described in Rockford Lhotka's Visual Basic 6 Business Objects. The first tier is the UI (Standard exe), the second tier is the UI-centric business objects (ActiveX...

Part and Inventory Search

Back
Top