473,795 Members | 2,867 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

curious about command buttons

Stu
When I have a form in view mode, the buttons at the bottom open several
other forms, such as a contact list, and a "home" page. If I leave the
cursor over the button for a second, the little yellow box comes up but
tells me "open form" since I used the wizard to create code to open the
form. Can this text in the yellow box be changed from "open form" to
"contact list" or "home"? If this can be done, how would I go about
it? This of course isn't a life or death situation for my database,
but am just more curious than anything. Any ideas?

Stuart K.

Nov 13 '05 #1
5 1135
Stu wrote:
When I have a form in view mode, the buttons at the bottom open
several other forms, such as a contact list, and a "home" page. If I
leave the cursor over the button for a second, the little yellow box
comes up but tells me "open form" since I used the wizard to create
code to open the form. Can this text in the yellow box be changed
from "open form" to "contact list" or "home"? If this can be done,
how would I go about it? This of course isn't a life or death
situation for my database, but am just more curious than anything.
Any ideas?

Stuart K.


That is controlled by the ControlTipText property of the control. You will find
it on the { Other } tab of the property sheet.

--
I don't check the Email account attached
to this message. Send instead to...
RBrandt at Hunter dot com
Nov 13 '05 #2
Stu wrote:
When I have a form in view mode, the buttons at the bottom open several
other forms, such as a contact list, and a "home" page. If I leave the
cursor over the button for a second, the little yellow box comes up but
tells me "open form" since I used the wizard to create code to open the
form. Can this text in the yellow box be changed from "open form" to
"contact list" or "home"? If this can be done, how would I go about
it? This of course isn't a life or death situation for my database,
but am just more curious than anything. Any ideas?


In the design view of the form, select the command button and open the
properties window if it is not already open (press alt-enter). Under
the "Other" tab, go to Control tip text and bang in whatever you want.

--
Tim http://www.ucs.mun.ca/~tmarshal/
^o<
/#) "Burp-beep, burp-beep, burp-beep?" - Quaker Jake
/^^ "Whatcha doin?" - Ditto "TIM-MAY!!" - Me
Nov 13 '05 #3
The text sits in one of the properties for the button. It is called
ControlTipText, and is located two before the last on the Other tab of
the property sheet.

Stu wrote:
When I have a form in view mode, the buttons at the bottom open several
other forms, such as a contact list, and a "home" page. If I leave the
cursor over the button for a second, the little yellow box comes up but
tells me "open form" since I used the wizard to create code to open the
form. Can this text in the yellow box be changed from "open form" to
"contact list" or "home"? If this can be done, how would I go about
it? This of course isn't a life or death situation for my database,
but am just more curious than anything. Any ideas?

Stuart K.


--
Bas Cost Budde, Holland
http://www.heuveltop.nl/BasCB/msac_index.html
For human replies, replace the queue with a tea

Nov 13 '05 #4
So why doesn't your answer show up in my news reader before I post mine? :-)

--
Bas Cost Budde, Holland
http://www.heuveltop.nl/BasCB/msac_index.html
For human replies, replace the queue with a tea

Nov 13 '05 #5
Stu
Wow, lots of quick responses.
I guess that was pretty easy now that I know where to look...
Thanks Everyone...

Nov 13 '05 #6

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

Similar topics

0
1073
by: Kevin McLean | last post by:
I have serveral ASP web pages containing command buttons that perform different functions. This web site has been running for serveral months without any problems. I had taken a vacation and when i came back my command buttons do not work. When i test them on my development computer everything works fine. I rebuild my solution and republish it on the web server and the command buttons stop working. I am using visual studio .net 2003...
1
5885
by: Tim | last post by:
I have one main form that I use to view data as well as add new records. When I click the add new record button, many of the form's controls that arn't needed get set to invisible. When I'm done entering the new record, I want to click on a command button that resets and requeries the form to the state it is in when it first opens. What would the VBA code be for such a command button ?
1
2010
by: KD | last post by:
I am developing an application that will be used with a touch screen monitor, so it needs to be driven by command buttons. I have a products table which i need to use to create a form with an array of command buttons, so the user can basically add a product by clicking on a button. I was thinking of doing it with continuous forms but since i can only have one column of buttons that way it wont work. Any help will be much appreciated. ...
3
3025
by: Susan Bricker | last post by:
Is it possible to make command buttons (in forms) have a background color? Or is there a means to simulate a command button and make it have a background color and able to kickoff a 'click' event? Thanks. Sue *** Sent via Devdex http://www.devdex.com *** Don't just participate in USENET...get rewarded for it!
1
2319
by: bjbounce2002 | last post by:
Hello, I am using forms with command buttons to close form or run action queries. The error messages such as "Null value in required field" or "duplicate value in primary key" are suppressed. The error messages appear when runnign the apend query manually or when closing the form using X, but not when using command buttons. Does anyone know how can the messages be displayed when using command
14
4973
by: Kevin | last post by:
A couple of easy questions here hopefully. I've been working on two different database projects which make use of multiple forms. 1. Where's the best/recommended placement for command buttons for things like delete, save, edit, cancel buttons - in the footer, or on the form detail section? 2. If in the footer, how do you add them to the tab order?
21
13019
by: MLH | last post by:
If I choose a command button on a form in design view, open the properties box and click the Picture property and its wiz button, I'm presented with a lengthy list of pictures. Everything from Add Table, Address Book, Airplane to Underline, Undo, Undo (Rewind). I would like to know where they are stored. I thought it might be c:\program files\microsoft office\office\bitmaps but I don't think so. Anybody know where they are stored and...
5
2091
by: Laphan | last post by:
Hi All Just to confirm, is it true that you can't change the image of an <INPUT TYPE="IMAGE".... from within a CSS styelsheet? I know the standard command is SRC="....", but there doesn't seem to be a command in CSS that manipulates this value. Any get arounds?
16
2738
by: Steve | last post by:
I am working on a database that has a main menu, many sub-menus and some sub-sub-menus. They are all forms that have numerous command buttons on them to open forms and reports in the database. The database has hundreds of forms and reports. I was asked to go through all the menu forms and determine if all the buttons worked, if there were any problems when either the form or report opened and to come up with a list of the forms and reports...
0
9673
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However, people are often confused as to whether an ONU can Work As a Router. In this blog post, we’ll explore What is ONU, What Is Router, ONU & Router’s main usage, and What is the difference between ONU and Router. Let’s take a closer look ! Part I. Meaning of...
0
9522
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
10448
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers, it seems that the internal comparison operator "<=>" tries to promote arguments from unsigned to signed. This is as boiled down as I can make it. Here is my compilation command: g++-12 -std=c++20 -Wnarrowing bit_field.cpp Here is the code in...
1
10167
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
10003
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...
0
9046
agi2029
by: agi2029 | last post by:
Let's talk about the concept of autonomous AI software engineers and no-code agents. These AIs are designed to manage the entire lifecycle of a software development project—planning, coding, testing, and deployment—without human intervention. Imagine an AI that can take a project description, break it down, write the code, debug it, and then launch it, all on its own.... Now, this would greatly impact the work of software developers. The idea...
1
7544
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
5440
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...
2
3730
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.