473,802 Members | 1,988 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

User-selection of records, a unique problem. How to approach?

I have been working on a project that uses MS Access to get mutual fund
performance and write it to a spreadsheet in a formatted manner. The user
inputs the company name, the database looks at the company's 401k fund
holdings and extracts the performance info and benchmark info for them. It
writes out the information to a spreadsheet embedded on an Access form and
simultaneously writes the same info to Excel. I also have logic built in
that will compare the performance of the fund to its benchmarks and will
highlight the row in the spreadsheet if if fails to beat one or both of its
benchmarks on a 3-yr basis.

Now, if an existing fund is performing poorly, I'd like to give the user
the option to select alternative mutual funds from our master list of such
funds. One idea I have toyed with is to embed checkboxes on the
spreadsheet and have the user check the boxes if they'd like to see what
alternatives we can offer. I am not sure if or how that would work.
Another idea is to put a list of funds into a popup dialog box with
checkboxes in it. I'm pretty sure that is doable in Access.

Has anyone been in a similar situation? What would be a good way to
approach this? Pitfalls to look out for? Just looking for a general
approach at this point. Thanks for any ideas that you have.
Nov 12 '05 #1
2 1375
Colleyville Alan wrote:
I have been working on a project that uses MS Access to get mutual fund
performance and write it to a spreadsheet in a formatted manner. The user
inputs the company name, the database looks at the company's 401k fund
holdings and extracts the performance info and benchmark info for them. It
writes out the information to a spreadsheet embedded on an Access form and
simultaneously writes the same info to Excel. I also have logic built in
that will compare the performance of the fund to its benchmarks and will
highlight the row in the spreadsheet if if fails to beat one or both of its
benchmarks on a 3-yr basis.

Now, if an existing fund is performing poorly, I'd like to give the user
the option to select alternative mutual funds from our master list of such
funds. One idea I have toyed with is to embed checkboxes on the
spreadsheet and have the user check the boxes if they'd like to see what
alternatives we can offer. I am not sure if or how that would work.
Another idea is to put a list of funds into a popup dialog box with
checkboxes in it. I'm pretty sure that is doable in Access.

Has anyone been in a similar situation? What would be a good way to
approach this? Pitfalls to look out for? Just looking for a general
approach at this point. Thanks for any ideas that you have.


Another option would be a listbox. WIth a list box property sheet, you can set
MultiSelect to None (1 selection only) or simple/extended (multiple
selections). Once the funds are selected, the methods/properties to look at
include ListIndex, ItemsSelected, ListCount, Selected, ItemData, Column in
online help. Consider a listbox a bid combobox where you can make multiple
selections.
Nov 12 '05 #2
"Salad" <oi*@vinegar.co m> wrote in message
news:40******** *******@vinegar .com...

Now, if an existing fund is performing poorly, I'd like to give the user the option to select alternative mutual funds from our master list of such funds. One idea I have toyed with is to embed checkboxes on the
spreadsheet and have the user check the boxes if they'd like to see what
alternatives we can offer. I am not sure if or how that would work.
Another idea is to put a list of funds into a popup dialog box with
checkboxes in it. I'm pretty sure that is doable in Access.

Has anyone been in a similar situation? What would be a good way to
approach this? Pitfalls to look out for? Just looking for a general
approach at this point. Thanks for any ideas that you have.
Another option would be a listbox. WIth a list box property sheet, you

can set MultiSelect to None (1 selection only) or simple/extended (multiple
selections). Once the funds are selected, the methods/properties to look at include ListIndex, ItemsSelected, ListCount, Selected, ItemData, Column in
online help. Consider a listbox a bid combobox where you can make multiple selections.


Thanks, I'll have a look at it.
Nov 12 '05 #3

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

Similar topics

60
7310
by: Fotios | last post by:
Hi guys, I have put together a flexible client-side user agent detector (written in js). I thought that some of you may find it useful. Code is here: http://fotios.cc/software/ua_detect.htm The detector requires javascript 1.0 to work. This translates to netscape 2.0 and IE 3.0 (although maybe IE 2.0 also works with it)
2
3053
by: Jesper Stocholm | last post by:
I have implemented role-based security within my ASP.Net application. However, it seems the role is not passed to the authentication ticket I create. I want to use it to display/hide some content based on the user's role. I wrote this to do it: if (HttpContext.Current.User.Identity.IsAuthenticated) { plLoggedIn.Visible = true;
3
1955
by: Jiho Han | last post by:
Should ASPNET user belong to the local Users group? I may have made some changes that affected my workstation setup and I am experiencing some unexpected behaviors. For example, I have my IIS set up with anonymous login and have ASP.NET running. My ASP.NET application then creates a log file and writes to it during its course. The only thing is that it should not be able to. My questions are below. Please correct any incorrect...
13
6234
by: Michael | last post by:
I have setup a public variable in the Master Page "code-behind-file". Now I would like to set that value from the UserControl, but I can't seem to find a way to do this. Does anyone have any ideas? I'm basically trying to set it up so that I can keep the User infor (userid, ect) in the Masterpage so that other pages can access it. Thanks for any ideas. Michael
8
3029
by: fernandezr | last post by:
I would like to use a user control as a template inside a repeater. Some of the fields in the control should be hidden depending on whether or not there is data. I'm still a ASP .Net newbie so the way I'm going about doing this might be a little off. I'd appreciate some help. Below is the code I have thus far but I'm not sure how to reference the user control within the foreach loop. <asp:Panel ID="pnlRosterProfile" runat="Server" />
3
10926
by: Dmitry | last post by:
I am trying to figure out how to pass set of credentials to System.IO Challenge is: App is running under one set of credentials, but via GUI user have a chance to enter another set. I would like to be able to use supplied credentials with System.IO versus using default credentials that app is running under. So far I am forced to use WMI which is less convenient and slower then System.IO, but it's providing me with "Connection Options"
3
2800
by: Terry Olsen | last post by:
I'm trying to add a domain user to a local group using the code below: Dim LCL As New DirectoryEntry("WinNT://" + Environment.MachineName + ",computer") Dim DOM As New DirectoryEntry("WinNT://us.ups.com") Dim DOMUSR As DirectoryEntry = DOM.Children.Find("USERID", "user") Dim LCLGRP As DirectoryEntry = LCL.Children.Find("LOCAL_GROUP", "group")
4
2504
by: Scott M. | last post by:
When profile data is stored in ASP .NET, where is the user data persisted? For how long is it persisted: is it session persisted or permanent (like a cookie)?
1
20408
by: =?Utf-8?B?Qi5BaGxzdGVkdA==?= | last post by:
Hi all, This is something that I have been toying with for about a week now. What I want to achieve is Install a Service with Customised parameters (using InstallUtil.exe) for User Name. Example (C#); public class MyServiceInstaller : System.Configuration.Install.Installer { private System.ServiceProcess.ServiceProcessInstaller serviceProcessInstaller;
0
3236
by: rbukkara | last post by:
Hi, I have got the following error while trying to add a user in the LDAP Directory. javax.naming.NameNotFoundException: ; remaining name 'uid=vassila,ou=People,dc=cs,dc=uno,dc=edu' I have given all the attributes which are needed, for the user, in the code and also the proper path where the user has to be added. Please have a look at my code CODE] // This is a class file which stores all the info required for the user
0
9562
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can effortlessly switch the default language on Windows 10 without reinstalling. I'll walk you through it. First, let's disable language synchronization. With a Microsoft account, language settings sync across devices. To prevent any complications,...
0
10305
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
10285
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
10063
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
7598
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
5494
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
5622
by: adsilva | last post by:
A Windows Forms form does not have the event Unload, like VB6. What one acts like?
1
4270
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
3
2966
bsmnconsultancy
by: bsmnconsultancy | last post by:
In today's digital era, a well-designed website is crucial for businesses looking to succeed. Whether you're a small business owner or a large corporation in Toronto, having a strong online presence can significantly impact your brand's success. BSMN Consultancy, a leader in Website Development in Toronto offers valuable insights into creating effective websites that not only look great but also perform exceptionally well. In this comprehensive...

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.