2017年12月18日 星期一

Xamarin Update not Setup

Xamarin 按了檢查更新 , 也下載了並按[ 安裝 ]  結果完全沒反應 .
還第一次遇到 ...

請依照底下的操作,即可重新下載一次 (也就是將已下載的刪除後,再重新下載一次試試了)
Updates are downloaded but not getting install in visual studio 2015

--
On your windows pc try deleting the contents of "\Users\YourUserName\AppData\Local\MonoDevelop-4.0\Cache\TempDownload" and then check again for updates.
--


---
結果還是沒安裝....=   =
來研究一下問題了 , 打開上面的下載位置後 ; 發現是4個xml 但卻只有3個 msi 安裝檔
難怪不會執行安裝 , 只時就得來手動處理了
各別打開,來檢查到底是缺少哪一個安裝檔msi
---
依我這狀況是少了
201185fb-fefe-4996-bdfe-4b6ac311a73b 這個msi 檔, 將xml 檔打開 裡面會有下載點
手動下載後 , 再來全部 4 個 msi 檔都執行 ; 就可以手動更新完成了






在 Mac OS 上安裝跨平台開發神器 Xamarin

在 Mac OS 上安裝跨平台開發神器 Xamarin
---

Xamarin 開發人員中心(簡體版)

developer.xamarin.com for zh-cn
---
得好好學了

2017年12月2日 星期六

水耕 - 魚菜共生(2)

上次的容器不好,觀察了2週後;決定放棄那樣的容器 , 這次又改良菜的容器!!
---



2017年11月23日 星期四

水耕 - 魚菜共生(1)

水耕-初體驗
這是:水映菜苗 , 由種子到發牙約 1 週時間 !
圖1:
有發現,完全覆蓋在培養土內的話,發牙時間1週 ; 未完全覆蓋則須較久,目前有的還未發牙!
圖2:
移植水映菜苗至魚缸邊並掛著! 採用白鐵壓製掛勾!
剩下就慢慢記錄了! 須時間....
--


2017年11月18日 星期六

服裝租借 - 送洗作業

應客戶需求 , 服裝租借系統 , 加入新功能 : 送洗作業  , 並採用收據方式列印 (出單機方式出單 )
---


2017年11月1日 星期三

vbnet XML 檢查節點

參考來源:Check if a node/element exists in an XML file
---
Dim vDoc As XmlDocument = New XmlDocument
vDoc.Load(pathToXml)
        Dim objTest As XmlElement
        objTest = vDoc.SelectSingleNode("//profileData/friends")
        If Not (objTest Is Nothing) Then
            'The node is present, do nothing
            Dim blank = ""
        Else
            'The node is absent, process code to create it.
            Dim xml = XDocument.Load(pathToXml)
            Dim vbfriends = From friends In xxml.
            vvbfriends(0).Add()
            xml.Save(pathToXml, SaveOptions.None)
        End If