跳至主內容

搜尋

搜尋

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

登入寫評論。