- Jul 10 Wed 2013 19:23
-
vb2010~換台電腦後 找不到.dll模組的錯誤警告 動態/靜態dll
換台電腦後 找不到.dll模組的錯誤警告:
使用Visual C++ 2010 產生win32 dll檔 給vb2010 引用 , 在裝有開發環境visual IDE下跑 可以正常呼叫dll 內的函數
但是把vb2010產生的執行檔和 dll 拿到另一台沒裝 visual IDE 的電腦
無論是xp or win7 都會出現 找不到.dll模組的錯誤警告
除了注意執行檔要跟呼叫的dll放在同目錄下以外
- Jul 10 Wed 2013 00:28
-
vb2010~讀取.csv檔轉成DataTable, IO
Imports System.IO
Imports System.Data
Public Class Form2
Public Function getCSVtoDataTable(ByVal path As String) As DataTable
Dim dt As New DataTable()
- Jul 08 Mon 2013 23:03
-
vb2010~傳一維/二維陣列給C dll使用,傳址呼叫
vb2010~傳"陣列"給C原生dll使用,傳址呼叫使用方法
注:vb 的 二維陣列宣告AA(x,y) 本質上與C 宣告二維陣列 AA[x][y] 是一樣的, 實質上都是連續的串接一維陣列!!
=============
Part A. (由C/C++ 產生dll , 非COM元件型動態dll)
=============
- Apr 30 Tue 2013 23:44
-
這本期刊是不是SSCI期刊
如果你博士拿到了要回台灣找工作,或是現在正在讀研究所,以後想回台灣大學任教,那你一定要知道什麼是SCI和SSCI。台灣高等教育評鑑對SCI、SSCI的重視已經到了個
瘋狂
的境界了。
SCI 是 Science citation index的縮寫,SSCI 是 Social science citation index,所以簡單地說,這兩者就是期刊索引,能收進這兩個索引的期刊代表有一定的學術影響力,這可能也是台灣會為之瘋狂的原因。
要怎麼查一篇期刊是否為SCI或SSCI journal呢?有幾種方式:
- Feb 15 Fri 2013 01:47
-
正式邁入黃大仙新世紀
- Jan 07 Mon 2013 21:11
-
大姊名言
今天位於我後面的小組長跟等級超高的大姊聊天 說了名言被我摘要了起來: "人生就是這樣 老了還是一身病痛 郭台銘有錢又怎麼樣 吃得了餐餐鮑魚大餐嗎"
- Dec 15 Sat 2012 11:39
-
成功嶺第一周習得技能
由於大隊長要求放假要回報一下心得
來報告一下成功嶺第一周習得技能:
1. 過水功 (超大量洗婉)
2. 寫作文掰功 (題目:邁向成功嶺)
3. 罵不入耳功 (你罵你罵 我都有聽到)
- Dec 04 Tue 2012 03:33
-
最後摘要
In this thesis, an innovation for detecting the nonoccupied car parking space proactively on the roadside based on the vehicle video recorder was proposed. The vehicle video recorder was embedded an image recognition function to detect the parking space on the road side while the vehicle is moving along the road. When a nonoccupied parking space is detected, the image and its GPS information are sent to the backend system via wireless communication system for updating the available parking space data on the database. To improve the recognition rate of the vehicle video recorder, the classifier on the backend is retrained periodically based on the received samples from the end users, and then using the retraining result to update the classifier on the vehicle. To encourage the user feedback the positive parking space information to the system for accumulating the training samples, the system is operated with membership and nonmembership. In this research, a bi-block size double hits (BBDH) was proposed. To increase the probability for finding the objects, and resulting to reduce the processing time per frame. The classifier used is a combination of Adaboost and the probabilistic boosting tree algorithms to improve the system’s recognition rate. According to the experimental results shown,the proposed method can improve the detection rate by 3~12% compared to the existed methods. The maximum recognition rate could reach 88% underthe processing rate is 20 frames per second. The figures had shown that the proposed system is suitable for real applications.
- Nov 11 Sun 2012 02:02
-
101學年成大工科系友大會領獎
連續兩年參加工科系友大會領獎 聽一樣的主任致詞 不一樣的系友談話
錢存銀行 人上天堂
夜裡走往圖書館的昏黃大道 不忘前塵 卻看今朝
- Nov 04 Sun 2012 02:48
-
VB2010~強型DataTable, 混合table 後 依時間排序
'----混合table 後 依時間排序---------
Dim Table_mix As New DataTable
'產生強型欄位
Table_mix.Columns.Add("DataTime", System.Type.GetType("System.DateTime")) '0
Table_mix.Columns.Add("AlarmCount", System.Type.GetType("System.Int32")) '1
- Oct 24 Wed 2012 22:46
-
MSSQL~複製來源TABLE 並新增流水號 欄位
複製來源TABLE 並新增 流水號 欄位
Public Shared Sub sqlAction_addflow_column()
'可以先用sqldatasource元件自動產生連線字串 會放在web.config內
'Dim conn_str = "Data Source=JKSERVER-PC;Initial Catalog=SQLALARMLOG;Integrated Security=True"
' Dim conn_str = "Data Source=JKSERVER-PC;Initial Catalog=alarm;Integrated Security=True"
- Oct 24 Wed 2012 22:40
-
MSSQL~update 遠端同步本地端Table修改內容
Public Shared Function sqlAction_CollectAlarm_RowLines(ByRef DatagridviewIn As DataGridView) As List(Of String)
'Dim conn_str = "Data Source=JKSERVER-PC;Initial Catalog=SQLALARMLOG;Integrated Security=True"
Dim conn_str = "Data Source=JKSERVER-PC;Initial Catalog=SQLALARMLOG;Integrated Security=True"
Dim conn1 As New SqlConnection(conn_str)
Dim cmdstr = "SELECT AlarmDateTime, ClearedDateTime, AlarmID ,flow,ST,AlarmRate,ActionRate FROM NEW_ALARM "