Jump to content


mcinternet

Member Since 31 May 2005
Offline Last Active Aug 13 2019 06:10 PM
-----

Topics I've Started

NextDBGrid6 with Checkbox Column

13 August 2019 - 06:10 PM

Hi,

 

I have a testtable with a few types of boolean. - MySQL and I work with mydac from devart.

CREATE TABLE `systesttable` (
  `ID` int(11) NOT NULL AUTO_INCREMENT,
  `Bezeichnung` varchar(45) DEFAULT NULL,
  `bol1` tinyint(1) DEFAULT '0',
  `bol2` enum('yes','no') DEFAULT 'no' COMMENT 'Hier wird mit 0 = false und true = 1 gearbeitet',
  `bol3` enum('true','false') DEFAULT 'false',
  PRIMARY KEY (`ID`),
  UNIQUE KEY `ID_UNIQUE` (`ID`)
) ENGINE=InnoDB AUTO_INCREMENT=3 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci COMMENT='Diese Table dient nur Tests während der Entwicklung und enthält keine vom Programm genutzte Daten';

how to get this in a Checkbox Column, so that I only have to click for check and not checked. That does not work.

 

 

regards

 

Jörg alias mcinternet


Event OnAfterMoveTab

05 August 2019 - 06:40 PM

Hi,

 

Is it possible to make an event which is fired after a tab is moved?

 

I only need the info, where to place that. I think I can implement it by myself, if I know where.

 

 

kind regards

 

mcinternet