G
geekgirljess
Hello all, first time poster but I've used these groups for a while as
an invaluable research and problem solving tool. So a big thanks to all
who help out here! Unfortunately I'm not sure where to begin trying to
find an answer to my current dilemma and I hope some kind soul can help
point me in the right direction yet again!
I'm currently working on a database to aid in order tracking for a
small telecommunications company. One of the telephone features we
provide is a feature to where phone numbers can be "linked" in what is
referred to as a "hunt group", such that if someone calls in on a
particular phone number and that line is busy or goes unanswered for a
certain length of time, the call will automatically hunt for another
free line. This is most often used by commercial customers with several
phone numbers, and I need to have something to keep track of how many
of these "hunt groups" the customer wants, and the order of the numbers
in each group.
To aid me in this I have a table, tblPhoneOrders, which has, among
other fields, the following:
phnID AutoNumber PK
phnNumber Text (10) 10 digit phone number
phnHuntGroup Byte which hunt group this number is in (if
any)
phnHuntOrder Byte order of this number in the hunt group
What I'm trying to figure out now is the best way to actually *display*
these on a form / report. Ideally, if a customer had the following 5
numbers, with 3 numbers in one group and 2 in another as follows:
phnNumber phnHuntGroup phnHuntOrder
912-555-1234 1 1
912-555-1235 2 1
912-555-2022 1 3
912-506-5678 1 2
912-602-9415 2 2
I should be able to show on the Phone Order Details form / report that
the "Hunt Groups" are requested to be set up as follows:
Hunt Group 1:
912-555-1234
912-506-5678
912-555-2022
Hunt Group 2:
912-555-1235
912-602-9415
Any ideas? I was thinking a TreeView at first, but I don't have any
experience whatsover with those and I've read they are buggy. I was
pondering if a simple ListBox would work but I can't quite seem to wrap
my head around it. Any advice or suggestions would be greatly
appreciated!!
(Disclaimer: above phone numbers were made up on the spot off the top
of my head. Any similarites to any actual routed telephone numbers is
unintended.)
an invaluable research and problem solving tool. So a big thanks to all
who help out here! Unfortunately I'm not sure where to begin trying to
find an answer to my current dilemma and I hope some kind soul can help
point me in the right direction yet again!
I'm currently working on a database to aid in order tracking for a
small telecommunications company. One of the telephone features we
provide is a feature to where phone numbers can be "linked" in what is
referred to as a "hunt group", such that if someone calls in on a
particular phone number and that line is busy or goes unanswered for a
certain length of time, the call will automatically hunt for another
free line. This is most often used by commercial customers with several
phone numbers, and I need to have something to keep track of how many
of these "hunt groups" the customer wants, and the order of the numbers
in each group.
To aid me in this I have a table, tblPhoneOrders, which has, among
other fields, the following:
phnID AutoNumber PK
phnNumber Text (10) 10 digit phone number
phnHuntGroup Byte which hunt group this number is in (if
any)
phnHuntOrder Byte order of this number in the hunt group
What I'm trying to figure out now is the best way to actually *display*
these on a form / report. Ideally, if a customer had the following 5
numbers, with 3 numbers in one group and 2 in another as follows:
phnNumber phnHuntGroup phnHuntOrder
912-555-1234 1 1
912-555-1235 2 1
912-555-2022 1 3
912-506-5678 1 2
912-602-9415 2 2
I should be able to show on the Phone Order Details form / report that
the "Hunt Groups" are requested to be set up as follows:
Hunt Group 1:
912-555-1234
912-506-5678
912-555-2022
Hunt Group 2:
912-555-1235
912-602-9415
Any ideas? I was thinking a TreeView at first, but I don't have any
experience whatsover with those and I've read they are buggy. I was
pondering if a simple ListBox would work but I can't quite seem to wrap
my head around it. Any advice or suggestions would be greatly
appreciated!!
(Disclaimer: above phone numbers were made up on the spot off the top
of my head. Any similarites to any actual routed telephone numbers is
unintended.)