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 TouchToneTommy 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: ultra2
  • Content: Threads
  • Order by date
  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

    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...
  10. 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
  11. 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:)...
  12. 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
  13. 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
  14. ultra2

    button control with dblclick event?

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

    can u suggest a program to make a database diagram?

    I have an Access database. I need to make a diagram on which the tables and the relations are drawn. can u suggest an easy to use tool for that?
  16. ultra2

    how to draw points onto a frame control?

    i need to draw hundreds of points onto a frame control. It should look like the points on a form in the form designer of VB6. I tried to create a shape control array, but that is too slow to swich on/off the visible property of hundreds of shape controls. how to draw directly onto the frame...
  17. ultra2

    how to find a string in a textfile?

    I need to insert a specified string after an other specified string. const STR1 = "blabla" const STR2 = "something" const FILENAME = "something.txt" how to find STR1 in the FILENAME textfile? how to insert STR2 after STR1?
  18. ultra2

    I need a button component playing gif animation

    I need a button component playing gif animation, any idea? or any component which can play gif and has click event
  19. ultra2

    StretchBlt doesnt work on Win98...help!

    dim r as long r = StretchBlt(pictureBox_Dest.hdc, 0, 0, 100, 100, pictureBox_Src.hdc, 0, 0, 500, 500, vbSrcCopy) r = 1 (success) on WinXP r = 0 (fail) on Win98 plz help
  20. ultra2

    how to obtain the HDC of a HBITMAP?

    how to obtain the HDC of a HBITMAP? stretch blt need src and dest HDCs, but I have an image control which has a picture property and I know the handle for the Bitmap (HBitmap) plz help

Part and Inventory Search

Back
Top