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

  1. 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.
  2. VladimirKim

    Split function in ACC97????

    Hi, I can't find Split function or duplicate its functionality in VBA for Access97. Please, Help. Thanks
  3. 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.
  4. 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)...
  5. 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.
  6. VladimirKim

    Is it possible to use VB.NET modules in Access 97?

    Hi, We use Access 97. However, there are very useful modules written in VB.NET. So, my question is if it is possible to use VB.NET dll files in Access 97? Otherwise, that functionality will have to be re-written in VBA.
  7. VladimirKim

    Is it possible to use VB.NET modules in Access 97?

    Hi, We use Access 97. However, there are very useful modules written in VB.NET. So, my question is if it is possible to use VB.NET dll files in Access 97? Otherwise, that functionality will have to be re-written in VBA.
  8. VladimirKim

    converting "123105" to a date..

    Hi. Is there a function in VB.NET to convert a string, let's say "123105", to a date "12/31/05"? Thanks.
  9. VladimirKim

    NumericUpDown for Double type not for Integer?

    Hi, is there a way or a control to use NumericUpDown control for Double type? like a dollar value. So increase/decrease is going to be not by whole dollars, but by cents. Thanks, Vladimir.
  10. VladimirKim

    Auto fill-in in a combo box

    Is there a property that allows to auto fill-in the combobox when typing in, like there is in Access?
  11. VladimirKim

    ComponentOne FlexGrid

    Is it possible to make hierarchical grids in ComponentOne FlexGrid? Please help. Thanks in advance.
  12. VladimirKim

    How to assign an image from file to a button?

    is is like: btnPin.image.fromfile("pinhor.jpg") and then, what property do I use to figure out what image is being used on the button currently? Thanks
  13. VladimirKim

    How to create Auto Hiding control like Toolbox in VBStudio?

    How to create Auto Hiding control like Toolbox in VB Studio? I have a lot of controls on the form, but those that I would place on the toolbox are rarely used, so I would like them not to appear on the form, but be there at the time when needed. I don't even know what to start with.Please make...
  14. VladimirKim

    How to select controls in Design View???

    Hi, How do I select controls on the panel or on the tabcontrol in Design view if they are outside of panel view, but I know that they are there? Like, if I do CTRL A, it would select all controls on the form. What about all controls on the panel? Thanks.
  15. VladimirKim

    Rows Selected in the Datagrid. How to get cell's value?

    Hi, If in the datagrid rows are selected, how would I get the value of the cell of the first selected row and the column "Date"? Thanks.
  16. VladimirKim

    How to make the cursor move automatically between records on the FORM

    Hi, I have a subform where there are few records. After I press the button on the parent form, I need the cursor to go through all the records on the subform. Line on the button's click event: DoCmd.GoToRecord acDataForm, "Sub_Hdetails1_Quote", acNext generates an error: "Sub_Hdetails1_Quote...
  17. VladimirKim

    Set Focus for combobox

    Hi, How do I set the focus for the combobox? When I use: combobox1.Focus = True It gives me an error: Expression is a value and therefore cannot be the target of an assignment. Thanks
  18. VladimirKim

    ArrayList of elements of different data type (integer, string).

    Hi, I have this problem of passing bunch of names of textboxes and values in them in a collection, array, or arraylist or whatever to a method . Values better be integers. Is it possible to create a 2-dimensional ArrayList that has the first column as a string type, and 2-nd column as an...
  19. VladimirKim

    How to add a new ITEM to a COMBOBOX with datasource?

    Hi, I have this code: Public HISetID As Integer public RTID as Integer Private Sub frmHotelInventoryManager_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load cmbHotelInventorySet.ValueMember = "HotInvSetID" cmbHotelInventorySet.DisplayMember =...
  20. VladimirKim

    Question mark in the name of the field

    Hi, my sql string is this: sql=" SELECT HDetails.HotelNum, Hotels_2k.HotelName, HDetails.ArrivalDate, HDetails.Nights, Hotel_Room_2k.AllotmentKey, Res.ResID " & _ " FROM Hotel_Room_2k INNER JOIN (Hotels_2k INNER JOIN (Res INNER JOIN HDetails ON Res.ResNum = HDetails.ResNum) ON...

Part and Inventory Search

Back
Top