Hello, Can anyone help me with this case?
I have to display the working hours of workers in a form ,so I use continuous form to display those values. the worker have 2 types of working hours, first is 100% hours, 2nd is 150% hours. If that guy work only 100%hours, then only show that hours. if he work also with 150%, show 2 type of hours, and finally , if he work only 150%hours, show only 150% hours. Here is an example
1st example:
name percent hours
-------- ---------- ---------
a 100 8
-----------------------------------
b 100 7
-----------------------------------
c 100 9
150 2
-----------------------------------
d 150 4
------------------------------------
my method is I use 2 text box for 100% and 150%, if that worker dont have any 150% hours,i will hide that textbox, so it take me 2 lines to keep 2 textbox per worker, and make the form look not nice.( for example, if all the worker
have only 100%hours, the 150%hours is still there and take a lot of line). I want to do something like if the worker dont have that kind of hours, the line must be not there
2nd example (the display at my form right now )
name percent hours
-------- ---------- ---------
a 100 8
//I have an empty line here for 150%, it need to be removed
-------------------------------------
b 100 7
//I have an empty line here for 150%, it need to be removed
-----------------------------------
c 100 9
150 2
-----------------------------------
//I have an empty line here for 100%, it need to be removed
d 150 4
-------------------------------------
if anyone can help me with this, i really appreciate ...
if my question is not clear, just feel free to ask or email to me.
look at the picture to understand more
Bad version :
good version ( what i try to do)
Thanks.
I have to display the working hours of workers in a form ,so I use continuous form to display those values. the worker have 2 types of working hours, first is 100% hours, 2nd is 150% hours. If that guy work only 100%hours, then only show that hours. if he work also with 150%, show 2 type of hours, and finally , if he work only 150%hours, show only 150% hours. Here is an example
1st example:
name percent hours
-------- ---------- ---------
a 100 8
-----------------------------------
b 100 7
-----------------------------------
c 100 9
150 2
-----------------------------------
d 150 4
------------------------------------
my method is I use 2 text box for 100% and 150%, if that worker dont have any 150% hours,i will hide that textbox, so it take me 2 lines to keep 2 textbox per worker, and make the form look not nice.( for example, if all the worker
have only 100%hours, the 150%hours is still there and take a lot of line). I want to do something like if the worker dont have that kind of hours, the line must be not there
2nd example (the display at my form right now )
name percent hours
-------- ---------- ---------
a 100 8
//I have an empty line here for 150%, it need to be removed
-------------------------------------
b 100 7
//I have an empty line here for 150%, it need to be removed
-----------------------------------
c 100 9
150 2
-----------------------------------
//I have an empty line here for 100%, it need to be removed
d 150 4
-------------------------------------
if anyone can help me with this, i really appreciate ...
if my question is not clear, just feel free to ask or email to me.
look at the picture to understand more
Bad version :
good version ( what i try to do)
Thanks.