Adding components to a DBGrid
內容相當豐富,而且篇篇精彩!錯過可惜!
項目 | VB.NET | C#引用命名空間 | 備註 |
1 | MY.Application | Microsoft.VisualBasic.ApplicationServices; | 應用程序相關 |
2 | My.Computer | Microsoft.VisualBasic.Devices.Computer | 計算機相關 |
3 | My.Forms | Form窗體實體化 | windows Form相關 |
4 | MY.Log | Microsoft.VisualBasic.Logging | 記錄文件相關 |
5 | MY.Resources | Namespace命名空間.Properties.Resources | 資源文件相關 |
6 | MY.User | Microsoft.VisualBasic.ApplicationServices.User | 用戶相關 |
7 | MY.Settings | Namespace命名空間.Properties.Settings | 設置文件相關 |
8 | My.WebServices | Web Service實體化 | Web Service相關 |
procedure TForm1.AddNewDataClick(Sender: TObject); begin with ClientDataSet1 do begin Append; Fields.Fields[0].AsString := Edit_AddTest0.Text; Fields.Fields[1].AsString := Edit_AddTest1.Text; Fields.Fields[2].AsString := Edit_AddTest2.Text; Post; end; end;