搜索资源列表
pb9(topwiz)
- 1。bitmap: 捕捉窗口或控件的图象,保存为bmp文件。(主要调用gdi32函数) 2。ftpedit:实现ftp客户端功能。(调用wininet.dll) 3。griddemo:在dw列标题上显示指明排序方向的箭头(通过动态创建计算域实现) 根据列内容自动调整列宽度(使用GetTextExtentPoint32()) 4。history:具有自动完成和历史记忆功能的下拉框。(在注册表中保存历史) 5。icontray:在系统托盘显示图标。支持弹出菜单、热键激活。
GDALTest
- 利用qt和gdal基于对话框格式读取并显示tif等其他格式遥感影像。-Qt and use gdal to read and display dialog-based format to other formats, such as remote sensing images tif.
curlydirecfion
- 用内嵌IE打开各种文件进行虚拟打印来转换TIF,先要安装SmartPrinter-With embedded IE open various files to convert the virtual print TIF, first to install SmartPrinter
PB DataWindow 38个技巧
- PB DataWindow 38个技巧.txt 1. 使DataWindow列只能追加不能修改 如何使DataWindow中的数据只能追加新记录而不能修改,利用 Column 的 Protect 属性可以很方便的做到这一点,方法如下: 将每一列的 Protect 属性设置为: If( IsRowNew(), 0, 1) ) 在 Powerscr ipt 中可以动态修改 Protect 属性: dw_1.Modify("column_name_here.Protect='1~