跳到主内容

搜索

搜索

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

请先登录再写评论。