iWIN 必須被解散!

Weil Jimmer's BlogWeil Jimmer's Blog


About Weil Jimmer

avatar

Hi! Everyone! My name is Weil Jimmer. This is my personal blog. I'm a webmaster of this site. I hope the site will be popular. Now, Let's go! Enjoy gaining more knowledge.
More Details About Me : https://weils.net/profile.php

Author Archives:Weil Jimmer

Found 137 records. At Page 17.

多檔案字串搜尋替換器

No Comments
-
更新於 2017-01-20 19:51:56

一款搜尋資料夾內符合條件的檔案,進行字串搜索與替換的程式。

可以過濾副檔名與檔案大小(支援 Byte ~ GByte 的單位),及過濾唯讀檔或隱藏檔案,並且可以設定其屬性為正常。

載入目錄後,可以從左上方的等待清單裡面核選要進行搜尋或取代的檔案。再者,可以設定「預設文件編碼」及Bom設定 及 換行符號。

若讀取時發現有檔案頭包含Bom,則採用其Bom之編碼進行解譯,辨認不出時,則用預設文件編碼解譯。被搜尋到的文件將會顯示於左下方列表。

※支援:Big5、GBK、UTF-8、UTF-16(Big)、UTF-16(Little),換行符:CR/LF、CR、LF。

※若進行替換字串時,發現其屬性包含唯讀,無法寫入時,將會自動變更屬性為正常,寫入完成後,再變更回原本的屬性。

2016.04.07 更新 Fixed 過濾欄位無法變更文字

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

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

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

By Weil Jimmer


This entry was posted in Product, Tools By Weil Jimmer.

殭屍生存遊戲

No Comments
-
更新於 2017-01-20 19:54:14

一款殭屍版的回合制戰略遊戲。

遊戲說明:

使用滑鼠左鍵進行槍枝射擊,滑鼠右鍵進行近戰攻擊。

可使用Enter或Q結束回合/天。或使用滑鼠點擊。

可使用WADS移動至黃色區塊。或使用滑鼠點擊。

可使用1234選取生存者。或用滑鼠點擊。

黃色區塊:當前可移動的範圍。

紅色區塊:當前可用近戰武器或槍攻擊的範圍。

紫色區塊:當前可丟擲手榴彈的範圍。(殺傷力3*3格。傷害:20~50。)

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

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

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

By Weil Jimmer


This entry was posted in Games By Weil Jimmer.

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.

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

Visitor Count

pop
nonenonenone

Note

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

飽暖思淫欲,饑寒起盜心。

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

歡迎前來本站。

Words Quiz


Search

Music

Blogging Journey

4278days

since our first blog post.

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
bitcoin1gtuwCjjVVrNUHPGvW6nsuWGxSwygUv4x
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 (52)

Flash (2)

Free (13)

Functions (36)

Games (13)

General (60)

Git (2)

HTML (7)

Java (13)

JS (7)

Mood (24)

NAS (2)

Note (32)

Office (1)

OpenWrt (6)

PHP (9)

Privacy (4)

Product (12)

Python (4)

Software (11)

The Internet (25)

Tools (16)

VB.NET (8)

WebHosting (7)

Wi-Fi (5)

XML (4)