Saltar al contenido principal

Búsqueda

Búsqueda

Programatically Select Records From Database

Comentarios

1 comentario

  • Avatar
    Jeff Fabish

    Solved. In case anyone has questions regarding this, to be able to retrieve records you must select "Selected at Print Time" on the print dialog box (shown above) for "Queried Records". Then, in your code (C# .Net) after you initialize the Bartender engine, you'll need to set the Window Visibility field on the engine to VisibileWindows.InteractiveWindows AFTER you set the visibility of the window to true. For example:

    m_engine.Window.Visible = true;
    m_engine.Window.VisibleWindows = VisibleWindows.InteractiveDialogs;

     

    Thanks.

    1

Iniciar sesión para dejar un comentario.