473,722 Members | 2,397 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

Looking for someone with experience building apps with multiple instancesof forms open

Looking for someone with experience building apps with multiple
instances of forms open. I am building an app for a nonprofit
organizations case workers. They provide services to the elderly.

so far I have built a traditional app, switchboard, forms, etc.
Part of this app is to automate the forms they previously prepared
manually.

After the app was built and works just fine, I find out there are
several case managers using MS word and forms built in Word. One
feature they like is the ability to have multiple copies of a form open
at the same time. They tell me this happens when they are in the
office, working on one case and the phone rings and they need to address
this other caller.

I am aware of technically how to open multiple copies of a form.
I am also aware that when the original/1st copy closes, so do all other
copies.

So has anyone out there built an app where there can be multiple copies
of a form that can be closed in any sequence?

Also how do you show to the user the forms currently open? Did you
build a special "open forms list" from which they can select a form and
bring up the selected form? (kinda like the list that word keeps of
open documents)

Any other tips or traps?

Thank you

Bob
Jan 23 '07 #1
6 2655
MLH
When you address this NG and use the word Form or Forms
interchangeably referring to physical paper forms your IRS 501.C.3
has stacked on their shelves and to Access Form objects and
Report objects, you introduce a level of confusion that some folks
just don't wanna tackle. I'd consider reposting a more clear statement
of your question. Not being hateful - just stating a fact.
xxxxxxxxxxxxxxx xxxxxxxxxxxxxxx xxxxxxxxxxxxxxx xxxxx
On Tue, 23 Jan 2007 09:54:18 -0600, Bob Alston <bo********@yah oo.com>
wrote:
>Looking for someone with experience building apps with multiple
instances of forms open. I am building an app for a nonprofit
organization s case workers. They provide services to the elderly.

so far I have built a traditional app, switchboard, forms, etc.
Part of this app is to automate the forms they previously prepared
manually.

After the app was built and works just fine, I find out there are
several case managers using MS word and forms built in Word. One
feature they like is the ability to have multiple copies of a form open
at the same time. They tell me this happens when they are in the
office, working on one case and the phone rings and they need to address
this other caller.

I am aware of technically how to open multiple copies of a form.
I am also aware that when the original/1st copy closes, so do all other
copies.
I was not aware that one could open more than a single instance of
a Form object in a single instance of the database. Perhaps if you
could share with us how you do that?
>
So has anyone out there built an app where there can be multiple copies
of a form that can be closed in any sequence?

Also how do you show to the user the forms currently open? Did you
build a special "open forms list" from which they can select a form and
bring up the selected form? (kinda like the list that word keeps of
open documents)

Any other tips or traps?

Thank you

Bob
Jan 23 '07 #2
MLH wrote:
When you address this NG and use the word Form or Forms
interchangeably referring to physical paper forms your IRS 501.C.3
has stacked on their shelves and to Access Form objects and
Report objects, you introduce a level of confusion that some folks
just don't wanna tackle. I'd consider reposting a more clear statement
of your question. Not being hateful - just stating a fact.
xxxxxxxxxxxxxxx xxxxxxxxxxxxxxx xxxxxxxxxxxxxxx xxxxx

>I was not aware that one could open more than a single instance of
a Form object in a single instance of the database. Perhaps if you
could share with us how you do that?
*************** *************** *************** *******

I have restated my posting to try to make it clearer which kind of form
- Access form, paper form or Microsoft Word document/form I am referring to.
Looking for someone with experience building apps with multiple
instances of Access forms open. I am building an app for a nonprofit
organizations case workers. They provide services to the elderly.

So far I have built a traditional Access app, switchboard, Access
forms, etc.
Part of this app is to automate the paper forms they previously prepared
manually.

After the app was built and works just fine, I find out there are
several case managers using MS word and electronic forms using MS
Word. One
feature they like is the ability to have multiple copies of a MS Word
document/form open
at the same time. They tell me this happens when they are in the
office, working on one case and the phone rings and they need to address
this other caller.

I am aware of technically how to open multiple copies of an Access form.
I am also aware that when the original/1st copy of an Access form
closes, so do all other
copies.

So has anyone out there built an app where there can be multiple copies
of an Access form that can be closed in any sequence?

Also how do you show to the user the Access forms currently open? Did
you
build a special "open forms list" (list of open Access forms) from
which they can select an Access form and
bring up the selected Access form? (kinda like the list that MS Word
keeps of
open documents)

Any other tips or traps?

Thank you

Bob

Also, here is a link to information about opening multiple copies (a
more correct word is instances)of a single Access form:

http://support.microsoft.com/default...;en-us;Q135369

http://allenbrowne.com/ser-35.html

Jan 23 '07 #3
>From a long time ago:

Dim aForms(1 To 10) As [Form_MDAC and ESO]

Sub CreateInstances ()
Dim z As Long
For z = LBound(aForms) To UBound(aForms)
Set aForms(z) = New [Form_MDAC and ESO]
aForms(z).Capti on = aForms(z).Capti on & "_" & z
aForms(z).Visib le = True
Next z
DoCmd.RunComman d acCmdWindowCasc ade
End Sub

Sub RemoveInstances ()
Erase aForms
End Sub

Jan 23 '07 #4
MLH
<snip>
Thx 4 the link explaining the opening of multiple instances of a form.
Could be useful. Did Lyle's suggestion solve your dilemma on closing
just one of them, keeping the rest open?
>
Also, here is a link to information about opening multiple copies (a
more correct word is instances)of a single Access form:

http://support.microsoft.com/default...;en-us;Q135369

http://allenbrowne.com/ser-35.html

Jan 24 '07 #5
MLH wrote:
<snip>
Thx 4 the link explaining the opening of multiple instances of a form.
Could be useful. Did Lyle's suggestion solve your dilemma on closing
just one of them, keeping the rest open?
>>

Also, here is a link to information about opening multiple copies (a
more correct word is instances)of a single Access form:

http://support.microsoft.com/default...;en-us;Q135369

http://allenbrowne.com/ser-35.html

It appears that the info in the links would allow all instances to be
opened and closed independently.

The information on the above two links is useful but not complete for
what I need to avoid pioneering. Otherwise I wouldn't have posted. I
was really looking for someone who had done this previously in an
application where multiple different forms could have multiple instances
open.

Key issues:

1) how to you list/show the user the instances open and allow them to
select one to bring to the top (perhaps some kind of menu selection that
would open up a popup form of open form instances).

2) How do you tag each instance so that whatever you do can be uniquely
identified. For example if these multiple instances are for multiple
customers, perhaps the customer name needs to be accessible in the
caption of the instance or in the list mentioned in #1 above.

I am sure there are other issues with trying to do this. I really don't
want to pioneer here. If others have done this successfully and are
willing to share, then I will pursue a bit further. Otherwise it isn't
worth it to do the R&D likely required right now.

Bob
Jan 24 '07 #6
Bob Alston wrote:
Key issues:

1) how to you list/show the user the instances open and allow them to
select one to bring to the top (perhaps some kind of menu selection that
would open up a popup form of open form instances).

2) How do you tag each instance so that whatever you do can be uniquely
identified. For example if these multiple instances are for multiple
customers, perhaps the customer name needs to be accessible in the
caption of the instance or in the list mentioned in #1 above.

I am sure there are other issues with trying to do this. I really don't
want to pioneer here. If others have done this successfully and are
willing to share, then I will pursue a bit further. Otherwise it isn't
worth it to do the R&D likely required right now.
Lyle's example used an array to hold each instance of a form. Arrays are very fast and
Collections are slower. But with a Collection you can specify a "Key" value - a unique
String value to identify the particular Object that you add to the Collection.

Then you can use that "Key" as an ID value to refer to, perhaps, an array of additional
information on the object (maybe an Employee Name, Badge Number, etc...)

Then you can use the Collection to list open forms.

The Access Developers Handbook has a chapter on this technique.

--
'---------------
'John Mishefske
'---------------
Jan 26 '07 #7

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

1
2456
by: Angie | last post by:
Hello, My name is Angela Mastrodonato. I'm a web designer who would like the assistance of a php programmer. Some of my clients have requested more dynamic web sites, and I am in the beginning phases of learning php. When it comes to common services, such as shopping carts, I have found ways to modify existing scripts. However, I have been getting requests for services that seem specific, and require a more customized approach than...
14
3167
by: Matt | last post by:
Any progammers looking for a killer app to develop? How about a voice enabled forum? One of the most powerful, exciting, and engrossing experiences on the Internet is the Forum. The first great Internet forums were the Usenet newsgroups. Usenet is still a powerful force, but many different types of forums are also very popular (such as message boards like Vbulliten and XMBforum). I love forums. Love em love em love em. My web site...
29
3753
by: Lauren Wilson | last post by:
Does anyone know how the following info is extracted from the user's computer by a Front Page form? HTTP User Agent: Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.7.5) Gecko/20041107 Firefox/1.0 I only ask because I believe I could use the same info as part of a scheme to generate a unique (or at least less common) serialized id code for the user's computer as part of a software locking and activation system. If I had a DLL...
4
1507
by: Gene Hubert | last post by:
I'm looking for a good coding project for the purpose of getting to the point of feeling proficient in VB.NET programming. I've read a few books, written several test apps, and have prior experience with OO programming. I'm looking for something that might take around 10-20 hours a week over 2-3 months. I have the VB.NET version that does not do web forms. If someone knows of a client-server project specification available on the...
12
2400
by: amogan | last post by:
**If interested & qualified, please reply with your resume directly to amogan@google.com** Referrals are always welcome!! Network System Test Engineer - Mountain View This position is available in Mountain View, CA.
0
9238
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven tapestry of website design and digital marketing. It's not merely about having a website; it's about crafting an immersive digital experience that captivates audiences and drives business growth. The Art of Business Website Design Your website is...
1
9157
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows Update option using the Control Panel or Settings app; it automatically checks for updates and installs any it finds, whether you like it or not. For most users, this new feature is actually very convenient. If you want to control the update process,...
0
9088
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each protocol has its own unique characteristics and advantages, but as a user who is planning to build a smart home system, I am a bit confused by the choice of these technologies. I'm particularly interested in Zigbee because I've heard it does some...
1
6681
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 1 May 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome a new presenter, Adolph Dupré who will be discussing some powerful techniques for using class modules. He will explain when you may want to use classes instead of User Defined Types (UDT). For example, to manage the data in unbound forms. Adolph will...
0
5995
by: conductexam | last post by:
I have .net C# application in which I am extracting data from word file and save it in database particularly. To store word all data as it is I am converting the whole word file firstly in HTML and then checking html paragraph one by one. At the time of converting from word file to html my equations which are in the word document file was convert into image. Globals.ThisAddIn.Application.ActiveDocument.Select();...
0
4502
by: TSSRALBI | last post by:
Hello I'm a network technician in training and I need your help. I am currently learning how to create and manage the different types of VPNs and I have a question about LAN-to-LAN VPNs. The last exercise I practiced was to create a LAN-to-LAN VPN between two Pfsense firewalls, by using IPSEC protocols. I succeeded, with both firewalls in the same network. But I'm wondering if it's possible to do the same thing, with 2 Pfsense firewalls...
0
4762
by: adsilva | last post by:
A Windows Forms form does not have the event Unload, like VB6. What one acts like?
1
3207
by: 6302768590 | last post by:
Hai team i want code for transfer the data from one system to another through IP address by using C# our system has to for every 5mins then we have to update the data what the data is updated we have to send another system
2
2602
muto222
by: muto222 | last post by:
How can i add a mobile payment intergratation into php mysql website.

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.