string reqSql = "select pieds_v.id,journal,piece,reference,type,date,heure,0 as tot_bas_dv,0 as tot_bas_fb,net_dv as tot_ttc_dv,net_fb as tot_ttc_fb,n_dec,id_dev,imprime,cubic as flag_appl,niveau_bo,c_nom,devises.nom as dev_nom "
    + "from pieds_v (NOLOCK) inner join cli (NOLOCK) on (pieds_v.id_cli=cli.c_id) "
    + "inner join devises(NOLOCK) on (pieds_v.id_dev=devises.id) where ... order by ...";
Globals.Main.ShowHistWithReqSql("V", reqSql, false);