2013年8月29日 星期四

Edit Rows in a DataTable

引用來源:MSDN How to: Edit Rows in a DataTable
--
一般都是 新增/刪除
使用陣列方式可更新資料

 Dim customersRow As NorthwindDataSet.CustomersRow
customersRow = NorthwindDataSet1.Customers.FindByCustomerID("ALFKI")

customersRow.CompanyName = "Updated Company Name"
customersRow.City = "Seattle"


--
'更新 
Dim customerRow() As Data.DataRow  '須使用陣列
customerRow = DataSet1.Tables("Customers").Select("CustomerID = 'ALFKI'")

customerRow(0)("CompanyName") = "Updated Company Name"
customerRow(0)("City") = "Seattle" 

2013年8月27日 星期二

ListView checkbox 勾選即時反應控制


ListView 的勾選即時處理事件:  ListView_ItemCheck

在這有兩個參數:
e.NewValue  -->0 取消勾選,1 已勾選
e.Index           -->row 所在列

利用這事件和參數;即可處理即時反應訊息..等

2013年8月16日 星期五

ASP程式,網頁特效 超多範例唷

ASP程式,網頁特效

SELECT 子查詢範例

引用來源
參考2
--


--範例A

SELECT

    Product_ID,

    Product_Name,

    (SELECT count(*) FROM Order_List) AS NUMBER_OF_ORDER

FROM Product_List

ORDER BY Product_Price DESC



--範例B

SELECT A.*

FROM

(

    SELECT Product_ID, Product_Price FROM Product_List

) AS A

WHERE

    A.Product_Price > 500

ORDER BY A.Product_Price DESC



--範例C

SELECT

    Product_ID,

    Product_Name

FROM Product_List

WHERE Product_ID IN

(

    SELECT

        Product_ID

    FROM

        Order_List

    GROUP BY

        Product_ID

    HAVING count(*) >=2

)

2013年8月13日 星期二

Right or Left Click Context Menu Using jQuery Demo

請參考來源
--

jQuery UI 介紹

請參考來源:jQuery UI 介紹

取得專案內所有表單名稱

引用來源
--

Imports System.Reflection

Public Class Form1

    Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click
        Dim a As Assembly = Assembly.GetExecutingAssembly       '取得目前組件
        For Each t As Type In a.GetTypes                        '找尋組件內所有類別型態
            If t.IsSubclassOf(GetType(Form)) Then                 '如果類別是繼承自Form的話
                TextBox1.AppendText(t.ToString & vbNewLine)     '列出該類別資訊
            End If
        Next
    End Sub
End Class

2013年8月3日 星期六

skipWHQL.exe 吃 cpu 問題

這幾天覺很奇怪,NB 散熱口怎老是熱呼呼..
直到今天真的受不了,查了一下工作管理員 ...
竟CPU 一直卡在 60%...難怪一直高速運轉散熱
發現 skipWHQL.exe 就執行2次,一個就吃到CPU 25% ....
真是"爛" ... 直接中斷結束掉了... cpu 馬上降下來
若是覺得沒必要,應也可run 或服務拿掉這個 skipWHQL
我暫時採中斷結束..
若光讓 skipWHQL 長期跑下去,很傷NB ....
懶得查 skipWHQL 是OS 的還是哪的....真是爛