It doesn't affect pay or holidays.
Employees have to work 7.2 hours a day and anytime after this is considered flextime.
Flextime has to work up to a balance of 7.2 hours a day which gives one RDO a month etc.
I've created the timesheet the way I'd like it to look however all other calculations I'm having problems with.
I need each textbox to reflect am/pm time when an employee enters their times in and I need this calculated in the last row of textboxes to give a balance.
The deduction 1 start etc is if an employee goes out of the office and back in which also needs to affect the balance as this would be taken from flextime.
I'm hoping someone out there is able to help me with this. At the moment I'm attempting to fix a code that was given to me.
Code: Select all
nomainwin
WindowWidth = 950
WindowHeight = 708
a$ (1) = "Kuys, Sharmila"
d$(1)= date$(38698)
da$(1)= date$(38698+13)
array$(1) = "N/D"
array$(2) = "F/D"
array$(3) = "T/L"
array$(4) = "P/H"
array$(5) = "A/L"
array$(6) = "S/L"
array$(7) = "LS/L"
array$(8) = "1/2A"
array$(9) = "1/2S"
array$(10)= "O/L"
dim xrow(16), ycol(14)
xr = 140: yc = 180
For i = 1 to 16
xrow(i) = xr: xr = xr + 22
Next i
For i = 0 to 13
ycol(i) = yc: yc = yc + 50
Next i
'get and check contents of the "Start Time" textboxes
For col = 0 to 13
handle$ = "#main.tbxStart";col
Print "col = ";col;": handle$ = ";handle$ ' <<-- temporary debugging line
' get contents of textboxes in "Start Time" row
Print #handle$, "!contents? atime$"
Gosub [checkValidTime]
Next col
textbox #main.tbxStart0, ycol(0), xrow(1), 50, 22
textbox #main.tbxStart1, ycol(0), xrow(2), 50, 22
textbox #main.tbxStart2, ycol(0), xrow(3), 50, 22
textbox #main.tbxStart3, ycol(0), xrow(4), 50, 22
textbox #main.tbxStart4, ycol(0), xrow(5), 50, 22
textbox #main.tbxStart5, ycol(0), xrow(6), 50, 22
textbox #main.tbxStart6, ycol(0), xrow(7), 50, 22
textbox #main.tbxStart7, ycol(0), xrow(8), 50, 22
textbox #main.tbxStart8, ycol(0), xrow(9), 50, 22
textbox #main.tbxStart9, ycol(0), xrow(10), 50, 22
textbox #main.tbxStart10, ycol(0), xrow(11), 50, 22
textbox #main.tbxStart11, ycol(0), xrow(12), 50, 22
textbox #main.tbxStart12, ycol(0), xrow(13), 50, 22
textbox #main.tbxStart13, ycol(0), xrow(14), 50, 22
textbox #main.tbxStart14, ycol(0), xrow(15), 50, 22
textbox #main.tbxStart15, ycol(0), xrow(16), 50, 22
textbox #main.tbxStart16, ycol(1), xrow(1), 50, 22
textbox #main.tbxStart17, ycol(1), xrow(2), 50, 22
textbox #main.tbxStart18, ycol(1), xrow(3), 50, 22
textbox #main.tbxStart19, ycol(1), xrow(4), 50, 22
textbox #main.tbxStart20, ycol(1), xrow(5), 50, 22
textbox #main.tbxStart21, ycol(1), xrow(6), 50, 22
textbox #main.tbxStart22, ycol(1), xrow(7), 50, 22
textbox #main.tbxStart23, ycol(1), xrow(8), 50, 22
textbox #main.tbxStart24, ycol(1), xrow(9), 50, 22
textbox #main.tbxStart25, ycol(1), xrow(10), 50, 22
textbox #main.tbxStart26, ycol(1), xrow(11), 50, 22
textbox #main.tbxStart27, ycol(1), xrow(12), 50, 22
textbox #main.tbxStart28, ycol(1), xrow(13), 50, 22
textbox #main.tbxStart29, ycol(1), xrow(14), 50, 22
textbox #main.tbxStart30, ycol(1), xrow(15), 50, 22
textbox #main.tbxStart31, ycol(1), xrow(16), 50, 22
textbox #main.tbxStart32, ycol(2), xrow(1), 50, 22
textbox #main.tbxStart33, ycol(2), xrow(2), 50, 22
textbox #main.tbxStart34, ycol(2), xrow(3), 50, 22
textbox #main.tbxStart35, ycol(2), xrow(4), 50, 22
textbox #main.tbxStart36, ycol(2), xrow(5), 50, 22
textbox #main.tbxStart37, ycol(2), xrow(6), 50, 22
textbox #main.tbxStart38, ycol(2), xrow(7), 50, 22
textbox #main.tbxStart39, ycol(2), xrow(8), 50, 22
textbox #main.tbxStart40, ycol(2), xrow(9), 50, 22
textbox #main.tbxStart41, ycol(2), xrow(10), 50, 22
textbox #main.tbxStart42, ycol(2), xrow(11), 50, 22
textbox #main.tbxStart43, ycol(2), xrow(12), 50, 22
textbox #main.tbxStart44, ycol(2), xrow(13), 50, 22
textbox #main.tbxStart45, ycol(2), xrow(14), 50, 22
textbox #main.tbxStart46, ycol(2), xrow(15), 50, 22
textbox #main.tbxStart47, ycol(2), xrow(16), 50, 22
textbox #main.tbxStart48, ycol(3), xrow(1), 50, 22
textbox #main.tbxStart49, ycol(3), xrow(2), 50, 22
textbox #main.tbxStart50, ycol(3), xrow(3), 50, 22
textbox #main.tbxStart52, ycol(3), xrow(4), 50, 22
textbox #main.tbxStart53, ycol(3), xrow(5), 50, 22
textbox #main.tbxStart54, ycol(3), xrow(6), 50, 22
textbox #main.tbxStart55, ycol(3), xrow(7), 50, 22
textbox #main.tbxStart56, ycol(3), xrow(8), 50, 22
textbox #main.tbxStart57, ycol(3), xrow(9), 50, 22
textbox #main.tbxStart58, ycol(3), xrow(10), 50, 22
textbox #main.tbxStart59, ycol(3), xrow(11), 50, 22
textbox #main.tbxStart60, ycol(3), xrow(12), 50, 22
textbox #main.tbxStart61, ycol(3), xrow(13), 50, 22
textbox #main.tbxStart62, ycol(3), xrow(14), 50, 22
textbox #main.tbxStart63, ycol(3), xrow(15), 50, 22
textbox #main.tbxStart64, ycol(3), xrow(16), 50, 22
textbox #main.tbxStart65, ycol(4), xrow(1), 50, 22
textbox #main.tbxStart66, ycol(4), xrow(2), 50, 22
textbox #main.tbxStart67, ycol(4), xrow(3), 50, 22
textbox #main.tbxStart68, ycol(4), xrow(4), 50, 22
textbox #main.tbxStart69, ycol(4), xrow(5), 50, 22
textbox #main.tbxStart70, ycol(4), xrow(6), 50, 22
textbox #main.tbxStart71, ycol(4), xrow(7), 50, 22
textbox #main.tbxStart72, ycol(4), xrow(8), 50, 22
textbox #main.tbxStart73, ycol(4), xrow(9), 50, 22
textbox #main.tbxStart74, ycol(4), xrow(10), 50, 22
textbox #main.tbxStart75, ycol(4), xrow(11), 50, 22
textbox #main.tbxStart76, ycol(4), xrow(12), 50, 22
textbox #main.tbxStart77, ycol(4), xrow(13), 50, 22
textbox #main.tbxStart78, ycol(4), xrow(14), 50, 22
textbox #main.tbxStart79, ycol(4), xrow(15), 50, 22
textbox #main.tbxStart80, ycol(4), xrow(16), 50, 22
textbox #main.tbxStart81, ycol(5), xrow(1), 50, 22
textbox #main.tbxStart82, ycol(5), xrow(2), 50, 22
textbox #main.tbxStart83, ycol(5), xrow(3), 50, 22
textbox #main.tbxStart84, ycol(5), xrow(4), 50, 22
textbox #main.tbxStart85, ycol(5), xrow(5), 50, 22
textbox #main.tbxStart86, ycol(5), xrow(6), 50, 22
textbox #main.tbxStart87, ycol(5), xrow(7), 50, 22
textbox #main.tbxStart88, ycol(5), xrow(8), 50, 22
textbox #main.tbxStart89, ycol(5), xrow(9), 50, 22
textbox #main.tbxStart90, ycol(5), xrow(10), 50, 22
textbox #main.tbxStart91, ycol(5), xrow(11), 50, 22
textbox #main.tbxStart92, ycol(5), xrow(12), 50, 22
textbox #main.tbxStart93, ycol(5), xrow(13), 50, 22
textbox #main.tbxStart94, ycol(5), xrow(14), 50, 22
textbox #main.tbxStart95, ycol(5), xrow(15), 50, 22
textbox #main.tbxStart96, ycol(5), xrow(16), 50, 22
textbox #main.tbxStart97, ycol(6), xrow(1), 50, 22
textbox #main.tbxStart98, ycol(6), xrow(2), 50, 22
textbox #main.tbxStart99, ycol(6), xrow(3), 50, 22
textbox #main.tbxStart100, ycol(6), xrow(4), 50, 22
textbox #main.tbxStart102, ycol(6), xrow(5), 50, 22
textbox #main.tbxStart103, ycol(6), xrow(6), 50, 22
textbox #main.tbxStart104, ycol(6), xrow(7), 50, 22
textbox #main.tbxStart105, ycol(6), xrow(8), 50, 22
textbox #main.tbxStart106, ycol(6), xrow(9), 50, 22
textbox #main.tbxStart107, ycol(6), xrow(10), 50, 22
textbox #main.tbxStart108, ycol(6), xrow(11), 50, 22
textbox #main.tbxStart109, ycol(6), xrow(12), 50, 22
textbox #main.tbxStart110, ycol(6), xrow(13), 50, 22
textbox #main.tbxStart111, ycol(6), xrow(14), 50, 22
textbox #main.tbxStart112, ycol(6), xrow(15), 50, 22
textbox #main.tbxStart113, ycol(6), xrow(16), 50, 22
textbox #main.tbxStart114, ycol(7), xrow(1), 50, 22
textbox #main.tbxStart115, ycol(7), xrow(2), 50, 22
textbox #main.tbxStart116, ycol(7), xrow(3), 50, 22
textbox #main.tbxStart117, ycol(7), xrow(4), 50, 22
textbox #main.tbxStart118, ycol(7), xrow(5), 50, 22
textbox #main.tbxStart119, ycol(7), xrow(6), 50, 22
textbox #main.tbxStart120, ycol(7), xrow(7), 50, 22
textbox #main.tbxStart121, ycol(7), xrow(8), 50, 22
textbox #main.tbxStart122, ycol(7), xrow(9), 50, 22
textbox #main.tbxStart123, ycol(7), xrow(10), 50, 22
textbox #main.tbxStart124, ycol(7), xrow(11), 50, 22
textbox #main.tbxStart125, ycol(7), xrow(12), 50, 22
textbox #main.tbxStart126, ycol(7), xrow(13), 50, 22
textbox #main.tbxStart127, ycol(7), xrow(14), 50, 22
textbox #main.tbxStart128, ycol(7), xrow(15), 50, 22
textbox #main.tbxStart129, ycol(7), xrow(16), 50, 22
textbox #main.tbxStart130, ycol(8), xrow(1), 50, 22
textbox #main.tbxStart131, ycol(8), xrow(2), 50, 22
textbox #main.tbxStart132, ycol(8), xrow(3), 50, 22
textbox #main.tbxStart133, ycol(8), xrow(4), 50, 22
textbox #main.tbxStart134, ycol(8), xrow(5), 50, 22
textbox #main.tbxStart135, ycol(8), xrow(6), 50, 22
textbox #main.tbxStart136, ycol(8), xrow(7), 50, 22
textbox #main.tbxStart137, ycol(8), xrow(8), 50, 22
textbox #main.tbxStart138, ycol(8), xrow(9), 50, 22
textbox #main.tbxStart139, ycol(8), xrow(10), 50, 22
textbox #main.tbxStart140, ycol(8), xrow(11), 50, 22
textbox #main.tbxStart141, ycol(8), xrow(12), 50, 22
textbox #main.tbxStart142, ycol(8), xrow(13), 50, 22
textbox #main.tbxStart143, ycol(8), xrow(14), 50, 22
textbox #main.tbxStart144, ycol(8), xrow(15), 50, 22
textbox #main.tbxStart145, ycol(8), xrow(16), 50, 22
textbox #main.tbxStart146, ycol(9), xrow(1), 50, 22
textbox #main.tbxStart147, ycol(9), xrow(2), 50, 22
textbox #main.tbxStart148, ycol(9), xrow(3), 50, 22
textbox #main.tbxStart149, ycol(9), xrow(4), 50, 22
textbox #main.tbxStart150, ycol(9), xrow(5), 50, 22
textbox #main.tbxStart151, ycol(9), xrow(6), 50, 22
textbox #main.tbxStart152, ycol(9), xrow(7), 50, 22
textbox #main.tbxStart153, ycol(9), xrow(8), 50, 22
textbox #main.tbxStart154, ycol(9), xrow(9), 50, 22
textbox #main.tbxStart155, ycol(9), xrow(10), 50, 22
textbox #main.tbxStart156, ycol(9), xrow(11), 50, 22
textbox #main.tbxStart157, ycol(9), xrow(12), 50, 22
textbox #main.tbxStart158, ycol(9), xrow(13), 50, 22
textbox #main.tbxStart159, ycol(9), xrow(14), 50, 22
textbox #main.tbxStart160, ycol(9), xrow(15), 50, 22
textbox #main.tbxStart161, ycol(9), xrow(16), 50, 22
textbox #main.tbxStart162, ycol(10), xrow(1), 50, 22
textbox #main.tbxStart163, ycol(10), xrow(2), 50, 22
textbox #main.tbxStart164, ycol(10), xrow(3), 50, 22
textbox #main.tbxStart165, ycol(10), xrow(4), 50, 22
textbox #main.tbxStart166, ycol(10), xrow(5), 50, 22
textbox #main.tbxStart167, ycol(10), xrow(6), 50, 22
textbox #main.tbxStart168, ycol(10), xrow(7), 50, 22
textbox #main.tbxStart169, ycol(10), xrow(8), 50, 22
textbox #main.tbxStart170, ycol(10), xrow(9), 50, 22
textbox #main.tbxStart171, ycol(10), xrow(10), 50, 22
textbox #main.tbxStart172, ycol(10), xrow(11), 50, 22
textbox #main.tbxStart173, ycol(10), xrow(12), 50, 22
textbox #main.tbxStart174, ycol(10), xrow(13), 50, 22
textbox #main.tbxStart175, ycol(10), xrow(14), 50, 22
textbox #main.tbxStart176, ycol(10), xrow(15), 50, 22
textbox #main.tbxStart177, ycol(10), xrow(16), 50, 22
textbox #main.tbxStart178, ycol(11), xrow(1), 50, 22
textbox #main.tbxStart179, ycol(11), xrow(2), 50, 22
textbox #main.tbxStart180, ycol(11), xrow(3), 50, 22
textbox #main.tbxStart181, ycol(11), xrow(4), 50, 22
textbox #main.tbxStart182, ycol(11), xrow(5), 50, 22
textbox #main.tbxStart183, ycol(11), xrow(6), 50, 22
textbox #main.tbxStart184, ycol(11), xrow(7), 50, 22
textbox #main.tbxStart185, ycol(11), xrow(8), 50, 22
textbox #main.tbxStart186, ycol(11), xrow(9), 50, 22
textbox #main.tbxStart187, ycol(11), xrow(10), 50, 22
textbox #main.tbxStart188, ycol(11), xrow(11), 50, 22
textbox #main.tbxStart189, ycol(11), xrow(12), 50, 22
textbox #main.tbxStart190, ycol(11), xrow(13), 50, 22
textbox #main.tbxStart191, ycol(11), xrow(14), 50, 22
textbox #main.tbxStart192, ycol(11), xrow(15), 50, 22
textbox #main.tbxStart193, ycol(11), xrow(16), 50, 22
textbox #main.tbxStart194, ycol(12), xrow(1), 50, 22
textbox #main.tbxStart195, ycol(12), xrow(2), 50, 22
textbox #main.tbxStart196, ycol(12), xrow(3), 50, 22
textbox #main.tbxStart197, ycol(12), xrow(4), 50, 22
textbox #main.tbxStart198, ycol(12), xrow(5), 50, 22
textbox #main.tbxStart199, ycol(12), xrow(6), 50, 22
textbox #main.tbxStart200, ycol(12), xrow(7), 50, 22
textbox #main.tbxStart201, ycol(12), xrow(8), 50, 22
textbox #main.tbxStart202, ycol(12), xrow(9), 50, 22
textbox #main.tbxStart203, ycol(12), xrow(10), 50, 22
textbox #main.tbxStart204, ycol(12), xrow(11), 50, 22
textbox #main.tbxStart205, ycol(12), xrow(12), 50, 22
textbox #main.tbxStart206, ycol(12), xrow(13), 50, 22
textbox #main.tbxStart207, ycol(12), xrow(14), 50, 22
textbox #main.tbxStart208, ycol(12), xrow(15), 50, 22
textbox #main.tbxStart209, ycol(12), xrow(16), 50, 22
textbox #main.tbxStart210, ycol(13), xrow(1), 50, 22
textbox #main.tbxStart211, ycol(13), xrow(2), 50, 22
textbox #main.tbxStart212, ycol(13), xrow(3), 50, 22
textbox #main.tbxStart213, ycol(13), xrow(4), 50, 22
textbox #main.tbxStart214, ycol(13), xrow(5), 50, 22
textbox #main.tbxStart215, ycol(13), xrow(6), 50, 22
textbox #main.tbxStart216, ycol(13), xrow(7), 50, 22
textbox #main.tbxStart217, ycol(13), xrow(8), 50, 22
textbox #main.tbxStart218, ycol(13), xrow(9), 50, 22
textbox #main.tbxStart219, ycol(13), xrow(10), 50, 22
textbox #main.tbxStart220, ycol(13), xrow(11), 50, 22
textbox #main.tbxStart221, ycol(13), xrow(12), 50, 22
textbox #main.tbxStart222, ycol(13), xrow(13), 50, 22
textbox #main.tbxStart223, ycol(13), xrow(14), 50, 22
textbox #main.tbxStart224, ycol(13), xrow(15), 50, 22
textbox #main.tbxStart225, ycol(13), xrow(16), 50, 22
combobox #main.combobox60, array$(, [combobox60DoubleClick], ycol(0), 140, 50, 100
combobox #main.combobox61, array$(, [combobox61DoubleClick], ycol(1), 140, 50, 100
combobox #main.combobox62, array$(, [combobox62DoubleClick], ycol(2), 140, 50, 100
combobox #main.combobox63, array$(, [combobox63DoubleClick], ycol(3), 140, 50, 100
combobox #main.combobox64, array$(, [combobox64DoubleClick], ycol(4), 140, 50, 100
combobox #main.combobox65, array$(, [combobox65DoubleClick], ycol(5), 140, 50, 100
combobox #main.combobox66, array$(, [combobox66DoubleClick], ycol(6), 140, 50, 100
combobox #main.combobox68, array$(, [combobox68DoubleClick], ycol(7), 140, 50, 100
combobox #main.combobox69, array$(, [combobox69DoubleClick], ycol(8), 140, 50, 100
combobox #main.combobox70, array$(, [combobox70DoubleClick], ycol(9), 140, 50, 100
combobox #main.combobox71, array$(, [combobox71DoubleClick], ycol(10), 140, 50, 100
combobox #main.combobox72, array$(, [combobox72DoubleClick], ycol(11), 140, 50, 100
combobox #main.combobox73, array$(, [combobox73DoubleClick], ycol(12), 140, 50, 100
combobox #main.combobox77, array$(, [combobox77DoubleClick], ycol(13), 140, 50, 100
combobox #main.combobox92, a$(, [combobox92DoubleClick], 790, 30, 140, 28
combobox #main.combobox93, d$(, [combobox93DoubleClick], 790, 58, 140, 28
combobox #main.combobox94, da$(, [combobox94DoubleClick], 790, 84, 140, 28
statictext #main.statictext43, "Start Time", 4, xrow(1)+4, 30, 15
statictext #main.statictext46, "Finish Time", 4, xrow(2)+4, 30, 15
statictext #main.statictext74, "Elapsed Time", 4, xrow(3)+4, 86, 20
statictext #main.statictext80, "Short Lunch Credit", 4, xrow(4)+4, 144, 20
statictext #main.statictext32, "Deduction 1 Start", 4, xrow(5)+4, 136, 20
statictext #main.statictext33, "Deduction 1 Finish", 4, xrow(6)+4, 113, 20
statictext #main.statictext35, "Deduction 2 Start", 4, xrow(7)+4, 136, 20
statictext #main.statictext36, "Deduction 2 Finish", 4, xrow(8)+4, 144, 20
statictext #main.statictext81, "Total Time Worked", 4, xrow(9)+4, 186, 20
statictext #main.statictext82, "Approved Paid Overtime", 4, xrow(10)+4, 176, 20
statictext #main.statictext83, "Daily Flextime", 4, xrow(11)+4, 112, 20
statictext #main.statictext84, "Daily TIL", 4, xrow(12)+4, 72, 20
statictext #main.statictext85, "TIL Taken", 4, xrow(13)+4, 72, 20
statictext #main.statictext86, "Adjusted Flextime", 4, xrow(14)+4, 136, 20
statictext #main.statictext87, "Flextime Balance", 4, xrow(15)+4, 88, 20
statictext #main.statictext88, "TIL Balance", 4, xrow(16)+4, 88, 20
statictext #main.statictext89, "(BF: 0.55)", 100, xrow(15)+4, 80, 20
statictext #main.statictext90, "(BF: 0.00)", 100, xrow(16)+4, 80, 20
statictext #main.statictext13, "Department of Primary Industries & Water", 300, 50, 395, 20
statictext #main.statictext48, "Officer:", 1, 555, 64, 20
statictext #main.statictext49, "Supervisor:", 149, 555, 80, 20
statictext #main.statictext50, "I certify that the details of this form are correct.", 1, 590, 416, 20
statictext #main.statictext51, "Signature:", 390, 631, 80, 20
statictext #main.statictext52, ". Attendance Satisfactory", 413, 555, 184, 20
statictext #main.statictext53, ". Calculations Correct", 413, 573, 200, 20
statictext #main.statictext54, ". Sick Leave Applications Attached", 413, 591, 296, 20
statictext #main.statictext55, "Signature:", 1, 631, 80, 20
statictext #main.statictext56, "Name:", 690, 30, 40, 20
statictext #main.statictext57, "Week Beginning:", 690, 58, 112, 20
statictext #main.statictext58, "Pay Period Ending:", 690, 84, 136, 20
statictext #main.statictext78, "Thu", ycol(0), 110, 24, 20
statictext #main.statictext79, "Fri", ycol(1), 110, 24, 20
statictext #main.statictext80, "Sat", ycol(2), 110, 24, 20
statictext #main.statictext81, "Sun", ycol(3), 110, 24, 20
statictext #main.statictext82, "Mon", ycol(4), 110, 24, 20
statictext #main.statictext83, "Tue", ycol(5), 110, 24, 20
statictext #main.statictext84, "Wed", ycol(6), 110, 24, 20
statictext #main.statictext85, "Thu", ycol(7), 110, 24, 20
statictext #main.statictext86, "Fri", ycol(8), 110, 24, 20
statictext #main.statictext87, "Sat", ycol(9), 110, 24, 20
statictext #main.statictext88, "Sun", ycol(10), 110, 24, 20
statictext #main.statictext89, "Mon", ycol(11), 110, 24, 20
statictext #main.statictext90, "Tue", ycol(12), 110, 24, 20
statictext #main.statictext90, "Wed", ycol(13), 110, 24, 20
bmpbutton #main.bmpbutton1, "PRINT.BMP", [bmpbutton1Click], UL, 847, 645
bmpbutton #main.bmpbutton2, "SAVE.BMP", [bmpbutton2Click], UL, 876, 645
bmpbutton #main.bmpbutton3, "QUITBTTN.BMP", [bmpbutton3Click], UL, 910, 641
open "untitled" for window as #main
print #main, "font ms_san_sherrif 0 13"
[main.inputLoop] 'wait here for input event
wait
[combobox60DoubleClick] 'Perform action for the combobox named 'combobox60'
'Insert your own code here
wait
[combobox61DoubleClick] 'Perform action for the combobox named 'combobox61'
'Insert your own code here
wait
[combobox62DoubleClick] 'Perform action for the combobox named 'combobox62'
'Insert your own code here
wait
[combobox63DoubleClick] 'Perform action for the combobox named 'combobox63'
'Insert your own code here
wait
[combobox64DoubleClick] 'Perform action for the combobox named 'combobox64'
'Insert your own code here
wait
[combobox65DoubleClick] 'Perform action for the combobox named 'combobox65'
'Insert your own code here
wait
[combobox66DoubleClick] 'Perform action for the combobox named 'combobox66'
'Insert your own code here
wait
[combobox68DoubleClick] 'Perform action for the combobox named 'combobox68'
'Insert your own code here
wait
[combobox69DoubleClick] 'Perform action for the combobox named 'combobox69'
'Insert your own code here
wait
[combobox70DoubleClick] 'Perform action for the combobox named 'combobox70'
'Insert your own code here
wait
[combobox71DoubleClick] 'Perform action for the combobox named 'combobox71'
'Insert your own code here
wait
[combobox72DoubleClick] 'Perform action for the combobox named 'combobox72'
'Insert your own code here
wait
[combobox73DoubleClick] 'Perform action for the combobox named 'combobox73'
'Insert your own code here
wait
[bmpbutton74Click] 'Perform action for the bmpbutton named 'bmpbutton74'
'Insert your own code here
wait
[bmpbutton75Click] 'Perform action for the bmpbutton named 'bmpbutton75'
'Insert your own code here
wait
[bmpbutton76Click] 'Perform action for the bmpbutton named 'bmpbutton76'
'Insert your own code here
wait
[combobox77DoubleClick] 'Perform action for the combobox named 'combobox77'
'Insert your own code here
wait
[combobox92DoubleClick] 'Perform action for the combobox named 'combobox92'
'Insert your own code here
wait
[combobox93DoubleClick] 'Perform action for the combobox named 'combobox93'
'Insert your own code here
wait
[combobox94DoubleClick] 'Perform action for the combobox named 'combobox94'
'Insert your own code here
wait