2012年10月31日 星期三

註冊為 allowDefinition ... 的區段發生錯誤

參考
--- 
(Bind)程式所在目錄及其子目錄,所以兩個 web.config檔會產生衝突,產生〔在應用程式層級之外使用註冊為 allowDefinition='MachineToApplication' 的區段發生錯誤〕錯誤訊息。

將 web.config 刪除

2012年10月29日 星期一

白子第2胎了,有野生+白子混生




養綠水實驗

綠水培養1-2週,即可完成!

 條件:陽光日晒,早晚攪拌培養的綠水

初期水+料:施肥的花樹肥料(增葉根類)+缸水+魚便

(培養方式很多種,如:尿+自來水 , 自來水+尿素肥料 , 自來水+蘋果螺 , 綠種+花寶4號 ...等)


2012/10/25 到2012/10/30 的圖:
















下次時間:2012/11/1















下次時間:2012/11/8

















2012年10月27日 星期六

VB6 的字串函數string 在vb.net為哪個函數

參考引用
--
 Dim str As String = New String(Chr(n), nLength)

如果只是要個空間,可以用

Dim str As New StringBuilder(nLength)

到水族館買回來的黃尾禮服1對

真是興奮,終於購買黃尾禮服!!
但,真是納悶;怎買回來是病厭厭呢..完全沒活力....
結果隔離,母的卻跳出桶..公的也不行掛了...唉,真是不該買的;還是顧好自家的全紅白子!!



白子判斷要生產的圖


2012年10月25日 星期四

2012年10月21日 星期日

MVC 學習的網址記錄

都是C# 的!

我的Coding之路

demoshop

mrkt 的程式學習筆記


ASP.NET MVC3 安裝失敗問題解決方式

參考引用
--
 ASP.NET MVC3 安裝失敗問題解決方式
安裝 ASP.NET MVC3 時發生錯誤訊息如下:

OS Version = 6.0.6000, Platform 2
OS Description = Vista - x64 Ultimate Edition
CommandLine = i:\temp\ext47334\setup.exe
Using Simultaneous Download and Install mechanism
Operation: Installing
Package Name = Microsoft ASP.NET MVC 3
Package Version = 3.0.20105.0
User Experience Data Collection Policy: AlwaysUploaded
Number of applicable items: 6
Exe (i:\temp\ext47334\VS10-KB2483190-x86.exe) failed with 0x80070643 - 安裝時發生嚴重錯誤。 .
Final Result: Installation failed with error code: (0x80070643), "安裝時發生嚴重錯誤。 " (Elapsed time: 0 00:00:29).

這個問題在於 VS10-KB2483190-x86.exe 這一個檔案有可能已經安裝過了, 尤其當已經是 VS 2010 SP1 安裝.


要修正這個安裝 MVC3 的錯誤, 請用 7zip 或是 zip 的解壓縮程式將已經下載的AspNetMVC3Setup.exe 解壓到一個目錄中, 然後找出目錄底下的 parameterinfo.xml , 修改這一個檔案中的:

                     DownloadSize="18858336"
             HashValue="2CA4541D0AC789977E2B21A7238E400D4ADB2DE089839E9BAE0FED9F8537DA89"
             EstimatedInstallTime="849920"
             InstalledProductSize="12645888"
             Name="VS10-KB2483190-x86.exe"
             UninstallCommandLine="/q /norestart"
             RepairCommandLine="/q /norestart"
             Rollback="true"
             SystemDriveSize="100"
             InstallCommandLine="/q /norestart">
           
               
           

           
               
                   
                       
                           
                               
                           
                           
                               
                           
                       
                       
                           
                       
                   
                   
                       
                   
               
           
           
               
               
               
           
       
       
        將這一個 ... 拿掉後存檔, 這樣就可以執行這個目錄底下的 setup.exe 完成安裝.    

MVC 2, 3 教學

MVC 2, 3 教學
--
MVC 2,3 的教學在打開連結後的最底下

ASP.NET MVC 3 RTM 下載

ASP.NET MVC 3 RTM
ASP.NET MVC 3 RTM Tools Update
 

微軟 ASP.NET MVC 書面的教學課程

微軟:ASP.NET MVC 書面的教學課程

ASP.NET NVC3 教學

ASP.NET MVC 4 下載和MVC4教學

ASP.NET MVC 4 下載安裝 For Vs2010 Sp1

微軟:ASP.NET MVC 4 for Visual Studio 2010 SP1 與 Visual Web Developer 2010 SP1

2012年10月20日 星期六

insert into select

ms-sql 和 access 的寫法是不一樣的!
 參考來源
--
access:
 insert INTO [tablename] Select * FROM [savedquery]

ms-sql :
insert INTO [tablename]  (Select * FROM [savedquery] )

2012年10月19日 星期五

MS-SQL 好的統計方法

引用來源
---
 create table #temp(
    person_id int,
    work_year int
)

insert into #temp(person_id,work_year)
select 2110020 ,4  union
select 2110067 ,5  union
select 2112274 ,6  union
select 2113775 ,7  union
select 2113841 ,8  union
select 2114508 ,9  union
select 2114870 ,10 union
select 2115337 ,11 union
select 2115408 ,7  union
select 2115431 ,5 union
select 2115432 ,6;

select distinct work_year as 工作年限,
    count(work_year) over(partition by work_year) as 工作年限人数,
    count(person_id) over () 总人数,
    cast(
        cast(
            (count(work_year) over(partition by work_year))
            /
            cast((count(person_id) over ()) as decimal(18,2))*100  as int)
        as varchar(50)
    ) + '%' as 占比
from #temp
order by 工作年限

truncate table #temp
drop table #temp


(11 row(s) affected)
工作年限        工作年限人数      总人数         占比
----------- ----------- ----------- ---------------------------------------------------
4           1           11          9%
5           2           11          18%
6           2           11          18%
7           2           11          18%
8           1           11          9%
9           1           11          9%
10          1           11          9%
11          1           11          9%

(8 row(s) affected)

2012年10月18日 星期四

vbnet 同步時間

此範例是和區域內某一台的時間同步的方法:
參考引用:
 
  Dim p As New System.Diagnostics.Process
  Dim pinfo As New System.Diagnostics.ProcessStartInfo
  Dim pout As String
  pinfo.FileName = ("C:\WINDOWS\system32\net.exe")
  pinfo.Arguments = ("time \\computername")
  pinfo.RedirectStandardOutput = True
  pinfo.UseShellExecute = False
  pinfo.CreateNoWindow = True
  p = Diagnostics.Process.Start(pinfo)
  p.WaitForExit()
  pout = p.StandardOutput.ReadLine
  MsgBox(pout)

2012年10月11日 星期四

漫畫小說店品餐計時


漫畫小說店,在e化電子書的衝擊下;近2-3年是越經營越下跌
月收要打平已不容易,很努力經營的店扣除所有開支獲利約3-10萬
有些店頭腦動得快的,均已紛紛加入複合式的經營了!
池龍工作室 http://wushi.myftp.org  Estory 租書軟體了除租書外特別嵌入品餐計時的功能,
來因應目前市場的需求!  底下為加值的功能,預設免費為2個包廂(餐桌);每加1包廂1千元整.
單機版 28,000 網路版(可使用2台,最多4台) 3,8000
歡迎有興趣的,可至本工作室下載試用版! 相關聯絡均在網站內,或電洽!







2012年10月1日 星期一

vbnet DataGridView 自動選取列 (由 第1筆到最後1筆)


If DGridV.RowCount > 0 Then
   For i As Integer = 0 To DGridV.Rows.Count - 1
       DGridV.CurrentCell = DGridV.Rows(i).Cells(0)
       '底下可加入各程序來處理cell 應用
   next
end if