Tagged Questions
The beforeupdate tag has no wiki summary.
2
votes
5answers
3k views
Is there a BeforeUpdate for a C# ComboBox on a Winform
I come from the VBA world, and remember there was a BeforeUpdate call I could make on a combobox. Now I am in C# (and loving it) and I was wondering is there a BeforeUpdate call for a ComboBox on a ...
1
vote
1answer
279 views
“No current record” after Cancel in combo_BeforeUpdate
I'm trying to prevent circular (or even cascading) references in my data, and it seems it's only working part of the time.
In Access 2007, I have the following table:
create table mfr (
mfr_id ...
0
votes
1answer
360 views
Mysql BEFORE UPDATE trigger activation time
I have two InnoDB tables:
CREATE TABLE master(
id INTEGER UNSIGNED NOT NULL auto_increment PRIMARY KEY
);
CREATE TABLE details(
id INTEGER UNSIGNED NOT NULL auto_increment PRIMARY KEY,
...
0
votes
1answer
221 views
ROR ActiveRecord attribute handling with a callback before_update
This code produces an ActiveRecordError:
Callbacks must be a symbol denoting
the method to call, a string to be
evaluated, a block to be invoked, or
an object responding to the callback
...