Location:
Search - 编辑框,显示文本
Search list
Description: hexeditctrl_demo.zip
这是一个从Cedit派生的十六进制的编辑框类库
history_edit_demo.zip
注意过Visual C++的Output窗口吗?就是那个在编译的时候会自动滚动显示信息的窗口,这个类库就是一个类似那样的东东。
masked_edit2_demo.zip
这是用于时间、日期、电话号码、IP地址、邮政编码的编辑框。
NumEdit_demo.zip
这是一个支持带e符号(如-12E4)的数字编辑控制
range_edit_demo.zip
这是一个只允许输入既定范围数字的编辑控制。如果在你的程序中需要限定输入范围(如0-255)的话,这个类可真帮了你的大忙。
smartedit_demo.zip
SmartEdit控制,和滑杆滚动条一起精确确定输入。
Eureka.zip
据说在这个例子中拖动放大镜到密码输入框能得到密码的内容,不过在我的Win2000上不行。
CEditExAndCStaticEx.zip
这个类库包括编辑框扩展类、静态文本扩展类,使你可以以自定义的颜色显示文字。
drag_edit_test.zip
这个编辑器扩展类库使你能够在不同的文本编辑器(甚至是Word、Wordpad)之间拖动文本。
flatedit.zip
浮动效果的编辑框,再配上浮动效果的列表框、组合框,你的界面一定不同凡响。
-hexeditctrl_demo.zip This a Cedit derived from the Progressive 16 the editorial system box Class history_edit_demo.zip noticed Visual C of O utput window? This is not at compile time will automatically scroll the window to display information, the library is a similar kind of Wanton. Masked_edit2_demo.zip This is for the time, date, telephone number, IP address, postcode editing box. NumEdit_demo.zip This is a support with e symbols (eg - 12E4), the number of editorial control range_edit_demo.zip This is the system only allows the importation of an established framework of the digital editorial control . If in the process you need to limit input range (0-255), then this category could really help your very busy. Smartedit_demo.zip SmartEdit control, rolling slider and accurate determina
Platform: |
Size: 328209 |
Author: 田力 |
Hits:
Description: 基于对话框的应用程序,两个文本框,点击显示按钮在单行编辑框中显示文字,点击清除按钮则清除。点击拷贝,将上面文本框内容复制到剪切板中,点击粘贴,将剪切板内容粘在下面的文本框中。
Platform: |
Size: 27075 |
Author: zz |
Hits:
Description: 将演示基本编辑控件的开发使用过程。掌握编辑控件的常用形态,CEdit类常用处理函数以及消息处理
Platform: |
Size: 32780 |
Author: zhangyu1006@163.com |
Hits:
Description: hexeditctrl_demo.zip
这是一个从Cedit派生的十六进制的编辑框类库
history_edit_demo.zip
注意过Visual C++的Output窗口吗?就是那个在编译的时候会自动滚动显示信息的窗口,这个类库就是一个类似那样的东东。
masked_edit2_demo.zip
这是用于时间、日期、电话号码、IP地址、邮政编码的编辑框。
NumEdit_demo.zip
这是一个支持带e符号(如-12E4)的数字编辑控制
range_edit_demo.zip
这是一个只允许输入既定范围数字的编辑控制。如果在你的程序中需要限定输入范围(如0-255)的话,这个类可真帮了你的大忙。
smartedit_demo.zip
SmartEdit控制,和滑杆滚动条一起精确确定输入。
Eureka.zip
据说在这个例子中拖动放大镜到密码输入框能得到密码的内容,不过在我的Win2000上不行。
CEditExAndCStaticEx.zip
这个类库包括编辑框扩展类、静态文本扩展类,使你可以以自定义的颜色显示文字。
drag_edit_test.zip
这个编辑器扩展类库使你能够在不同的文本编辑器(甚至是Word、Wordpad)之间拖动文本。
flatedit.zip
浮动效果的编辑框,再配上浮动效果的列表框、组合框,你的界面一定不同凡响。
-hexeditctrl_demo.zip This a Cedit derived from the Progressive 16 the editorial system box Class history_edit_demo.zip noticed Visual C of O utput window? This is not at compile time will automatically scroll the window to display information, the library is a similar kind of Wanton. Masked_edit2_demo.zip This is for the time, date, telephone number, IP address, postcode editing box. NumEdit_demo.zip This is a support with e symbols (eg- 12E4), the number of editorial control range_edit_demo.zip This is the system only allows the importation of an established framework of the digital editorial control . If in the process you need to limit input range (0-255), then this category could really help your very busy. Smartedit_demo.zip SmartEdit control, rolling slider and accurate determina
Platform: |
Size: 327680 |
Author: 田力 |
Hits:
Description: int PosFromChar(UINT nChar) // 通过指定的字符获得其x轴的位置
int CharFromPos(int nPosX) // 通过给定的x轴的位置获得相应的字符
void CutString() // 剪切字符串
void PasteString() // 粘贴字符串
void CopyString() // 拷贝字符串
void MakeBKGround(CDC *pDC, COLORREF clrBegin, COLORREF clrEnd, CRect rect) // 生成窗口背景
CString m_strEdit // 当前包含的文本。
CString m_strSelect // 当前选择的文本。
CPoint m_ptCursor // 当前光标的位置。
CPoint m_ptTxtBegin // 文本的起始位置。
CPoint m_ptFirst // 鼠标左键按下时的第一点位置。
CPoint m_ptSecond // 鼠标当前的位置。
int m_nCharPos // 当前光标处于第几个字符的后面,从0开始计数。
int m_nShowChar // 在编辑框中第一个显示的字符,从0开始计数。
int m_nMaxShowChars // 在编辑框中一次最多显示的字符数量 。
int m_nSelectBegin // 选择的字符的起始位置。
int m_nSelectEnd // 选择的字符的终止位置。
CBitmap m_BmpBK // 背景图片。
CFont m_TxtFont // 文本的字体。
TEXTMETRIC m_tm // 文本字体的信息。
Platform: |
Size: 37888 |
Author: yang |
Hits:
Description: 一个具有丰富功能的对话框,它包含两个编辑框,一个编辑框可以输入文本,此文本可以在另一个编辑框中方便得显示出来-Rich functionality of a dialog box, which contains two edit box, an edit box to input text, this text can be in another edit box was shown to facilitate
Platform: |
Size: 27648 |
Author: 邓辉 |
Hits:
Description: 在指定位置创建文本文件,接着打开该文档,通过编辑框输入文字,点击写入,就可以把刚才的文字写入文件中,点击读取,在另一编辑框显示文件的内容-In the specified location to create a text file, then open the document, through the edit box to enter text, click on write, you can just write the text file, click to read, in another edit box shows the contents of the documents
Platform: |
Size: 246784 |
Author: yongfu |
Hits:
Description: 程序Style的功能简介
1、修改窗口的光标、图标和背景
功能:模拟动画图标
2、工具栏
功能1:在工具栏上添加和删除按钮
功能2:创建自定义的工具栏,并实现工具栏在原位置显示和隐藏(此功能由查看菜单下的新工具菜单项完成)
3、状态栏
功能1:按需要设置状态栏窗格的大小
功能2:在状态栏窗格上显示系统当前时间,并让时间动起来
4、进度栏
功能1:在状态栏的窗格中创建进度栏
功能2:正确设置、显示进度栏的位置,并让进度栏动起来
5、在状态栏上显示鼠标当前位置
功能:用四种方法实现
6、启动画面
7、在CDialogBar上放置一个编辑框、一个列表框,改变CDialogBar的背景色,改变编辑框的背景色和文本颜色,并在列表框中放置一副图片。
注意:在该程序所实现的功能中,大多都使用了多种方式来实现所需功能,其中多种方式都在注释里。
-style
Platform: |
Size: 7378944 |
Author: cjshang |
Hits:
Description: 实现编辑框的多种操作,包括:如何将编辑框中输入的字符转换为大写(小写);如何限制编辑框输入文本的长度;如何限制编辑框只能输入数字;如何在编辑框中实现多行显示;如何在编辑框中追加文本。-Edit box to achieve a variety of actions, including: how to edit box, enter the characters converted to uppercase (lowercase) how to limit the length of the text edit box how to limit the edit box can only enter numbers how the multi-edit box line display how to append text in the edit box.
Platform: |
Size: 67584 |
Author: 李红亮 |
Hits:
Description: 使用单行、多行编辑框输入显示文本 框架编辑 文本输入,-Use of single, multi-line edit box to enter text
Platform: |
Size: 32768 |
Author: 浩浩 |
Hits:
Description: 使用单行、多行编辑框输入显示文本\BaseEditBox,很不错的vc源码,希望能对大家有所帮助-Use of single, multi-line edit box to enter text \ BaseEditBox, very good vc source code, I hope you can help
Platform: |
Size: 29696 |
Author: 巫志发 |
Hits:
Description: vc使用Rich Edit编辑框格式化显示文本\BaseRichEdit,很不错的vc源码,希望能对大家有所帮助-vc formatted using the Rich Edit text edit box \ BaseRichEdit, very good vc source code, I hope you can help
Platform: |
Size: 31744 |
Author: 柯明娟 |
Hits:
Description: 使用单行、多行编辑框输入显示文本\BaseEditBox\BaseEditBox.rar,很不错的vc源码,希望对大家有所帮助。-Use of single, multi-line edit box to enter text \ BaseEditBox \ BaseEditBox.rar, very good vc source code, we want to help.
Platform: |
Size: 29696 |
Author: |
Hits:
Description: 使用Rich Edit编辑框格式化显示文本\BaseRichEdit\BaseRichEdit.rar,很不错的vc源码,希望对大家有所帮助。-Formatted using Rich Edit text edit box \ BaseRichEdit \ BaseRichEdit.rar, very good vc source, we want to help.
Platform: |
Size: 31744 |
Author: 吴勇辉 |
Hits:
Description: 代码是用来实现使用单行、多行编辑框输入显示文本的vc源码,好用,小应用,有助于初学者的学习-The code is used to using a single line, multi-line edit box to enter the display text vc source, easy to use, small application helps beginners learn
Platform: |
Size: 25600 |
Author: 何素文 |
Hits:
Description: 使用Rich Edit编辑框格式化显示文本,实现类似word 文字对齐,居中,放大,加粗等功能-Use Rich Edit Edit box displays text format, to realize the similar word text alignment, center, amplification, the function such as bold
Platform: |
Size: 9268224 |
Author: 钱逸文 |
Hits:
Description: 使用单行、多行编辑框输入显示文本,VC++精选编程学习源码,很好的参考资料。-Implementation of VC++ animation button, select learning programming source code, a good reference.
Platform: |
Size: 12288 |
Author: 什锦豆腐 |
Hits:
Description: 使用Rich Edit编辑框格式化显示文本,VC++精选编程学习源码,很好的参考资料。-Use the Rich Edit format to display the text edit box, VC++ select learning programming source code, a good reference.
Platform: |
Size: 13312 |
Author: 桂花翅子 |
Hits:
Description: 使用Rich Edit编辑框格式化显示文本,VC++精选编程学习源码,很好的参考资料。-Use Rich Edit edit box to display formatted text, VC++ selection of programming learning source, a good reference.
Platform: |
Size: 548864 |
Author: 林弘 |
Hits:
Description: 使用单行、多行编辑框输入显示文本的实例代码,非常实用-Use a single line, multi-line edit box to enter the display code of the text, very practical
Platform: |
Size: 37888 |
Author: maomao |
Hits: