472,804 Members | 1,575 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 472,804 software developers and data experts.

Can't get information to display in a lable control on one form from another.

When I add the name of a new individual in a, bound form, it will not
display that person’s name in a label control of a second unbound form.

I have a scheduling program that I am working on. Included in the
application program is a data “GRID” which I believe was created using
Visual Basic, not standard Access. Its purpose is to display the
results of a range of “from-to-dates” of registrations for different
clients. The difficulty that I am having is in displaying new
registrant names in a display label of a second form when it’s GRID is
immediately accessed via a command button after a registration is
completed. The display label works just fine for existing entries that
came with the data GRID module that I previously purchased. It’s just
when I try to add NEW entries that the label control will not
work/refresh. However, other than the names of new entries not
appearing in the label control, the range of start to end-date for these
entries, created in the first form, does display in the GRID of the
second form as it should.

The following is a description of how everything is supposed to work:

I have three forms; two with tables and one (unbound) display form with
a data Grid that graphically start to end-date in a bar graphic:

1. Form: frmGuest (label name: fsubGuest)
Table: tblGuest
Field: GuestID (label name: cboGuestID) which holds the registered
name

This form is used to create individual records/accounts for future
registrations and the
listing of past Registrations.
2. Form: frmStatus
Table: tblstatus

Form is used to create registration schedules for individuals pulled
from the above form, “frmGuest” and table, “tblGuest”. You normally
would select a name from a combo box on this, “frmStatus”, form along
with selecting the appropriate start and end-dates.

This form contains a command button for accessing the data Grid for
viewing results of the date range for an appointment just created. .

When you press the command button, you are immediately taken to the
scheduling data Grid (frmMain).

Whatever name you had selected before pressing the command button,
above, should now appear in the, label control, “lblCurrStat” on the,
“frmMain form below along with the graphically depicted corresponding
date range in the Grid in the form of a bar graph.

3. Form: frmMain
Table: unbound

Form is used to graphically display the registrant’s start to end-date,
just made from the form, “frmStatus”, in frmMain form and the data GRID.

The form, “frmMain” contains the label control, “lblCurrStat” that
displays the name of an individual selected in the, “frmStatus” form
along with a couple of other pieces of information corresponding with
the bar graph.

Again, all the above will work, except ONLY WITH EXISTING registrations,
but not new ones. When you add the name of a new individual in the form
(along with a couple of pieces of information), “frmGuest” and table,
“tblGuest” described above, it will not display that person’s name in
the label control, “lblCurrStat” located on the, “frmMain” form.
However, the date range for the registration does show up in the data
GRID of the same form.

Here is a portion of the Module, "basGrid" that I use to reference the
label control, "lblCurrStat" located on the, “frmMain” Grid form that is
supposed to refresh the registrants name and other information:

With frmS

frmM!lblCurrStat.Caption = !cboGuestID.Column(1) & vbCrLf & _
!cboUnitID & vbCrLf & _
!cboStatusType.Column(1)
End With
ExitLine:
Exit Sub
End Sub

To show that it “should” work; all I have to do is change the
“Column(1)” number. The information in the, “lblCurrStat”label control
on the, “frmMain” form will change as a result, but only on old entries.


*** Sent via Developersdex http://www.developersdex.com ***
May 2 '06 #1
1 2547
"John Phelan-Cummings" <jp*********@hotmail.com> wrote
When I add the name of a new individual
in a, bound form, it will not display that
person's name in a label control of a
second unbound form.
Why _should_ it? What you describe is not a feature or function of Access --
it is something that would have to be accomplished by programming. So the
question would be: _what_, if anything, have you implemented to make the
name be automatically displayed on another form.
I have a scheduling program that I am working
on. Included in the application program is a data
"GRID" which I believe was created using
Visual Basic, not standard Access. Its purpose is
to display the results of a range of "from-to-dates"
of registrations for different clients. The difficulty
that I am having is in displaying new registrant names
in a display label of a second form when it's GRID
is immediately accessed via a command button after
a registration is completed. The display label works
just fine for existing entries that came with the data
GRID module that I previously purchased. It's just
when I try to add NEW entries that the label control
will not work/refresh. However, other than the
names of new entries not appearing in the label control,
the range of start to end-date for these entries, created
in the first form, does display in the GRID of the
second form as it should.


Now, as I understand it, you have obtained/purchased/licensed a third-party
product, a grid, intended for VB and are using it in Access? And, it is
that third-party product (ActiveX control?) that isn't working as you expect
it to?

There are many grids available, most of them intended for use with VB, or
C++, or Delphi, or some other languages; most of them are also untested with
Access, and whether they will or will not work is just a "hit or miss"
proposition. If you don't state the name of the third-party product (grid),
your chances of finding someone who has happened to have tried it with
Access are near zero. If you do, you may not have much luck, because Access
has datasheet view, and continuous forms view, which have most of the
functionality of many "grids", and because they are parts of Access, and
thus not-extra-cost, are used by most Access developers.

My suggestion is that you likely need to take your question to the author /
vendor of the third-party product, if (as I infer) it is the third-party
product that has the problem.

Larry Linson
Microsoft Access MVP

May 6 '06 #2

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

Similar topics

4
by: deko | last post by:
I can't move a multi-page report to the last record unless I keep the popup form (that defined it's subreports) open. DoCmd.OpenReport "rptStandard", acViewNormal DoCmd.Close acForm,...
12
by: VB Programmer | last post by:
I know some sites will display the following message if you click on the BACK button in your browser. How do I implement this feature? Warning: Page has Expired The page you requested was...
1
by: Bob H | last post by:
Hi, I've a data repeater on a form that gets populated from an SP. In the repeater, I've a ItemTemplate row that outputs the field... <td colspan="1"> <%# DataBinder.Eval(Container.DataItem,...
0
by: Brian Henry | last post by:
I thought this was useful, its a extender i just wrote for the new .NET menu strip and status strip to extend the menu items to add a status message so when a mouse rolls over the item it displays...
4
by: D | last post by:
Hi I'm obviously still learning here but what I've created is a page with a calendar and button. When I click the button I do a number of tasks and would like to output the progress in messages...
8
by: =?Utf-8?B?R3JlZyBMYXJzZW4=?= | last post by:
I'm trying to figure out how to modify a panel (panel1) from a backgroundworker thread. But can't get the panel to show the new controls added by the backgroundwork task. Here is my code. In...
5
by: iKiLL | last post by:
Hi All, I am trying to Bulid Windows Mobile Forms Control with C# in VS2005 using CF2. On this control A lable is created and some text set for the control. My problem is that i dont know how...
3
by: Ryan Liu | last post by:
Hi, I have a big urgent problem to solve. I used to use Windows 2000 Chinese version, now I installed Windows XP (English) system. The problem is not about 2000 or XP, it is about English...
3
by: =?Utf-8?B?UmljaA==?= | last post by:
I placed an empty label control on a form. I could drag the mouse across the form in design view to locate the lbl. But I have since moved a few controls on the form around, and now I cannot...
2
isladogs
by: isladogs | last post by:
The next Access Europe meeting will be on Wednesday 2 August 2023 starting at 18:00 UK time (6PM UTC+1) and finishing at about 19:15 (7.15PM) The start time is equivalent to 19:00 (7PM) in Central...
0
by: erikbower65 | last post by:
Using CodiumAI's pr-agent is simple and powerful. Follow these steps: 1. Install CodiumAI CLI: Ensure Node.js is installed, then run 'npm install -g codiumai' in the terminal. 2. Connect to...
0
linyimin
by: linyimin | last post by:
Spring Startup Analyzer generates an interactive Spring application startup report that lets you understand what contributes to the application startup time and helps to optimize it. Support for...
0
by: kcodez | last post by:
As a H5 game development enthusiast, I recently wrote a very interesting little game - Toy Claw ((http://claw.kjeek.com/))。Here I will summarize and share the development experience here, and hope it...
14
DJRhino1175
by: DJRhino1175 | last post by:
When I run this code I get an error, its Run-time error# 424 Object required...This is my first attempt at doing something like this. I test the entire code and it worked until I added this - If...
0
by: Rina0 | last post by:
I am looking for a Python code to find the longest common subsequence of two strings. I found this blog post that describes the length of longest common subsequence problem and provides a solution in...
0
by: lllomh | last post by:
Define the method first this.state = { buttonBackgroundColor: 'green', isBlinking: false, // A new status is added to identify whether the button is blinking or not } autoStart=()=>{
0
by: Mushico | last post by:
How to calculate date of retirement from date of birth
2
by: DJRhino | last post by:
Was curious if anyone else was having this same issue or not.... I was just Up/Down graded to windows 11 and now my access combo boxes are not acting right. With win 10 I could start typing...

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.