lenovo vantage
Tickling
2021年8月6日 星期五
2021年8月5日 星期四
insert temp table
use BonnieHouse
IF OBJECT_ID('BonnieHouse.dbo.tmptable') IS NOT NULL
BEGIN
PRINT 'Database Table Exists'
DROP TABLE dbo.tmptable
END
create table dbo.tmptable
(
rn int,
入庫編號 NVARCHAR(50) ,
單位 NVARCHAR(50) ,
容量 NVARCHAR(50)
)
insert into dbo.tmptable (rn, 入庫編號, 單位, 容量)
select distinct row_number() over(order by 入庫編號) as rn, 入庫編號, 單位, 容量
from dbo.StockOutListHistory where 容量 like '瓶' OR 容量 like '組' OR 容量 like '個'
select * from dbo.tmptable
declare @totalrows int = (select count(*) from tmptable)
declare @currentrow int = 1
declare @單位 NVARCHAR(50)
declare @容量 NVARCHAR(50)
declare @入庫編號 NVARCHAR(50)
while @currentrow <= @totalrows
begin
set @入庫編號 = (select 入庫編號 from tmptable where rn = @currentrow)
set @容量 = (select 單位 from tmptable where rn = @currentrow)
set @單位 = (select 容量 from tmptable where rn = @currentrow)
update StockOutListHistory
set 單位=@單位, 容量=@容量 where 入庫編號 = @入庫編號
print @currentrow ;
set @currentrow = @currentrow + 1
end
2021年7月3日 星期六
android studio with github
github的private可以免費使用了
紀錄一下android studio怎麼傳project上去github
又怎麼在新NB下傳project
** 要開始作業前 先去資料夾 用搜尋功能 把有出現'git'的全刪掉
** github token : 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
**用token就不用輸入帳號密碼 binghan.liu@gmail.com github0977127060
在android studio 要輸入帳密 一直出錯 最後用token登入
傳project上去github
- Sign up and create a GitHub account in www.github.com.
- Download git from https://git-scm.com/downloads and install it in your system.
- Open the project in android studio and go to File -> Settings -> Version Control -> Git.
- Click on test button to test "path to Git executables". If successful message is shown everything is ok, else navigate to git.exe from where you installed git and test again.
- Go to File -> Settings -> Version Control -> GitHub. Enter your email and password used to create GitHub account and click on OK button.
- Then go to VCS -> Import into Version Control -> Share Project on GitHub. Enter Repository name, Description and click Share button.
- In the next window check all files inorder to add files for initial commit and click OK.
- Now the project will be uploaded to the GitHub repository and when uploading is finished we will get a message in android studio showing "Successfully shared project on GitHub". Click on the link provided in that message to go to GitHub repository.
在新NB下傳project
You can directly import github projects into Android Studio. File -> New -> Project from Version Control -> GitHub. Then enter your github username and password.Select the repository and hit clone.
The github repo will be created as a new project in android studio.
怎麼更新檔案上去
Go to VCS -> Git -> Commit file . Then type a commit message and click on commit button
2021年7月2日 星期五
2021年6月24日 星期四
Win10 安裝 IIS 的操作筆記
在 Win10 中是可以安裝 IIS (Internet Information Services) 來架設網站的。剛好有需求在本機上要部署可以執行 ASP 的環境,就把整個流程跑了一次,也順便做個筆記。如果有需求的朋友,可以參考看看。
安裝IIS
這個安裝的入口要由傳統控制台來比較方便,光這動作我就 Google 了一下,最快的方式還是由搜尋找關鍵字「控制台」來啟動最方便。
接著由 【程式集 > 開啟或關閉Windows功能 > Internet Information Services > World Wide Web服務 > 應用程式開發功能 > ASP】,記得要核選 Web管理工具 喔,按下 [確定] 後就會自動安裝。
IIS 的設定
我們的任務是讓 IIS 執行ASP程式,並且設定能顯示清楚的偵錯訊息,以下幾個步驟都要在 IIS 管理員視窗中做喔!
以下這些動作都非常的重要,建議要操作:
- 應用程式集區 > DefaultAppPool > 進階設定 > 一般 > 啟用32位元應用程式 = TRUE
- 站台 > ASP > 啟用上層路徑 = True
- 站台 > ASP > 將錯誤傳送到瀏覽器 = True
以上是我在部署的安裝筆記,分享給有需要的朋友。
也可以在瀏覽器當中輸入:http://localhost/ 或是 http://127.0.0.1/ 就能看到站台伺服器成功架設的歡迎畫面
2021年6月23日 星期三
2021年5月10日 星期一
找到妨礙win10進入睡眠/休眠的文章
https://thegeekpage.com/fix-windows-10-sleep-mode-not-working-solved/
https://thegeekpage.com/restart-pc-in-clean-boot-mode/
試了之後發現 裡面很多選項不能用
而且原來自己的NB有分睡眠和休眠的選項
睡眠時電源不會關 但是休眠會關
F10 F11 跳掉
lenovo vantage
-
http://34.80.81.192/?p=5621 主要是 灌好cloud tool 後 在要處理的 資料夾 cmd 輸入 gcloud source repos create hello-world ( 使用 Google Cloud SDK(gcloud comm...
-
推薦用的winform ui https://stackoverflow.com/questions/20161213/modern-ui-application-design-for-windows-form-application