提供小吳 VBQA 包含VB6,VB 2003,VB 2005,VB 2008,VB 2010,2013,2015
,2019,VB.NET,Visual Studio,Visual Basic,程式設計,C#,ASP.NET , Windows From , SQL Server , Crystal Report,VBA,HTML,網頁設計,微軟,98,XP, API ,KB .
format 同一數值結果不同??(編號:1393)
Dim Number As Single Number = 10 Number = Format(Number , "###0.0") Text1.Text = Number Text2.Text = Format(10, "###0.0") 結果: Text1.Text=10 Text2.Text=10.0 請問為何不一樣?