亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频

? 歡迎來到蟲蟲下載站! | ?? 資源下載 ?? 資源專輯 ?? 關于我們
? 蟲蟲下載站

?? ultragridwindowex.htc

?? 具備表頭拖拽、交換列、排序、添加 、修改、刪除、選擇等等功能的。NET GRID
?? HTC
?? 第 1 頁 / 共 2 頁
字號:
				objContentWindow.style.width = cstr(intX) & "px"
			end if
			if instr(.orgDirection, "n") <> 0 then
				intY = cint(.orgHeight - cliY + .orgY)
				intT = cint(.orgTop + cliY - .orgY)
				if intY < 60 then
					intY = 60
					intT = .orgTop + .orgHeight - 60
				end if
				with element.style
					.top = cstr(intT) & "px"
					.height = cstr(intY) & "px"
				end with
				objContentWindow.style.height = cstr(intY - objWindowCaption.offsetHeight - 10) & "px"
			end if
		end with
	else
		if window.event.srcElement is element then
			if windowState = "NORMAL" then
				with objResize
					.orgDirection = getResizeDirection()
					if .orgDirection = "" then
						strCursor = "default"
					else
						strCursor = .orgDirection & "-resize"
					end if
				end with
				element.style.cursor = strCursor
			end if
		end if
	end if
end function

function coolWindowOnSelect
	with window.event
		.cancelBubble = true
		.returnValue = false
	end with
	coolWindowOnSelect = false
end function

sub windowOnResize
	dim h, w
	if menuState then hideMenu
	with element
		h = .offsetHeight - 6
		w = .offsetWidth - 3
	end with
	if windowState = "MAXIMIZED" then
		objCloseButton.style.left = w - objCloseButton.offsetWidth + 1
		objMaxButton.style.left = objCloseButton.offsetLeft - objCloseButton.offsetWidth - 2
		objMinButton.style.left = objMaxButton.offsetLeft - objMaxButton.offsetWidth
		with objContentWindow.style
			.width = w
			.height = h - objWindowCaption.offsetHeight
		end with
	end if
end sub

sub captionImageOnMouseDown
	element.setActive
	with window.event
		if objMenu.style.visibility <> "visible" then
			if .button = 1 then
				showMenu objMenu, .clientX, .clientY
				menuState = true
				.cancelBubble = true
				.returnValue = false
			end if
		else
			menuState = false
		end if
	end with
end sub

sub captionImageOnMouseUp
	if objMenu.style.visibility = "visible" then
		if not menuState then hideMenu
	end if
end sub

sub captionImageOnDoubleClick
	element.style.visibility = "hidden"
end sub

sub captionOnDoubleClick
	if windowType <> "NORMAL" then exit sub
	internalSettingProperties = true
	objWindowState.prevState = windowState
	select case windowState
		case "MINIMIZED"
			windowState = "NORMAL"
		case "MAXIMIZED"
			windowState = "NORMAL"
		case "NORMAL"
			windowState = "MAXIMIZED"
	end select
	setWindowState
	internalSettingProperties = false
end sub

sub captionOnMouseDown
	if menuState then hideMenu
	with window.event
		if .button <> 1 then exit sub
		objDrag.inAction = true
		objDrag.orgX = .clientX - element.style.pixelLeft
		objDrag.orgY = .clientY - element.style.pixelTop
		.cancelBubble = true
		.returnValue = false
	end with
	element.setCapture
	with window.document
		.attachEvent "onmouseup", procRefUp
		.attachEvent "onmousemove", procRefMove
	end with
end sub

sub captionOnMouseUp
	objDrag.inAction = false
	with window.document
		.detachEvent "onmouseup", procRefUp
		.detachEvent "onmousemove", procRefMove
	end with
	element.releaseCapture
end sub

sub captionOnMouseMove
	if windowState = "MAXIMIZED" then exit sub
	with window.event
		if .clientX > 0 and .clientX < element.parentElement.offsetWidth then style.left = .clientX - objDrag.orgX
		if .clientY > 0 and .clientY < element.parentElement.offsetHeight then style.top = .clientY - objDrag.orgY
		.returnValue = false
		.cancelBubble = true
	end with
end sub

sub buttonOnMouseDown
	dim el
	if menuState then hideMenu
	with window.event
		if .button <> 1 then exit sub
		set el = .srcElement
	end with
	if el.tagName = "IMG" then set el = el.parentElement
	showPressed el, el.children(0)
	el.setCapture
	set objCurrentButton = el
	set el = nothing
end sub

sub buttonOnMouseUp
	dim el
	with window.event
		if .button <> 1 then exit sub
		set el = .srcElement
	end with
	if el.tagName = "IMG" then set el = el.parentElement
	if el is objCurrentButton then
		with el
			showRaised el, .children(0)
			objWindowState.prevState = windowState
			if instr(.id, "btnMin") <> 0 then
				internalSettingProperties = true
				if windowState = "MINIMIZED" then windowState = "NORMAL" else windowState = "MINIMIZED"
				internalSettingProperties = false
				setWindowState
			elseif instr(.id, "btnMax") <> 0 then
				internalSettingProperties = true
				if windowState = "MAXIMIZED" then windowState = "NORMAL" else windowState = "MAXIMIZED"
				setWindowState
				internalSettingProperties = false
			elseif instr(.id, "btnClose") <> 0 then
				internalSettingProperties = true
				windowState = "CLOSED"
				setWindowState
				internalSettingProperties = false
			end if
		end with
	else
		showRaised objCurrentButton, objCurrentButton.children(0)
	end if
	objCurrentButton.releaseCapture
	set objCurrentButton = nothing
	set el = nothing
end sub

sub setWindowState
	select case windowState
		case "CLOSED"
			element.style.visibility = "hidden"
			if menuState then hideMenu
			internalSettingProperties = true
			windowState = "NORMAL"
			element.style.border = "2px outset window"
			internalSettingProperties = false
		case "MINIMIZED"
			with element.style
				if objWindowState.prevState <> "MAXIMIZED" then
					objWindowState.orgTop = .top
					objWindowState.orgLeft = .left
					objWindowState.orgHeight = .height
					objWindowState.orgWidth = .width
					objWindowState.orgOffsetHeight = OffsetHeight
					objWindowState.orgOffsetWidth = OffsetWidth
					objWindowState.orgBorder = element.parentElement.style.border
				end if
				.border = "2px outset window"
				.top = parentElement.offsetHeight - (objWindowCaption.offsetheight + 10)
				.left = parentElement.offsetLeft
				.height = objWindowCaption.offsetheight + 8
				.width = 160
			end with
			with objCloseButton
				.style.left = cstr(153 - .offsetWidth) & "px"
			end with
			with objMaxButton
				.children(0).setAttribute "src", imgMaximize
				.title = "Maximize"
				.style.left = cstr(objCloseButton.offsetLeft - objCloseButton.offsetWidth - 2) & "px"
			end with
			with objMinButton
				.children(0).setAttribute "src", imgRestore
				.title = "Restore Window"
				.style.left = cstr(objMaxButton.offsetLeft - objMaxButton.offsetWidth) & "px"
			end with
		case "NORMAL"
			with element.style
				.border = "2px outset window"
				.top = objWindowState.orgTop
				.left = objWindowState.orgLeft
				.height = objWindowState.orgHeight
				.width = objWindowState.orgWidth
				element.parentElement.style.border = objWindowState.orgBorder
			end with
			with objCloseButton
				.style.left = cstr(objWindowState.orgOffsetWidth - 8 - .offsetWidth) & "px"
			end with
			with objMaxButton
				.children(0).setAttribute "src", imgMaximize
				.title = "Maximize"
				.style.left = cstr(objCloseButton.offsetLeft - objCloseButton.offsetWidth - 2) & "px"
			end with
			with objMinButton
				.children(0).setAttribute "src", imgMinimize
				.title = "Minimize"
				.style.left = cstr(objMaxButton.offsetLeft - objMaxButton.offsetWidth) & "px"
			end with
			with objContentWindow
				.style.width = cstr(objWindowState.orgOffsetWidth - 8) & "px"
				.style.height = cstr(objWindowState.orgOffsetHeight - objWindowCaption.offsetHeight - 10) & "px"
			end with
		case "MAXIMIZED"
			with element.style
				if objWindowState.prevState <> "MINIMIZED" then
					objWindowState.orgTop = .top
					objWindowState.orgLeft = .left
					objWindowState.orgHeight = .height
					objWindowState.orgWidth = .width
					objWindowState.orgOffsetHeight = OffsetHeight
					objWindowState.orgOffsetWidth = OffsetWidth
					objWindowState.orgBorder = element.parentElement.style.border
				end if
				element.parentElement.style.border = ""
				.border = ""
				.top = 0
				.left = 0
				.height = "100%"
				.width = "100%"
			end with
			with objMaxButton
				.children(0).setAttribute "src", imgRestore
				.title = "Restore Window"
			end with
			with objMinButton
				.children(0).setAttribute "src", imgMinimize
				.title = "Minimize"
			end with
	end select
end sub

sub showRaised(el, elImage)
	with el.style
		.borderLeft   = "1px solid buttonhighlight"
		.borderRight  = "1px solid threeddarkshadow"
		.borderTop    = "1px solid buttonhighlight"
		.borderBottom = "1px solid threeddarkshadow"
	end with
	with elImage.style
		.borderLeft   = ""
		.borderRight  = "1px solid buttonshadow"
		.borderTop    = ""
		.borderBottom = "1px solid buttonshadow"
	end with
end sub

sub showPressed(el, elImage)
	with el.style
		.borderLeft   = "1px solid threeddarkshadow"
		.borderRight  = "1px solid buttonhighlight"
		.borderTop    = "1px solid threeddarkshadow"
		.borderBottom = "1px solid buttonhighlight"
	end with
	with elImage.style
		.borderLeft   = "1px solid buttonshadow"
		.borderRight  = ""
		.borderTop    = "1px solid buttonshadow"
		.borderBottom = ""
	end with
end sub

function getResizeDirection()
	dim xPos, yPos, offSet, sResult
	offSet = 8
	with window.event
		xPos = .offsetX
		yPos = .offsetY
	end with
	if yPos < offSet then
		sResult = sResult & "n"
	elseif yPos > element.offsetHeight - offSet then
		sResult = sResult & "s"
	end if
	if xPos < offSet then
		sResult = sResult & "w"
	elseif xPos > element.offsetWidth - offSet then
		sResult = sResult & "e"
	end if
	getResizeDirection = sResult
end function

sub showMenu(elMenu, x, y)
	dim intRightEdge
	dim intBottomEdge
	dim intScrollLeft
	dim intScrollTop
	if not elMenu.menuSized then elMenu.sizeMenu
	menuState = true
	with parentElement.document.body
		intRightEdge = .clientWidth - x
		intBottomEdge = .clientHeight - y
		intScrollLeft = .scrollLeft + x
		intScrollTop = .scrollTop + y
	end with
	with elMenu
		if (intRightEdge < .offsetWidth) then
			.style.left = intScrollLeft - .offsetWidth
		else
			.style.left = intScrollLeft
		end if
		if (intBottomEdge < .offsetHeight) then
			.style.top = intScrollTop - .offsetHeight
		else
			.style.top = intScrollTop
		end if
		.style.zIndex = 50
		.filters.blendTrans.apply()
		.style.visibility = "visible"
		.filters.blendTrans.play()
	end with
	window.document.attachEvent "onmousedown", procRef
	on error resume next
	set objContentWindow.contentWindow.objCoolWindow = element
	if windowType = "NORMAL" then
		select case windowState
			case "MINIMIZED"
				with objMenu
					.children(0).enabled = true
					.children(3).enabled = false
					.children(4).enabled = true
				end with
			case "NORMAL"
				with objMenu
					.children(0).enabled = false
					.children(3).enabled = true
					.children(4).enabled = true
				end with
			case "MAXIMIZED"
				with objMenu
					.children(0).enabled = true
					.children(3).enabled = true
					.children(4).enabled = false
				end with
		end select
	end if
end sub

sub hideMenu
	if objContentWindow is nothing or objMenu is nothing then exit sub
	window.document.detachEvent "onmousedown", procRef
	on error resume next
	set objContentWindow.contentWindow.objCoolWindow = nothing
	objMenu.style.visibility = "hidden"
	menuState = false
end sub

sub coolWindowExPropertyChange
	if internalSettingProperties then exit sub
	select case ucase(window.event.propertyName)
		case "WINDOWSTATE"
			setWindowState
		case "SRC"
			objContentWindow.setAttribute "src", element.src
		case "LEFT", "TOP", "WIDTH", "HEIGHT"
			dim capWidth, capHeight, capTop, btnWidth, btnHeight, imgHeight, l, t
			if objResize.inAction then exit sub
			if objDrag.inAction then exit sub
			if windowState = "MAXIMIZED" then exit sub
			with element
				.style.left = left
				.style.top = top
				.style.width = width
				.style.height = height
			end with
			with objWindowCaption
				capWidth = .offsetWidth
				capHeight = .offsetHeight
				capTop = .offsetTop
			end with
			with objCloseButton
				btnWidth = .offsetWidth
				btnHeight = .offsetHeight
			end with
			with objCaptionImage
				imgHeight = objCaptionImage.offsetHeight
				t = (capHeight \ 2) - (imgHeight \ 2) + capTop
				.style.top = t
			end with
			t = (capHeight \ 2) - (btnHeight \ 2) + capTop
			with objCloseButton
				.style.top = t
				.style.left = capWidth - btnWidth + 1
				l = .offsetLeft - btnWidth - 2
			end with
			with objMaxButton
				.style.top = t
				.style.left = l
			end with
			with objMinButton
				.style.top = t
				.style.left = l - btnWidth
			end with
			with objContentWindow
				.style.width = capWidth
				.style.height = element.offsetHeight - capHeight - 10
			end with
	end select
end sub

</script>

</PUBLIC:COMPONENT>

?? 快捷鍵說明

復制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
国产欧美日韩精品一区| 日韩久久久久久| 一区二区三区在线看| 日本韩国一区二区三区| 亚洲电影在线播放| 91精品国产一区二区三区| 麻豆91免费观看| 久久久99久久| av动漫一区二区| 亚洲一区二区三区四区在线观看 | 欧美日韩在线播放三区四区| 亚洲一区二区三区四区在线免费观看| 欧美性猛交xxxxxxxx| 青青草国产成人av片免费| 久久综合色播五月| 成人的网站免费观看| 亚洲18色成人| 26uuu精品一区二区在线观看| 波多野结衣中文字幕一区| 一区二区三区四区亚洲| 欧美一级片免费看| 成人晚上爱看视频| 亚洲综合免费观看高清完整版在线| 欧美精品xxxxbbbb| 丁香婷婷综合网| 午夜伊人狠狠久久| 欧美高清在线一区二区| 欧美日韩另类一区| 国产老肥熟一区二区三区| 一区二区三区日韩在线观看| 欧美电影免费观看高清完整版| av一本久道久久综合久久鬼色| 亚洲成人精品一区| 国产欧美一区二区精品仙草咪| 欧美亚洲免费在线一区| 高清不卡一区二区| 蜜臀国产一区二区三区在线播放| 国产精品二三区| 亚洲精品一区二区三区99| 欧美性感一区二区三区| 国产激情精品久久久第一区二区| 亚洲图片欧美视频| 国产精品久久久久7777按摩| 91精品国产91综合久久蜜臀| 色综合网站在线| 国产高清在线观看免费不卡| 日本不卡一二三区黄网| 亚洲乱码日产精品bd| 亚洲精品在线观看网站| 91精品国产综合久久福利| 色久优优欧美色久优优| 国产iv一区二区三区| 久久99久久久久| 亚洲亚洲人成综合网络| 亚洲欧洲色图综合| 欧美韩日一区二区三区四区| 69久久99精品久久久久婷婷| 日本韩国一区二区三区| 91亚洲精华国产精华精华液| 国产成人免费视频网站 | 国产福利精品一区| 日本va欧美va精品| 五月天国产精品| 亚洲免费视频中文字幕| 国产精品毛片久久久久久 | 国产精品三级av| 久久婷婷国产综合国色天香| 欧美精品成人一区二区三区四区| 欧美性生活大片视频| 91福利在线导航| 欧美亚洲精品一区| 在线观看成人小视频| 色综合久久综合| 91美女片黄在线观看91美女| 99久久久久免费精品国产| 成人av在线观| 99视频热这里只有精品免费| 99视频在线精品| 色婷婷一区二区三区四区| 99精品在线观看视频| av资源网一区| 91久久线看在观草草青青| 色婷婷国产精品| 欧美视频你懂的| 欧美精品粉嫩高潮一区二区| 欧美一区二区三区免费在线看| 欧美肥妇free| 久久综合中文字幕| 亚洲国产精品精华液ab| 亚洲老妇xxxxxx| 亚洲444eee在线观看| 青青草97国产精品免费观看无弹窗版| 日韩高清在线观看| 韩国成人在线视频| 粗大黑人巨茎大战欧美成人| av激情综合网| 911精品国产一区二区在线| 日韩免费高清av| 久久精品亚洲乱码伦伦中文| 国产精品久久久久永久免费观看| 亚洲丝袜精品丝袜在线| 亚洲一区二区综合| 久久精品av麻豆的观看方式| 国产精品911| 色噜噜狠狠色综合中国| 欧美高清你懂得| 久久精品视频网| 亚洲精品日产精品乱码不卡| 日韩国产欧美一区二区三区| 国产在线精品一区在线观看麻豆| 成人性生交大片免费看视频在线| 色噜噜狠狠成人中文综合| 日韩三级免费观看| 亚洲国产精品t66y| 午夜日韩在线观看| 国产成人h网站| 欧美日韩国产在线观看| 久久香蕉国产线看观看99| 亚洲欧洲日本在线| 蜜桃久久久久久久| 91亚洲永久精品| 精品国产乱码久久久久久闺蜜 | 最新国产の精品合集bt伙计| 婷婷夜色潮精品综合在线| 国产成人免费视频网站 | 99久久伊人精品| 欧美videos大乳护士334| 最新国产成人在线观看| 精品在线播放免费| 91极品视觉盛宴| 国产欧美日产一区| 免费欧美在线视频| 色婷婷综合久色| 久久久www成人免费无遮挡大片| 亚洲一区二区中文在线| 成人免费视频网站在线观看| 日韩你懂的电影在线观看| 亚洲美女偷拍久久| 高清成人在线观看| 精品少妇一区二区三区| 亚洲成人免费在线观看| 91一区二区在线观看| 国产亚洲成年网址在线观看| 视频一区二区中文字幕| 91免费在线视频观看| 亚洲国产精品高清| 精品一区二区三区av| 欧美日产国产精品| 亚洲自拍偷拍欧美| 97se亚洲国产综合自在线不卡 | 91麻豆免费在线观看| 国产欧美精品区一区二区三区| 日韩avvvv在线播放| 欧美日韩亚洲综合在线 欧美亚洲特黄一级 | 亚洲国产欧美一区二区三区丁香婷| 成人免费观看视频| 日本一区二区在线不卡| 国产成人精品影视| 久久久不卡影院| 国产传媒一区在线| 国产午夜精品美女毛片视频| 精品一区二区三区不卡| 精品久久久久久久人人人人传媒 | 中文字幕av一区二区三区免费看| 久久成人免费网| 精品久久久久久久人人人人传媒| 天堂成人免费av电影一区| 欧美性色aⅴ视频一区日韩精品| 亚洲精品福利视频网站| 色呦呦一区二区三区| 亚洲精品乱码久久久久久黑人| www.日本不卡| 亚洲欧美色图小说| 91玉足脚交白嫩脚丫在线播放| 成人欧美一区二区三区| 91视频国产观看| 亚洲一区在线视频| 这里只有精品视频在线观看| 美女诱惑一区二区| 精品国产91亚洲一区二区三区婷婷| 国内精品伊人久久久久av影院 | 麻豆免费看一区二区三区| 欧美本精品男人aⅴ天堂| 国产一区二区三区| 中文字幕欧美日韩一区| 99精品视频中文字幕| 亚洲电影一级黄| 日韩一级完整毛片| 国产精品18久久久久久久网站| 国产欧美日韩视频在线观看| av福利精品导航| 五月婷婷另类国产| 精品国产青草久久久久福利| 国产传媒欧美日韩成人| 亚洲精品视频观看| 日韩美女视频在线| www.欧美.com| 五月综合激情婷婷六月色窝| 26uuu精品一区二区| 91美女片黄在线观看91美女|