メインコンテンツへスキップ

検索

検索

Programatically Select Records From Database

コメント

1件のコメント

  • 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

サインインしてコメントを残してください。