2015年7月15日 星期三

從文字檔讀取(Visual Basic)

程式碼:從文字檔讀取 (Visual Basic)

Visual Studio .NET 2003

這個範例使用 StreamReader 類別的 ReadToEnd 方法,將文字檔的內容讀入字串。

範例

Dim file As New System.IO.StreamReader("c:\test.txt")
Dim words As String = file.ReadToEnd()
file.Close()



資料來源  
https://msdn.microsoft.com/zh-tw/library/cc464082(v=vs.71).aspx

生小孩 黃道 吉時網

http://www.huangli.cc/

2015年6月10日 星期三

How to: Upload a File in Visual Basic

How to: Upload a File in Visual Basic

Visual Studio 2013
The UploadFile method can be used to upload a file and store it to a remote location. If the ShowUI parameter is set to True, a dialog box is displayed that shows the progress of the download and allows users to cancel the operation.

To upload a file

  • Use the UploadFile method to upload a file, specifying the source file's location and the target directory location as a string or URI (Uniform Resource Identifier).This example uploads the file Order.txt tohttp://www.cohowinery.com/uploads.aspx.
    My.Computer.Network.UploadFile(
      "C:\My Documents\Order.txt",
      "http://www.cohowinery.com/upload.aspx")
    

To upload a file and show the progress of the operation

  • Use the UploadFile method to upload a file, specifying the source file's location and the target directory location as a string or URI. This example uploads the file Order.txt tohttp://www.cohowinery.com/uploads.aspx without supplying a user name or password, shows the progress of the upload, and has a time-out interval of 500 milliseconds.
    My.Computer.Network.UploadFile(
      "C:\My Documents\Order.txt",
      "http://www.cohowinery.com/upload.aspx", "", "", True, 500)
    

To upload a file, supplying a user name and password

  • Use the UploadFile method to upload a file, specifying the source file's location and the target directory location as a string or URI, and specifying the user name and the password. This example uploads the fileOrder.txt to http://www.cohowinery.com/uploads.aspx, supplying the user name anonymous and a blank password.
    My.Computer.Network.UploadFile(
      "C:\My Documents\Order.txt",
      "http://www.cohowinery.com/upload.aspx", "anonymous", "")
    

The following conditions may throw an exception:

2015年4月28日 星期二

IPCAM 範例 佔存

http://www.camera-sdk.com/p_37-how-to-connect-to-an-onvif-camera-and-display-the-image-in-c-onvif.html

2015年4月23日 星期四

載入氣象資料

http://www.todroid.com/creating-a-weather-app-in-android-studio/
http://www.survivingwithandroid.com/2014/05/how-to-develop-android-weather-app.html
功能概述

可以抓取當地氣象
目前沒有測試
先放這  晚點再來

用YAHOO 氣象API
http://www.survivingwithandroid.com/2014/02/android-weather-app-using-yahoo-provider.html

設計自己的按鈕外觀



還沒開始測試
先把找到資料放在這裡

http://fecbob.pixnet.net/blog/post/43004092-%E3%80%90android%E3%80%91%E8%A8%AD%E8%A8%88%E8%87%AA%E5%B7%B1%E7%9A%84%E6%8C%89%E9%88%95%E5%A4%96%E8%A7%80

限制應用程式只能直立,禁止橫向

限制應用程式只能直立,禁止橫向

setRequestedOrientation( ActivityInfo.SCREEN_ORIENTATION_PORTRAIT );
or 


AndroidManifest.xml:

在 <activity  裡面加上

android:screenOrientation="portrait" (指定為直向)    

<!--參數為 landscape為橫向 portrait為縱向 nosensor為關閉重力感應器-->



<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
    package="com.example.ack.test2" >

    <application
        android:allowBackup="true"
        android:icon="@mipmap/ic_launcher"
        android:label="@string/app_name"
        android:theme="@style/AppTheme">


        <activity
            android:name=".MainActivity"
            android:label="@string/app_name" >
            <!--限制螢幕為直向 str-->
            android:screenOrientation="portrait"
            <!--參數為 landscape為橫向 portrait為縱向 nosensor為關閉重力感應器-->
            <!--限制螢幕為直向 end-->
            <intent-filter>
                <action android:name="android.intent.action.MAIN" />

                <category android:name="android.intent.category.LAUNCHER" />
            </intent-filter>
        </activity>
    </application>


</manifest>





android:configChanges="keyboard|keyboardHidden|orientation" 
(告訴系統,我要自己處理轉向問題)   需要在 Manifest.xml 中加上底下的敘述。

android 一些教學 資料

Android


http://www.raywenderlich.com/78576/android-tutorial-for-beginners-part-2

http://blog.csdn.net/ryantang03/article/details/9237643

Global Caché


http://www.automatedhome.co.uk/reviews/review-ip-control-of-your-ir-gear-with-global-cache-itach-ip2ir.html

如何在Android上繪出折線圖、條狀圖、圓餅圖

在網路上看到的
會不見

先記在這裡

晚點再來測試



2015年4月21日 星期二

安裝 Android Studio

請連結  http://developer.android.com/sdk/installing/index.html
下載
 

載完就開始安裝 
我是都下一步 下一步
 
我選預設 因為我甚麼都沒裝
 
我答應~~~

 
我答應~~~
 

還是預設
 
 
我先選2G 現在的智慧型手持式裝置 也差不多
 
 
依然預設
 

安裝瞜   1%   2% ........

 
 
啟動畫面沒抓
 
 
安裝完畢
 
現在的開發工具 越來越人性化了



第一次啟動 Android Studio 就錯誤

一啟動就錯誤
 (我發現原來是我的網路有問題 無法連線)

發現 SDK 沒裝

所以 找了一下

其實 他們有統包案裝檔
進入 http://developer.android.com/sdk/installing/index.html








全部的安裝檔

網路復原 自動下載 SDK

安裝完畢


終於看到 畫面了

2015年4月17日 星期五

異機備援 修改

1.先進入  ect/dev 找到新硬碟資料夾
2.修改

  進入 ect/
  編輯 fstab 檔案
   更改 硬碟序號
ata-STXXXXX-

修改方式 vi fstab

fstab 存放路徑   ect/ 下面


vi 指令

i 修改
esc 離開修改模式

w 存檔
q 離開
q! 不存檔 離開

===============
確認系統開機錯誤  指令如下 確認錯誤點
journalctl -b



linux 電源管理 語法

电源管理

安装 polkit 后才可以一般用户身份使用电源管理。
如果你正登录在一个本地的systemd-logind用户会话,且当前没有其它活动的会话,那么以下命令无需root权限即可执行。否则(例如,当前有另一个用户登录在某个tty),systemd 将会自动请求输入root密码。
重启:
$ systemctl reboot
退出系统并停止电源:
$ systemctl poweroff
待机:
$ systemctl suspend
休眠:
$ systemctl hibernate
混合休眠模式(同时休眠到硬盘并待机):
$ systemctl hybrid-sleep

LINUX 會忘記就放這

最近又遇到 LINUX 作業系統  
好久沒用
連語法都忘記了
所以 有把會忘記的東西都在這裡搂


歡迎光臨鳥哥的 Linux 私房菜
這個網頁很詳細
http://linux.vbird.org/

2015年4月10日 星期五

批次檔 實現延遲 指令

在批次檔(*.bat)中內建並沒有 SLEEP 命令,當你在執行批次任務時若需要暫停執行幾秒鐘,就需要一些小技巧來實現了,以下分享幾個我之前用過的技巧:
1. 利用 PING 指令幫忙停 5 秒
   每壹台電腦都有 PING 執行檔,這個最好用啦!
@ping 127.0.0.1 -n 5 -w 1000 > nul
2. 利用 CHOICE 指令
   CHOICE 命令在 Windows XP 中找不到,但在 Windows Server 2003 或 Vista 都有內建。
@CHOICE /C YN /N /T 5 /D y > nul

3. 安裝 Windows Server 2003 Resource Kit Tools 即可獲得 sleep.exe 工具
   預設安裝路徑在 C:\Program Files\Windows Resource Kits\Tools 目錄下會有個 sleep.exe 執行檔
sleep 5
4. 利用 TIMEOUT 指令
   TIMEOUT 命令在 Windows Server 2003 或 Vista 之後都有內建。
timeout /t 5

延遲五秒 開啟 D槽123.exe 檔

開檔案  @echo off
@ping 127.0.0.1 -n 5 -w 1000 > nul

start D:\123.exe

2015年3月30日 星期一

南市太陽能系統數量 全國第一


根據 中時電子報 
  2015年03月24日 04:10  記者陳惠珍/台南報導 

南市太陽能系統數量 全國第一



相關連結
http://www.chinatimes.com/newspapers/20150324000167-260204


南市設置太陽光電系統件數高居全國第一,總設置容量已逾95MW

2015年3月20日 星期五

實用趣味經濟學

【銷售定位】
男生對女生說:我是最棒的,我保證讓你幸福,跟我好吧。——這是推銷。

男生對女生說:我老爹有3處房子,跟我好,以後都是你的。——這是促銷。

男生根本不對女生表白,但女生被男生的氣質和風度所迷倒。——這是行銷。

女生不認識男生,但她的所有朋友都對那個男生誇讚不已。——這是品牌。
 
【職場哲學】
1、人脈資源是一種戰略資源,要有儲備的意識。

2、即使你瞧不起某個人,也要尊重他的位置。

太陽能發電 雙北步調差很大

根據2015年03月12日 04:10 江慧珺、謝幸恩/綜合報導
 中國時報--地方新聞

太陽能發電 雙北步調差很大

相關連結
http://www.chinatimes.com/newspapers/20150312000514-260107

小編碎碎念
=======================

兩極化的評價
地點差不多  但發電效益差很大
系統設置好壞 以及 設置時間
對發電效益評估有關係

年發電51萬度,以每度電3元計算,省下153萬元電費;減少的碳排放量,相當於種植2萬9000棵樹,約10座大安森林公園1年的碳吸附量。

結論 依照計算 一座大安森林公園約可吸附5萬度電所產生的碳排量喔
       一萬度電 約等於 569 棵樹

多蓋太陽能 多種樹吧

=======================

台北市垃圾場新生命 將設太陽能發電

根據2015-03-14 自由時報電子報記者郭逸
台北市垃圾場新生命 將設太陽能發電

相關連結
http://news.ltn.com.tw/news/society/breakingnews/1256924

小編碎碎念
=======================
增加年發電量至550萬度以上,
可供1575戶四人家庭使用,
更可減少約2870公噸的二氧化碳排放量,
相當於種植28萬7000顆樹。

愛地球的表現
應該用一下 太陽能監控軟體的

小編 之前用的  還不錯 推薦一下

Poitek Solar Monitoring System

相關連結
http://poitek.com/index.php/solar
=======================

設太陽光電 善化啤酒廠日賺1萬2

2015-03-16  聯合報 記者吳政修/新營報導

設太陽光電 善化啤酒廠日賺1萬2

相關連結
http://udn.com/news/story/7241/767153

小編碎碎念
=============================
設置容量為498.96千瓦 
投資2800萬元
平均1天約1956度
每度價錢6.0448元
一天一萬多~~~ 還不錯

太陽能的造價 越來越便宜了  5.6  萬 / 千瓦

=============================



2015年3月13日 星期五

高雄工務局持續推動太陽光電 發展多樣光電屋頂

2015-03-06 NOWnews今日新聞 記者林庭卉/高雄報導

高雄工務局持續推動太陽光電 發展多樣光電屋頂

詳細內容請參
http://www.nownews.com/n/2015/03/06/1624052


小編碎碎念
=========================

高雄推再生能源 實在是很厲害
台灣南部地區 真的比較適合太陽光電

文末這段
如有意願裝設太陽光電,或鐵皮屋違建要改變為合法的太陽光電棚,都歡迎市民與該局建築管理處太陽光電窗口聯繫,請洽鍾小姐(電話:3368333轉2421)或建管處第五課(電話:3312982)
我覺得比較實用~~
========================