Search results

  1. O

    Edit button (deletion prev content/leaving zero-length)

    Hello again. I'm creating edit button in my form and I get stuck on simple problem. I run sth like this If Not IsNull(Me.cStatus) Then rstsupplier![Supplier Status] = Me.cStatus End If If Not IsNull(Me.tGenRiskReg) And Me.tGenRisk > ""...
  2. O

    Horizontal scrollbar in combobox

    Column Count = 1 Column Widths = 55 cm (for tests) List Width = Auto Tried to setup up fixed list width and still no scrollbar :/
  3. O

    Horizontal scrollbar in combobox

    Hello, How can I set up horizontal scrollbar in combox? I found some info about that sbj on msdn: I dunno why but it doesnt work. I put in my ComboBox properties, Column Widths: 50 cm and scrollbar still does not apear. Apart from that. Is there any other way to show long strings in combobox...
  4. O

    Passing current form name to other form

    Unfortunatly that doesnt work. Form1: Private Sub bNext_Click() DoCmd.OpenForm "Form2", , , , , , Me.Form.Name End SubForm2: Private Sub Form_Open(Cancel As Integer) DoCmd.Close acForm, OpenArgs End SubError: Run-time error '424': Object required EDIT: I forgot that is should me Me.OpenArgs...
  5. O

    Passing current form name to other form

    Hello, Ive little problem with passing current form name to another form. I'm tring to execute something like this Form1: DoCmd.OpenForm "Form2", OpenArgs:="Form1" Form2: Private Sub Form_Load() Me.Move OpenArgs.WindowLeft, OpenArgs.WindowTop DoCmd.Close acForm, OpenArgs End Sub Ofcourse...
Back
Top Bottom