Good Day. Please Help. How change size of buttons (buttons: up, down, open calendar) in component DateTimePicker. I want to do touch application, but buttons too small. And i have the same trouble with ROWS in component DBGrid.
change size of button in DateTimePicker c++ builder
587 Views Asked by Yaroslav Vozyka At
2
There are 2 best solutions below
0
Yaroslav Vozyka
On
There is answear
namespace MyNamespace
{
class TDBGrid : public Dbgrids::TDBGrid
{
public:
inline __fastcall virtual TDBGrid(Classes::TComponent* AOwner) :
Dbgrids::TDBGrid(AOwner) {}
__property DefaultRowHeight; // Now access is public
};
};
#define TDBGrid MyNamespace::TDBGrid
Related Questions in C++
- C++ using std::vector across boundaries
- Linked list without struct
- Connecting Signal QML to C++ (Qt5)
- how to get the reference of struct soap inherited in C++ Proxy/Service class
- Why we can't assign value to pointer
- Conversion of objects in c++
- shared_ptr: "is not a type" error
- C++ template using pointer and non pointer arguments in a QVector
- C++ SFML 2.2 vectors
- Lifetime of temporary objects
- I want to be able to use 4 different variables in a select statement in c ++
- segmentation fault: 11, extracting data in vector
- How to catch delay-import dll errors (missing dll or symbol) in MinGW(-w64)?
- How can I print all the values in this linked list inside a hash table?
- Configured TTL for A record(s) backing CNAME records
Related Questions in C++BUILDER
- working with IdHTTPProxyServer1
- Borland c++: Error while assigning OnChange to another function?
- Alternative to symlink in C++ Builder
- Embarcadero C++Builder: Transitive project dependencies and includes?
- Embarcadero C++Builder: Separate debug/release DLL references possible?
- How i can set rgb color?
- How to use TThread.Synchronize() to retrieve the text of a TEdit control?
- Indy TCP client in thread
- Special character in Borland c++ Builder
- Kylix on Fedora 21
- update statusbar's text property in the form by another form's button's click event
- add event to component in the run time
- Define and build lapsed timer
- How to manipulate large images in Firemonkey?
- Using TChart in C++Builder XE7
Related Questions in DATETIMEPICKER
- ionic framework datetimepicker without jquery-bootstrap dependencies
- Date time picker - validate date
- Trent Richardson Datetimepicker not working properly
- ajax - Why does when i call the .php file, the jquery function of it doesnt work
- JavaScript: Display positive numbers with the plus sign but not string
- datepicker yii2 kartik wrong format
- Recurrence Picker in AngularJS
- set max date dynamicaly in jquery
- check RadDateTimePicker value against current system date time value
- Jquery Time Picker inside ng-repeat is not working
- Using multiple instances of datetimepicker working with a Range between date
- How to avoid seconds in datetimepicker?
- DatetimePicker and jquery version incompatibility
- Datetimepicker slowness in jquery: set date and time format
- Execute Command on a given time C#
Related Questions in TDBGRID
- Right clicking on TDBGRID delphi2007
- How to hook after a query is executed?
- (how) Can I JOIN SELECTs from multiple databases into a DBgrid?
- How to get DBGrid to draw Yes/No rather than True/False
- Changing background for TDBGrid row?
- DBGrid XE3 background color
- Editing data in Delphi controls and updating of its underlying dataset
- How to change TDBGrld row colour when a field value is changed
- change size of button in DateTimePicker c++ builder
- Restore horizontal scroll position in TDBGrid
- Tweaking a TDbGrid
- TDBGrid columns design time or run time?
- How to get the text under the cursor in a TDbGrid
- Why do my tool tips appear far away from the mouse coordinates?
- Delphi TDBGrid inserts new record on tab press
Trending Questions
- UIImageView Frame Doesn't Reflect Constraints
- Is it possible to use adb commands to click on a view by finding its ID?
- How to create a new web character symbol recognizable by html/javascript?
- Why isn't my CSS3 animation smooth in Google Chrome (but very smooth on other browsers)?
- Heap Gives Page Fault
- Connect ffmpeg to Visual Studio 2008
- Both Object- and ValueAnimator jumps when Duration is set above API LvL 24
- How to avoid default initialization of objects in std::vector?
- second argument of the command line arguments in a format other than char** argv or char* argv[]
- How to improve efficiency of algorithm which generates next lexicographic permutation?
- Navigating to the another actvity app getting crash in android
- How to read the particular message format in android and store in sqlite database?
- Resetting inventory status after order is cancelled
- Efficiently compute powers of X in SSE/AVX
- Insert into an external database using ajax and php : POST 500 (Internal Server Error)
Popular Questions
- How do I undo the most recent local commits in Git?
- How can I remove a specific item from an array in JavaScript?
- How do I delete a Git branch locally and remotely?
- Find all files containing a specific text (string) on Linux?
- How do I revert a Git repository to a previous commit?
- How do I create an HTML button that acts like a link?
- How do I check out a remote Git branch?
- How do I force "git pull" to overwrite local files?
- How do I list all files of a directory?
- How to check whether a string contains a substring in JavaScript?
- How do I redirect to another webpage?
- How can I iterate over rows in a Pandas DataFrame?
- How do I convert a String to an int in Java?
- Does Python have a string 'contains' substring method?
- How do I check if a string contains a specific word?
Not sure what you can do about the button size of the DateTimePicker other than change the height of the client and make the whole thing bigger. For the DBGrid row you can change this at runtime.
Or whatever size works for you.