Advertisement
1_2002 Custom Controls/ Forms/ Menus #106231

no rectangular window with transparante bmp color

make a no rectangular window with transparante bitmap color same that k-jofol or over skinnable application with 2 api in a Dll.

AI

AI Summary: This codebase represents a historical implementation of the logic described in the metadata. Our preservation engine analyzes the structure to provide context for modern developers.

Source Code
original-source
Upload
email = "lewis@moten.com"
Response.Write "Original value: " & email & "<BR>"
email = StringToHex(email)
Response.Write "Hex value: " & email & "<BR>"
email = HexToString(email)
Response.Write "Back to string value: " & email & "<BR>"
Function StringToHex(ByRef pstrString)
	Dim llngIndex
	Dim llngMaxIndex
	Dim lstrHex
	llngMaxIndex = Len(pstrString)
	For llngIndex = 1 To llngMaxIndex
		lstrHex = lstrHex & Right("0" & Hex(Asc(Mid(pstrString, llngIndex, 1))), 2)
	Next
	StringToHex = lstrHex
End Function
Function HexToString(ByRef pstrHex)
	Dim llngIndex
	Dim llngMaxIndex
	Dim lstrString
	llngMaxIndex = Len(pstrHex)
	For llngIndex = 1 To llngMaxIndex Step 2
		lstrString = lstrString & Chr("&h" & Mid(pstrHex, llngIndex, 2))
	Next
	HexToString = lstrString
End Function
Original Comments (3)
Recovered from Wayback Machine