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!

Recent content by VladimirKim

  1. VladimirKim

    SomeControl.Enable=FALSE, but I don't want the greying out

    Thanks, that's exactly what I needed. I thought the locked property is for locking the control's positioin on the form, like in VB.NET.
  2. VladimirKim

    SomeControl.Enable=FALSE, but I don't want the greying out

    Hi. Let's say, I disabled a textbox, how can I keep the style, so it's not greyed out? Thanks.
  3. VladimirKim

    Split function in ACC97????

    Thanks a lot. That helped.
  4. VladimirKim

    Split function in ACC97????

    Hi, I can't find Split function or duplicate its functionality in VBA for Access97. Please, Help. Thanks
  5. VladimirKim

    How to bind ADO recordset to a form in Access 97???

    How about using temporary tables? If yes, then, how would I implement that? Thanks.
  6. VladimirKim

    How to bind ADO recordset to a form in Access 97???

    No, I still get the feeling that it is possible;)
  7. VladimirKim

    How to bind ADO recordset to a form in Access 97???

    Thanks, but they are referring to Access 2000, and there the form has a Recordset property. But in Access 97 the form does not have a recordset property:((
  8. VladimirKim

    How to bind ADO recordset to a form in Access 97???

    Hi. Access 97 form has a recordsource property, which is basically a string, like "SELECT * FROM Hotels". But I have a ADO recordset that I would like to bind to a form. How can I do that? Thanks in advance.
  9. VladimirKim

    Trouble converting dataset.table to DAO.recordset

    Thanks ca8msm, That last link has helped me. I have added an ADODB library to Access 97 as a reference, so I could use ADO recordsets in addition to DAO. So, I used that code to pass ADO recordsets across from .NET to Access 97.
  10. VladimirKim

    Trouble converting dataset.table to DAO.recordset

    Thanks for your reply, ca8msm. But there's gotta be an easier way to do this. I just need a simple function that takes a single table in the dataset and converts it into a recordset with the same column names. i'm looking for something like this: Public Function convertToRS(ByVal ds As...
  11. VladimirKim

    Trouble converting dataset.table to DAO.recordset

    It could be that I'm doing it completely wrong. Could anybody tell me what's the better way to convert. Thank you in advance.
  12. VladimirKim

    Trouble converting dataset.table to DAO.recordset

    Hi, here is the code: Public Function convertToRS(ByVal ds As DataSet) As Recordset Dim rs As DAO.Recordset Dim i, j As Integer Dim dt As New TableDef For i = 0 To ds.Tables(0).Columns.Count - 1 dt.CreateField(ds.Tables(0).Columns(i).ColumnName)...
  13. VladimirKim

    How to convert Dataset.table into DAO.recordset?

    Dataset contains just one table with bunch of rows.
  14. VladimirKim

    How to convert Dataset.table into DAO.recordset?

    Hi, What would be the best way to convert .NET Dataset into a DAO.recordset?? Thanks in advance.

Part and Inventory Search

Back
Top