vb6,richTextBox右鍵彈出選單問題

2021-06-03 14:32:23 字數 788 閱讀 5365

自己做乙個就好了  

//右鍵彈出選單;  

private   void   contextmenu1_popup(object   sender,   system.eventargs   e)  

else  

if(this.richtextbox2.selectedtext.length>0)  

else  

if(this.richtextbox2.canundo   ==   true)  

else  

}  

//複製;  

private   void   menuitem1_click(object   sender,   system.eventargs   e)  

//剪下;  

private   void   menuitem2_click(object   sender,   system.eventargs   e)  

//貼上;  

private   void   menuitem3_click(object   sender,   system.eventargs   e)  

//撤消;  

private   void   menuitem4_click(object   sender,   system.eventargs   e)  

//全選;  

private   void   menuitem7_click(object   sender,   system.eventargs   e)  

VB6技巧 總結

vb設定多行textbox的位置 由於自動輸入的文字比較多,最後輸入的跑到下面了,想要自動滾動到下面,本來以為 操作滾動條呢,但是沒有方法。於是我巧妙的採用了 顯示列表是設定了乙個多行 的 textbox 顯示列表.selstart len 顯示列表.text 1 顯示列表.sellength 1 ...

vb6 讀寫檔案

write file dim nhandle as integer,fname as string fname d 1.txt nhandle freefile open fname for output as nhandle print nhandle,0 print nhandle,2 clos...

VB6 系統列印常識

在一次做列印的時候,對位置的調整老是不得法,後來通過cbm666老師的幫助才解決問題,分享以下他給的幫助。其中pic 為物件,如圖形框picture等 destx,desty 目標影象位置 destwidth,destheight 目標影象尺寸 scrx,scry 原影象的裁剪座標 scrwidth...