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 Chris Miller 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. ultra2

    Enhance the TextBox control

    1. I created a new ActiveX control. (named "myTextBox") 2. I put a TextBox control onto the UserControl. 3. I created a Text property. 4. I checked "Property is DataBound" and "This property binds to a datafield" in Tools/Procedure Attributes dialog for the Text property. When I put my control...
  2. ultra2

    I've created two ActiveX control in one .ocx. "Ambiguous name detecte

    I've created two ActiveX control in one .ocx. myControls.ocx: -myGrid.ctl -myTextBox.ctl So far I have added the new control (myTextBox) and rebuilded the ocx, it cant be loaded. I created a new .exe app and tried to add "myControls" to components I get this error: "Ambiguous name...
  3. ultra2

    Why the actual record in a child recordset cant be changed?

    I have a master-detail form with 2 grid control. Its datasources 2 adodb.command in a parent - child relationship. Some other datasink (textbox) are bounded to the child recordset. As I moving in the grid bounded to the child recordset, nothing to happen. The datasinks show data from the...
  4. ultra2

    How to create an ActiveX control (grid) with DataSource and DataMember

    I trying to develop a new data-bound grid activex control. I have placed an unbound grid (no datasource and datamember properties) onto usercontrol . . I use variables to store these values: Dim m_DataSource As Object Dim m_DataMember As String Public Property Get DataSource() As DataSource...
  5. ultra2

    how to stop controls updating database immediately on lost focus?

    I use VB6 ADO (dataenvironment, commands object) In my app to maintain data tables I use several control (textbox, datacombo, ect) with set their datasource and datamember properties properly. On the same datatable maintain form there are two commandbuttons "post" and "cancel". Id like to...
  6. ultra2

    how to obtain db structure info from an Access db in run-time?

    I use dataenvironment and adodb commands to communicate with and Access database from VB6. I need to get db structure information (such as tables count their names, their fields count and names) in run-time. so how can I write an sql statement to obtain that? or any other solution for this...
  7. ultra2

    I need a flat style cmdbutton control for VB6

    I can set all the controls to flat except the cmdbuttons. can u help?
  8. ultra2

    datacombo doesnt regate the changing of the recordset bounded to it

    if I change a recordset's filter (ADODB) bounded to a DataCombo control it doesnt refresh its data. there is a datagrid control bounded the same recordset (the recordset is a table type command in a dataenvironment) the grid refresh its data correctly. I tried to call datacombo refill and...
  9. ultra2

    ADODB Recordset Filter problem

    thx, you cannot group clauses joined by an OR and then join the group to another clause with an AND, like this: (LastName = 'Smith' OR LastName = 'Jones') AND FirstName = 'John' Instead, you would construct this filter as (LastName = 'Smith' AND FirstName = 'John') OR (LastName = 'Jones' AND...
  10. ultra2

    ADODB Recordset Filter problem

    dim rst as ADODB.Recordset set rst = new ADODB.Recordset rst.open select field1,field2 from table rst.Filter = "(field1 = 100)" it works! rst.Filter = "(field2 = 2 or field2 = 3)" it also works! but it doesnt work: rst.Filter = "(field1 = 100) and (field2 = 2 or field2 = 3)" //Error: wrong...
  11. ultra2

    I need the best free dbgrid control for VB6:)

    I need: head click event or sorting feature (important!) flat style (no 3D) (important!) + different color rows and columns filter feature
  12. ultra2

    I need the best free dbgrid control for VB6:)

    does nobody know an advisable grid control for VB6?
  13. ultra2

    any access database manager with that I can execute an sql statement?

    I need an access database manager to execute sql statements on my access database? (like insert,delete,update) plz help
  14. ultra2

    I need the best free dbgrid control for VB6:)

    I need the best free dbgrid control for VB6:) I know VBAccelerator Grid control but it seems not to have Datasource property so I cant use it data-bounded mode. If anybody know a grid control for VB6 with filter, nice graphic styles, ect. which can be used in data-bounded mode, and free:)...
  15. ultra2

    How to obtain the selected value from a combo box in Excel?

    Cells(1, 10) = combo1.value error: object required
  16. ultra2

    How to obtain the selected value from a combo box in Excel?

    How to obtain the selected value from a combo box in Excel? I have a combo box on an excel worksheet, how to write a makro (event handler) to change a cell value as a user choose a number from the combo? Sub combo_change() Cells(1, 10) = combo_value?? End Sub plz help
  17. ultra2

    how to recognize if an app has been closed? (i have the task id)

    how to recognize if an app has been closed? (i have the task id) TaskID = Shell filename, vbNormalFocus ... I need to do some stuff if the started app has been closed. plz help
  18. ultra2

    button control with dblclick event?

    thx, how tricky the VB6 is..:)
  19. ultra2

    button control with dblclick event?

    where can i find a button control with dblclick event?
  20. ultra2

    can u suggest a program to make a database diagram?

    Paper and pencil :)what is that in the age of technology? ah the relationships viewer is really good, thx I didnt know that, but a problem with that: I can save only one arrangement, and because of the db has more than 100 tables...it would be great to see only the tables i work with..

Part and Inventory Search

Back
Top