so like this:
Public price As Integer ??
i did that, and then i typed the value under the declaration :
price = 5
i tried to change the value fom a textbox, then i get an error "outside procedure" ..
i don't understand this really..why we can declare a Const Global so easy, but the variable not...
Hello,
i have a constant defined as public
like this: Public Const price As Integer = 5
is there a away to build a textbox in such Form and change this value, without going inside the module?
thx
every person has 900 training minutes
when he work 300 minutes in AA1 then remains 600
the next Date he worked 400 minutes , now he has 200 minutes remains
then he worked 200 minutes, now he has 0 minutes remains
this is what i want the query to do
this is the supposed Query
PersonalID, Workplace, worktime, Training
10, AA1, 300, 600
10, AA1, 400, 200
10, AA1, 200, 0
i hope you got it now..thanks really
Hi ,
i have a table contains the following fields
personalID,Workplace,worktime(minutes)
every person could work in multi Workplaces.
i want to make a Query of this table, and to add a new field (Training) in minutes which hold an Expression,
(Training = 900 - worktime)
then
the next...