Search results

  1. S

    Screen Positioning

    this could help you : http://www.jamiessoftware.tk/ look for "form resizer"
  2. S

    Set Form's Visible Property to False

    put the focus on any control of the form C like this : Form_formC.anyControl.SetFocus
  3. S

    copy a column and it's properties

    I'll give more description. I have a field, its dataType is text, and its display look is a combobox. It has some values in its row source. I want to create a new field with the same properties, I mean the same display control (combobox) and the same row source. I attached a file with this...
  4. S

    Subform Won't Surrender Focus

    you can do it by programming (VBA): mainForm.Controls("my_control").SetFocus my_control is a name of a control like a textbox or command button,...
  5. S

    copy a column and it's properties

    hello, I wanted to know how to copy a column and it's properties by programming (VBA-SQL). I have a column that has a list of values, and want to duplicate it (with another name).The new column should have the same list of values. thanks for reading. Seiky
  6. S

    copy a column and it's properties

    hello, I wanted to know how to copy a column and it's properties by programming (VBA-SQL). I have a column that has a list of values, and want to duplicate it (with another name).The new column should have the same list of values. thanks for reading. Seiky
  7. S

    Access and Pivot Table

    Hello, I want to create a pivot table form with Access 2003. The user selects fields and then when he clicks to a button I create the pivot table form (and I add fields to the fieldset), the user closes the form when he has finished the settings and I save the settings on the form. But if the...
  8. S

    Creating controls on run time?

    thanks, but I found an another solution, I found the "CreateControl" command, the problem is that I have to close the form for adding controls.
  9. S

    Closing a subform

    I have a listbox with fields, the user can choose the fields he wants to edit, and when it's done I want to create a textbox by field he has choosed, the textboxes should appear on a subform. Thanks for the answer.
  10. S

    Closing a subform

    Hello, I need to close a subform to update the controls on it (deleting and adding), and without closing the main form; without using the "visible" propriety. Thanks
  11. S

    Creating controls on run time?

    Is it possible to add a control (textbox, commandbutton) at run time, I know it's possible with VB but is it with VBA? Thanks.
Back
Top Bottom