hello, 
i use koivi with newbb2 module but i can't use with another module :(
i try tu use with module news, and a have just modify storyform.inc.php and i have this :
 include XOOPS_ROOT_PATH."/class/xoopsformloader.php"; 
include_once XOOPS_ROOT_PATH."/class/wysiwyg/formwysiwygtextarea.php"; 
$sform = new XoopsThemeForm(_NW_SUBMITNEWS, "storyform", xoops_getenv('PHP_SELF')); 
$sform->addElement(new XoopsFormText(_NW_TITLE, 'subject', 80, 255, $subject), true); 
ob_start(); 
$xt->makeTopicSelBox(0); 
$sform->addElement(new XoopsFormLabel(_NW_TOPIC, ob_get_contents())); 
ob_end_clean(); 
$sform->addElement($topic_select); 
$sform->addElement(new XoopsFormWysiwygTextArea(_NW_THESCOOP, 'message', $message, '100%', '400px',''), true); 
$option_tray = new XoopsFormElementTray(_OPTIONS,'
'); 
if ($xoopsUser) { 
    if ($xoopsConfig['anonpost'] == 1) { 
        $noname_checkbox = new XoopsFormCheckBox('', 'noname', $noname); 
        $noname_checkbox->addOption(1, _POSTANON); 
        $option_tray->addElement($noname_checkbox); 
    } 
    $notify_checkbox = new XoopsFormCheckBox('', 'notifypub', $notifypub); 
    $notify_checkbox->addOption(1, _NW_NOTIFYPUBLISH); 
    $option_tray->addElement($notify_checkbox); 
    if ($xoopsUser->isAdmin($xoopsModule->getVar('mid'))) { 
        $nohtml_checkbox = new XoopsFormCheckBox('', 'nohtml', $nohtml); 
        $nohtml_checkbox->addOption(1, _DISABLEHTML); 
        $option_tray->addElement($nohtml_checkbox); 
    } 
} 
$smiley_checkbox = new XoopsFormCheckBox('', 'nosmiley', $nosmiley); 
$smiley_checkbox->addOption(1, _DISABLESMILEY); 
$option_tray->addElement($smiley_checkbox); 
$sform->addElement($option_tray); 
$button_tray = new XoopsFormElementTray('' ,''); 
$button_tray->addElement(new XoopsFormButton('', 'preview', _PREVIEW, 'submit')); 
$button_tray->addElement(new XoopsFormButton('', 'post', _NW_POST, 'submit')); 
$sform->addElement($button_tray); 
$sform->display(); 
?>  
but nothing when i want to edit an article... i try it with wfsection but the same probleme 

i would like to use koivi with all my module, could you help me ?
thanks for your help 

PS: Sorry for my bad english but i'm french...
@+