Search results

  1. S

    Column value's to text box

    hi, im trying to convert all the values in a table/querie coulmn into coma seperated values in a text box. like: table column: a b c d e *Some VBA Magic* Textbox = a,b,c,d,e Not realy sur where to start....any ideas? i presume some sort of loop is needed?
  2. S

    Update Query with update to Dlookup

    I have a update query where i am updating a table called tblPartSetEdit. tblPartSetEdit has the fieldsPartIDand CostofComponent. I am looking to update from a table called data-tblCasting that has fields ID and CastingCost. Ii am trying to update the field CostofComponent to a value from...
  3. S

    Selecting a value in a combo box

    Hi, Im trying to select a value in a combo box. using this code: Form_frmExpandAssembly.cboAssemblyID.SetFocus Form_frmExpandAssembly.cboAssemblyID.ListIndex = 0 Form_frmExpandAssembly.cboAssemblyID.Dropdown This selects the first value but i want to select a value that is equal to a text box...
  4. S

    DoCmd.OpenForm problems

    Hi Everyone, Kinda new to VBA and been lurking on here and learnt a lot already. OK ... i have 2 forms: TestForm1 TestForm2 In TestForm1 i have a text box called TextBox1 and Button called Button1. im trying to open TestForm2 when u click Button1 and go to the record in...
Back
Top Bottom