PB常用技巧 PB常用技巧 PB常用技巧

源代码在线查看: 数据窗口的某几列在其他列横拉时固定不动.txt

软件大小: 876 K
上传用户: dojoy
关键词:
下载地址: 免注册下载 普通下载 VIP

相关代码

				如何能让数据窗口的某几列在其他列横拉时固定不动
				      //////////////////////////////////////////////////////////////// 
				//  功能说明:用于冻结左边的滚动栏 
				//  变更记录: 变更或版本更新的时候 
				//   
				//////////////////////////////////////////////////////////////// 
				int i 
				if pane = 1 then 
				i = integer(this.o b j e c t.datawindow.horizontalscrollposition2) 
				if i < 1 or isnull(i) then return 
				if scrollpos > 0 then 
				this.o b j e c t.datawindow.horizontalScrollPosition = 0 
				end if 
				else 
				i = integer(this.Object.DataWindow.HorizontalScrollSplit) 
				if i < 1 or isnull(i) then return 
				if i > scrollpos then 
				this.o b j e c t.datawindow.horizontalScrollPosition2 = i 
				end if 
				end if			

相关资源