Forum: VB.NET Oct 17th, 2006 |
| Replies: 8 Views: 52,417 Hi,
PHP is a server side web scripting language where you don't have direct access to client side web controls like text and combo boxes. What you should do is to put <input> tags in a <form... |
Forum: Pascal and Delphi Jul 24th, 2006 |
| Replies: 4 Views: 10,944 Hi,
Delphi's TXMLDocument class isn't coded by Borland but is a wrapper to MSXML COM object. You might try "XMLReader := TXMLDocument.Create(self);" or if the code isn't in a method of the form... |
Forum: VB.NET Apr 19th, 2006 |
| Replies: 7 Views: 35,977 Hi,
To insert a checkbox to every row you must add a template column to your data grid.
Loren Soth |
Forum: VB.NET Apr 6th, 2006 |
| Replies: 8 Views: 52,417 Hi,
x=combobox.text
Loren Soth |
Forum: Pascal and Delphi Mar 17th, 2006 |
| Replies: 2 Views: 10,418 Hi,
If you count the white spaces and CRs and LFs as character too, you can simply use Edit1.Text := IntToStr(Len(Memo1.Text)); to show the number of chars on Edit1 and if you put the above code... |