
Roy Woll
- Total activity 353
- Last activity
- Member since
- Following 0 users
- Followed by 1 user
- Votes 0
- Subscriptions 144
Comments
Recent activity by Roy Woll-
Sorry, but I don't recall if delphi 7 has custom styles, nor do I have it installed anymore. I would visit a delphi newsgroup to see delphi's capabilities. Alternatively, I would consider updating ...
-
You can detect a field value change using the OnFieldChanged event. This should fire after you toggle the checkbox. Note: If you need to override, you would use the DoFieldChanged event. procedu...
-
The SearchBy combo only shows fields with an available index. The ADOQuery does not have any indexes to order with. You could also try using a TADODataSet instead, although I'm not sure it would w...
-
Sorry, I just noticed that your title refers to color. Colors can only be changed when using custom styles. I'm not sure if the Delphi 7 version has good support for this.
-
Take a look at the properties ShowHorzScrollBar and ShowVertScrollBar
-
Sorry, but I don't understand this question. I believe it should work the same way as TwwEdit.
-
MapList = True, then it is binded to StoredText MapList = False, then it is binded to Text
-
How many records in your lookuptable? If there is no index, it would have to sequentially search through to find the looked up record. Unless you have a small lookup result, I would not do this.
-
Sorry, this was not responded to earlier. You would need FirePower or InfoPower Enterprise to develop for other devices such as iPhones or android devices. The InfoPower VCL does not support this.
-
Most likely you have OrderByDisplay set to true, and it is changing the index of the lookuptabla. Changing the index name should be a fast operation, but perhaps it is slow with your driver. Try ...