原创 duilib滾動條能翻行、能翻頁,但不能拖動的解決方法

導致這個問題可能會有不同的原因,本文講的是我遇到的一種情況,所以如果你遇到的問題跟我是同一個原因,用這個方法能解決;如果不是,那就要再找別的原因了。 原因:duilib的滾動條拖動使用了WM_TIMER。所以如果處理了WM_TIMER的消

原创 IE查看源代碼不工作的11種解決辦法

IE查看源代碼不工作的11種解決辦法: 第一類情況是,當瀏覽器的緩存被裝滿時,“查看源文件”功能將失效。如果你想確定自己的電腦是否屬於這類情況,可以點擊IE的“工具”菜單中的“Internet選項” “常規”標籤,然後,再點擊“Inter

原创 843. Guess the Word

Hard 435458Add to ListShare This problem is an interactive problem new to the LeetCode platform. We are given a word li

原创 127. Word Ladder

Given two words (beginWord and endWord), and a dictionary's word list, find the length of shortest transformation seque

原创 用GDB調試程序

說明 從CSDN的網站上找到的GDB使用說明。 原文標題:用GDB調試程序 作者:haoel (QQ是:753640,MSN是: [email protected]) 關鍵字:gdb 調試 c c++ gun 這篇文章非常好,所以轉載了下

原创 title

content

原创 Three Ways to Inject Your Code into Another Process

原文鏈接:https://www.codeproject.com/Articles/4610/Three-Ways-to-Inject-Your-Code-into-Another-Proces

原创 Reference for java PriorityQueue implement with Min Heap & Max Heap

https://www.techiedelight.com/introduction-priority-queues-using-binary-heaps/ https://www.techiedelight.com/min-heap-m

原创 HtmlElement.RaiseEvent 發生ArgumentException

HtmlElement.RaiseEvent("click")不工作,發生ArgumentException。 解決方法,改爲:HtmlElement.InvokeMember("click")

原创 c#裏,WebBrowser實現不加載圖片等控制

這個點子來自Jiang Sheng蔣大拿:http://stackoverflow.com/questions/2048424/disable-image-loading-from-webbrowser-control-before-t

原创 cmd.exe裏,path裏包含的環境變量沒有展開的解決方法

問題現象:Windows、System32等系統目錄裏命令,無法通過Path搜索路徑來執行。查看Path環境變量結果如下: D:\>echo %Path% %SystemRoot%;%SystemRoot%\System32;......

原创 A Better solution for the Windows 7 SP1 ADO GUID changes

http://blogs.msdn.com/b/psssql/archive/2011/10/03/yes-we-made-a-mistake-and-are-finally-going-to-fix-it.aspx   UPDATE:

原创 PHP json_decode中文轉義的問題

默認情況下PHP的 json_decode 方法會把特殊字符進行轉義,還會把中文轉爲Unicode編碼形式。在有些情況下不希望進行這種轉義。 對於PHP5.4+版本,json_decode函數第二個參數,可以用來限制轉義範圍。要限制中文,

原创 運行java程序

Hello.java package demo; import java.util.ArrayList; import java.util.List; import java.util.Map; public class Hello

原创 C# HtmlElement的GetAttribute("class") return ""

如題所述的問題,解決辦法:用GetAttribute("className")代替GetAttribute("class")