Weil Jimmer's BlogWeil Jimmer's Blog


Flash複製文字按鈕
No Comments

發布:
更新:2017-01-20 19:55:35

經常網頁上用Java Script 複製到剪貼簿,瀏覽器總是拒絕存取,或是不兼容某些瀏覽器,實在很令人厭煩。現在,本團隊推出Flash複製按鈕,可以兼容所有瀏覽器。

【使用說明】

參數值:

copy_text=要複製的文字
style=1~8之中的數字

 1-黑色(預設是1)

 2-藍色

 3-綠色

 4-紅色

 5-粉紅

 6-紫色

 7-銀白

 8-黃色

type=1或0

 1為開啟Unicode的解譯

 0為關閉Unicode的解譯(預設是關閉)

Example:

<object type="application/x-shockwave-flash" data="WBF_cb.swf?type=1&style=8" width="100" height="50" >
<param name="flashvars" value="copy_text=36889,26159,25991,23383,35079,35069,30340,28204,35430,65281">
<param name="wmode" value="transparent">
</object>
<object type="application/x-shockwave-flash" data="WBF_cb.swf?copy_text=123" width="100" height="50" >
<param name="wmode" value="transparent">
</object>

下載地址【一】:https://url.weils.net/a

下載地址【二】:http://cht.tw/h/exipz

產品頁面:http://web.wbftw.org/product/flashfuzhiwenzianniu

By Weil Jimmer


This entry was posted in General, Flash By Weil Jimmer.

雙重緩衝DataGridView
No Comments

發布:2015-04-26 12:54:37

    Function DoubleBufferedx(ByVal dgv As DataGridView, ByVal setting As Boolean)
        Dim dgvType As Type = dgv.GetType()
        Dim pi As System.Reflection.PropertyInfo = dgvType.GetProperty("DoubleBuffered", System.Reflection.BindingFlags.Instance Or System.Reflection.BindingFlags.NonPublic)
        pi.SetValue(dgv, setting, Nothing)
        Return True
    End Function

僅此作為筆記。


This entry was posted in Functions, VB.NET By Weil Jimmer.

當重新調整表單大小時「有效」降低閃爍 C# VB.Net
No Comments

發布:
更新:2015-04-26 12:43:59

從前,總是使用雙重緩衝,但是這方法不管用,閃爍還是嚴重!自從stackoverflow找到一個很棒的方法後!非常有效!僅此作為筆記。

protected override CreateParams CreateParams {
  get {
    CreateParams cp = base.CreateParams;
    cp.ExStyle |= 0x02000000;  // Turn on WS_EX_COMPOSITED
    return cp;
  }
}
Protected Overrides ReadOnly Property CreateParams() As CreateParams
    Get
        Dim params As CreateParams = MyBase.CreateParams
        params.ExStyle = params.ExStyle Or &H2000000
        Return params
    End Get
End Property

轉自:http://stackoverflow.com/questions/2612487/how-to-fix-the-flickering-in-user-controls


This entry was posted in General, Functions, VB.NET By Weil Jimmer.

繼續發表心情文
1 Comments

發布:2014-10-12 18:44:08

雖然之前說要完全杜絕,但,不太可能……

憂鬱已經成了家常便飯的事,每天都是一樣。逃不開……

近來,嚴密的監控網站動態,看來……是沒有他人會專心看其他文章的,所以也不必太在乎別人來,因為根本沒有人想看這種文。

之所以如此,也不是完全沒有原因,就算到了段考,我還是沒有心情讀書,我沒有心情讀書了,調適心情的方法只會讓成績繼續往下掉。

我不能讓別人知道我再煩惱什麼,以免別人對我引起反感。我也不可以告訴別人我的心情……又有多少人和我一樣?被課業壓著,被未來的茫然而感到憂鬱。


This entry was posted in Mood By Weil Jimmer.

XMLHTTP Ajax非同步更新資料
No Comments

發布:2014-10-12 18:39:16

最近一直瘋狂寫聊天室,更新一堆有的沒的,發個小筆記。

var http = new XMLHttpRequest("Microsoft.XMLHTTP");
var url_='http://example.com/';

function connect(){
	http.onreadystatechange = function(){
		if (http.readyState==4){
			if (http.status==200){
				//Do Something.
			}else{
				//Connect Failed.
			}
		}
	}
	http.open("GET",url_,true);
	http.send();
}

This entry was posted in HTML, JS, WebHosting By Weil Jimmer.

最前頁 上一頁  9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 /25 頁)下一頁 最終頁

Visitor Count

pop
nonenonenone

Note

支持網路中立性.
Support Net Neutrality.

Celebration for General Data Protection Regulation.

隨時注意自己的CPU使用狀態,有不少網站會沒有徵求同意就用您的電腦挖礦。

不用 Line 改用 Telegram。跟上最新潮流。

支持臺灣實施無條件基本收入

歡迎前來本站。

Words Quiz


Search

Music

Counter

3861
天前是本網站的生日

Republic Of China
The strong do what they can and the weak suffer what they must.

Privacy is your right and ability to be yourself and express yourself without the fear that someone is looking over your shoulder and that you might be punished for being yourself, whatever that may be.

It is quality rather than quantity that matters.

I WANT Internet Freedom.

Reality made most of people lost their childishness.

Justice,Freedom,Knowledge.

Without music life would be a mistake.

Support/Donate

This site also need a little money to maintain operations, not entirely without any cost in the Internet. Your donations will be the best support and power of the site.
MethodBitcoin Address
bitcoin1NRMVGGpm2T1pmeejisLSEhCXfCefEW9V4
buymeacoffee
Register in linode via invitation link and stay active for three months.Linode

Support The Zeitgeist Movement

The Zeitgeist Movement

The Lie We Live

The Lie We Live

The Questions We Never Ask

The Questions We Never Ask

Man

Man

THE EMPLOYMENT

Man

In The Fall

In The Fall

Facebook is EATING the Internet

Facebook

Categories

Android (7)

Announcement (4)

Arduino (2)

Bash (2)

C (3)

C# (5)

C++ (1)

Experience (42)

Flash (2)

Free (13)

Functions (36)

Games (13)

General (50)

HTML (7)

Java (13)

JS (7)

Mood (24)

Note (28)

Office (1)

PHP (9)

Privacy (4)

Product (12)

Python (4)

Software (11)

The Internet (16)

Tools (14)

VB.NET (8)

WebHosting (7)

Wi-Fi (5)

XML (4)