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: *

  • Users: evoluder
  • Content: Threads
  • Order by date
  1. evoluder

    Free Grid Control?

    Hello, Does anyone know of a good, free grid control? The datagrid control included with VB6 has a bug that is preventing me from using it effectively (BeforeUpdate event not firing at inopportune times). I've looked at ComponentOne's True DB Grid and it rocks; however, it is overkill for...
  2. evoluder

    Datagrid Validation

    Hello everyone, I have a datagrid question I hope you can help me with. Let me explain: I have a datagrid that is bound to a client side ADO recordset. The user is required to press a toolbar button before she is able to edit cells in the datagrid. After pressing the toolbar button, all...
  3. evoluder

    Centering ListBox Selection

    Hello, Here is my scenario: I have a bound textbox for user input. When the user enters a new value and the control loses focus, the new value in the textbox is compared to an array of values. If the new value is not in the array, a form with a listbox pops up. The listbox on this form is...
  4. evoluder

    DataGrid Row Lock

    Hello, I have a DataGrid that is bound to an ADO recordset. Above it on the same form, I have a series of bound text boxes (to the same ADO recordset). When the user hits a menu button such as "edit," the currently selected record in the datagrid is displayed in the bound text boxes...
  5. evoluder

    Calling sub or module to bind txt boxes on frmMain to ADO Recordset

    Hello, let me explain my problem. I have two forms. The first form contains text boxes and a datagrid that are bound controls to an ADO recordset. I want users to be able to pull up a second form that allows them to select an integer, hit "OK" and have all of the bound controls be...
  6. evoluder

    Access Relationships and ADO Bound Controls

    Hello, I am setting up a datagrid in a Vb6 application, its datasource is an ADO recordset that I am creating from a SQL query. For example, consider the following table layout in an Access database: tblClothes ClothesID: 1 Jacket: 2 Pants: 3 Shirt: 2 ClothesID: 2 Jacket: 1 Pants: 2...
  7. evoluder

    SSTab and Controlling Tab Order for Controls

    Hello, I have a SSTab control on a form. There are three tabs, each tab contains multiple textboxes, checkboxes, and comboboxes. I am using a code snippet provided in a VB6 book to prevent the focus moving off of the current SSTab.Tab if the user tabs through the input controls. The code is...
  8. evoluder

    Multiple Outer Joins in Access

    Hello, I am trying to build a VB ADO recordset off of several outer joins in an Access DB, the syntax for the SQL I am using is: SELECT table1.field2, table2.field2, table3.field2 FROM table1 LEFT OUTER JOIN table2 ON table1.field1 = table2.field1 LEFT OUTER JOIN table3 ON table1.field1...

Part and Inventory Search

Back
Top