473,472 Members | 2,168 Online
Bytes | Software Development & Data Engineering Community
Create Post

Home Posts Topics Members FAQ

How to display a specific text in the MS Access Status Bar

2 New Member
The command doCmd.Echo or Application.Echo are not enabling to display a specific text in my MS Access Status Bar.
Any particular additional actions not specified in the MS Access Std Help?
Mar 8 '17 #1

✓ answered by PhilOfWalton

Something like
Expand|Select|Wrap|Line Numbers
  1. Call SysCmd(acSysCmdSetStatus, "Checking for an internet connection...")
  2.  
Sets the status bar

and

Expand|Select|Wrap|Line Numbers
  1. Call SysCmd(acSysCmdClearStatus)
  2.  
Removes it

Read up on the SysCmd function as you can also use the status bar as a progress meter.

I personally find the status bar is a bit insignificant, so I use my own version.


Phil

3 6894
PhilOfWalton
1,430 Recognized Expert Top Contributor
Something like
Expand|Select|Wrap|Line Numbers
  1. Call SysCmd(acSysCmdSetStatus, "Checking for an internet connection...")
  2.  
Sets the status bar

and

Expand|Select|Wrap|Line Numbers
  1. Call SysCmd(acSysCmdClearStatus)
  2.  
Removes it

Read up on the SysCmd function as you can also use the status bar as a progress meter.

I personally find the status bar is a bit insignificant, so I use my own version.


Phil
Mar 8 '17 #2
FULVIO PELLEGRO
2 New Member
Thks, it was useful !
Hope to be able to return the favor.
Mar 8 '17 #3
jforbes
1,107 Recognized Expert Top Contributor
I use this function to simplify things:
Expand|Select|Wrap|Line Numbers
  1. Public Sub setStatus(ByRef sStatus As String)
  2.     ' Sets the Status Bar Text
  3.     If sStatus = "" Then
  4.         Call SysCmd(acSysCmdClearStatus)
  5.     Else
  6.         Call SysCmd(acSysCmdSetStatus, sStatus)
  7.     End If
  8.     DoEvents
  9. End Sub
No big deal, just thought I would share it.
Mar 8 '17 #4

Sign in to post your reply or Sign up for a free account.

Similar topics

1
by: David Thomas | last post by:
Hi there, a while ago, I posted a question regarding reading japanese text from a text file. Well, since I solved the problem, I thought I'd post my solution for the benefit of other people with...
4
by: hoke | last post by:
I want to display plain text files in the browser. The files contain html and javascript and have a .txt extension. This works fine with files with just html. Unfortunately when showing files with...
4
by: Tigrou | last post by:
Hello, In a Oracle Database i have text who are stored, this text are in RTF format, you can see an example below: {\rtf1\ansi\ansicpg1252\deff0\deflang1036{\fonttbl{\f0\froman\fcharset0...
0
by: Doots | last post by:
Hello, Since 2 months i'm looking for a solution for display rtf text in an aspx page. The only component who can do it is RichTextBox but it's too expensive. Then if anyone know a solution for...
2
by: ruben20 | last post by:
Hi: I've migrated a couple of weeks ago from 7.4.2 to 7.4.5 and I am getting this error after executing a query: Warning: pg_exec() query failed: ERROR: could not access status of transaction...
1
by: Don Croner | last post by:
I am using access 2003 with windows xp. I have created a data base for to keep track of my 180 employees. I have created a table with 21 records. Then I created a form to input employee data. I...
0
by: praveenkumark | last post by:
Hi, when i click a link, i am calling a html page. In that page, it will load the data from database(MS-Access). So if the records are more it is taking time to load. So better i want ot...
8
by: TravelingCat | last post by:
Hello, The boss wants to be able to write text and design it as he wishes (bold/colors/different fonts/different sizes/etc). I handled that as follows, every time he wants to write text i create a...
8
by: Peter Dam | last post by:
I use in Excel the formula =NETWORKDAYS(A2;B2)for calculating the number of days between the dates in cells A2 and B2. The result is in Cell C2 However, I would like to display a Predifined Text in...
0
by: ByteCat | last post by:
Would like to display a specific area of an external website using iFrames. 1) Auto scrolling to target area. Display specific name position. 2) By clicking the name (link). scrolling to target...
0
by: Hystou | last post by:
There are some requirements for setting up RAID: 1. The motherboard and BIOS support RAID configuration. 2. The motherboard has 2 or more available SATA protocol SSD/HDD slots (including MSATA, M.2...
0
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...
1
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...
0
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...
1
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...
0
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...
0
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...
0
by: adsilva | last post by:
A Windows Forms form does not have the event Unload, like VB6. What one acts like?
0
muto222
php
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.