Load dữ liệu lên Textbox dynamic C# | VN-Zoom | Cộng đồng Chia Sẻ Kiến Thức Công Nghệ và Phần Mềm Máy Tính

Adblocker detected! Please consider reading this notice.

We've detected that you are using AdBlock Plus or some other adblocking software which is preventing the page from fully loading.

We need money to operate the site, and almost all of it comes from our online advertising.

Please add vn-z.vn to your ad blocking whitelist or disable your adblocking software. 

All the knowledge we share is completely free. If you are willing, please support us here.

×

Load dữ liệu lên Textbox dynamic C#

Chào ae đưa dữ liệu hiển thị lên textbox nhưng mà create textbox chứ không phải kéo textbox sang form rồi gán txtHoten.Text=HoTen
ví dụ mình tạo Textbox như sau:
private void AdTextbox()
{
TextBox textboxHoTen = new TextBox();
textboxHoTen.Location = new System.Drawing.Point(10, 25);
textboxHoTen.Size = new System.Drawing.Size(80, 20);
textboxHoTen.Name = "txtHoTen" ;
Controls.Add(textboxHoTen);

TextBox textboxDiachi = new TextBox();
textboxDiachi.Location = new System.Drawing.Point(10, 50);
textboxDiachi.Size = new System.Drawing.Size(80, 20);
textboxDiachi.Name = "txtHoTen" ;
Controls.Add(textboxDiachi);
}
kéo thả các control ở toolbox sang gán thì nó hiểu còn mình tạo như này nó không hiểu và nhận diện đc
 

meebo

Rìu Vàng Đôi
Thử cái trong diễn đàn stack tràn này đi, tui thấy cái này rõ ràng hơn nè.

 
mình kéo cái textbox từ toolbox ra gán như này là nó tự nhận đc luôn: HoTen= textboxHoTen .Text.Trim();
nhưng sao tạo textbox dynamic lại không gán đc
 


Top