
C#
行者天易
这个作者很懒,什么都没留下…
展开
-
DevExpress GridView常用功能总结
1. 去除 GridView 头上的 "Drag a column header here to group by thatcolumn"点击 Run Designer -> 找到:OptionView -> 将 ShowGroupPanel : 设置为 false ; 2. 如何显示出 GridView 自带的 搜索功能点击 Run Designer -> 找到: OptionsFind -> 将AlwaysVisible : 设置为 True 3. 如何将G转载 2022-01-27 11:54:59 · 1152 阅读 · 0 评论 -
C#devexpress 遍历控件bar(button)
foreach (BarItem item in ribbonPage2.Ribbon.Items)//DevExpress.XtraBars.InternalItems.RibbonExpandCollapseItem { BarEditItem checkbox = item as BarEditItem; if (checkbox != null) { .原创 2022-01-26 19:16:01 · 1099 阅读 · 0 评论 -
mysql出现“Incorrect key file for table”解决办法
今天mysql突然出现以下错误:mysql> select * from test;ERROR 1034 (HY000): Incorrect key file for table ‘test’; try to repair it首先通过repair table修复:mysql> repair table test;+—————+——–+———-+———————————————————+| Table | Op | Msg_type | Msg_text转载 2022-01-26 18:51:21 · 2480 阅读 · 0 评论 -
C# mysql insert超出索引报错
貌似MySQL队时间格式识别有问题 mcd.AddParam("up_time", DateTime.Now.ToString("yyyy-MM-dd HH:mm:ss"), DbType.DateTime);```去掉时间戳 ss 就会报上述错原创 2022-01-26 18:47:30 · 1118 阅读 · 0 评论