Search results

  1. geekay

    Holding down Shift

    Is it possible to import the database objects into another db, if the objects in the former are hidden and its hidden attribute can not be changed as the menu bar is disabled? Experts please answer
  2. geekay

    Option Box Code Help Please

    Open the from in design view. Select the option button. Click View>Properties. Set the Default value prperty to 0 (zero). Do the same for all the option buttons in question. Save the form. Open it in form view to see the changes
  3. geekay

    Selecting a Text Box based on a Variable

    Use Conditional formatting Rural Guy is helping a lot in this forum. Keep it up. As he will do help in the after update event of the combo box, I hope I need not. I think conditional formatting the required controls will also help you.
  4. geekay

    How to manage the formatting of a Report programically in VBA

    Hellooo Will anybody help me to sort out the problem below. I have a report which prints certificates. The various fields of the report are to be positioned by the user as per his needs, the orientation is either landscape or portrait as per the user's choice, the width and height are also the...
  5. geekay

    Problem with recordset EOF

    It may be because you are using the EOF condition in Do .... Loop in a wrong way. Try Do While ...... Loop, instead of Do ........ Loop Until Can not say the actual problem without seeing the code.
  6. geekay

    Basic VBA task

    U can use ADODB also '''''It is a little lengthy, But the concept will benefit you in future coding Dim strSQL As String Dim MyValue As DataType 'Replace the proper datatype of field Dim rs As ADODB.Recordset, Cn As ADODB.Connection Set rs = New ADODB.Recordset Set Cn = New ADODB.Connection...
Back
Top Bottom