473,386 Members | 1,973 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

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

disable command_click temporarly

Dear All,

Opening a access-interface it first show company-news that the user should
read.
The text is shown line by line on a black background and is read from a
txt-file that I update every day.
The tekst is rolling if it is longer than 55 chars.
Right from the text there is a Command-button that imports the next line
On_Click.
The user can click it or press ENTER (since it is the only tab-controle).
BUT, while a long line is rolling the computer should NOT store clicks or
enter-stokes because following line(s) are skipped.

Example: If you click the button while line 3 is rolling you never see line
4 and jumps directly to line 5.
In fact line4 is displayed so quicky that you don't see it.

OR, can I empty the store (how do they call it?) of mouse-clicks or
key-strokes when a rollingtext is finished ?

Thanks,

Filip
Aug 21 '07 #1
5 1491
Filips Benoit wrote:
Dear All,

Opening a access-interface it first show company-news that the user should
read.
The text is shown line by line on a black background and is read from a
txt-file that I update every day.
The tekst is rolling if it is longer than 55 chars.
Right from the text there is a Command-button that imports the next line
On_Click.
The user can click it or press ENTER (since it is the only tab-controle).
BUT, while a long line is rolling the computer should NOT store clicks or
enter-stokes because following line(s) are skipped.

Example: If you click the button while line 3 is rolling you never see line
4 and jumps directly to line 5.
In fact line4 is displayed so quicky that you don't see it.

OR, can I empty the store (how do they call it?) of mouse-clicks or
key-strokes when a rollingtext is finished ?

Thanks,

Filip

I'm not sure why you are putting the users through the agony of reading
something line by line. Have you considered a large text box, setting
the scroll bar property to true on the text box and then reading the
entire text file into it? Like
Dim lngLen As Long
Close #1
Open strfile For Input As #1
lngLen = FileLen(strfile)
Me.TextFieldName = Input(lngLen, #1)
' Close the text file
Close #1

If you must give them 1 line by line why don't you make the text box
deeper and set the scroll bar to true.

Aug 21 '07 #2
Ok, but i still want to try it line by line to force the user to read it
slowly and attentivly.
Later I want to use the rest of the screen for correspondig images.

Filip

"Salad" <oi*@vinegar.comwrote in message
news:13*************@corp.supernews.com...
Filips Benoit wrote:
>Dear All,

Opening a access-interface it first show company-news that the user
should read.
The text is shown line by line on a black background and is read from a
txt-file that I update every day.
The tekst is rolling if it is longer than 55 chars.
Right from the text there is a Command-button that imports the next line
On_Click.
The user can click it or press ENTER (since it is the only tab-controle).
BUT, while a long line is rolling the computer should NOT store clicks or
enter-stokes because following line(s) are skipped.

Example: If you click the button while line 3 is rolling you never see
line 4 and jumps directly to line 5.
In fact line4 is displayed so quicky that you don't see it.

OR, can I empty the store (how do they call it?) of mouse-clicks or
key-strokes when a rollingtext is finished ?

Thanks,

Filip

I'm not sure why you are putting the users through the agony of reading
something line by line. Have you considered a large text box, setting the
scroll bar property to true on the text box and then reading the entire
text file into it? Like
Dim lngLen As Long
Close #1
Open strfile For Input As #1
lngLen = FileLen(strfile)
Me.TextFieldName = Input(lngLen, #1)
' Close the text file
Close #1

If you must give them 1 line by line why don't you make the text box
deeper and set the scroll bar to true.

Aug 21 '07 #3
On Aug 21, 3:16 pm, "Filips Benoit" <benoit.fil...@telenet.bewrote:
Ok, but i still want to try it line by line to force the user to read it
slowly and attentivly.
Later I want to use the rest of the screen for correspondig images.

Filip

"Salad" <o...@vinegar.comwrote in message

news:13*************@corp.supernews.com...
Filips Benoit wrote:
Dear All,
Opening a access-interface it first show company-news that the user
should read.
The text is shown line by line on a black background and is read from a
txt-file that I update every day.
The tekst is rolling if it is longer than 55 chars.
Right from the text there is a Command-button that imports the next line
On_Click.
The user can click it or press ENTER (since it is the only tab-controle).
BUT, while a long line is rolling the computer should NOT store clicks or
enter-stokes because following line(s) are skipped.
Example: If you click the button while line 3 is rolling you never see
line 4 and jumps directly to line 5.
In fact line4 is displayed so quicky that you don't see it.
OR, can I empty the store (how do they call it?) of mouse-clicks or
key-strokes when a rollingtext is finished ?
Thanks,
Filip
I'm not sure why you are putting the users through the agony of reading
something line by line. Have you considered a large text box, setting the
scroll bar property to true on the text box and then reading the entire
text file into it? Like
Dim lngLen As Long
Close #1
Open strfile For Input As #1
lngLen = FileLen(strfile)
Me.TextFieldName = Input(lngLen, #1)
' Close the text file
Close #1
If you must give them 1 line by line why don't you make the text box
deeper and set the scroll bar to true.- Hide quoted text -

- Show quoted text -
You CANNOT force anyone to do anything. If I were given such an app I
would simply click until it goes away no matter how long I had to wait
between clicks. Progrmas should not be designed so thay are obnoxious
and a pain in the ass. A pretty low brow was to set up a database if
you ask me.

Aug 21 '07 #4
Filips Benoit wrote:
Ok, but i still want to try it line by line to force the user to read it
slowly and attentivly.
It's your program so you can do what you want. But why not make the
text box that displays the data LARGER with SCROLL BARS so the folks can
scroll thru the text?
Later I want to use the rest of the screen for correspondig images.

Filip

>
"Salad" <oi*@vinegar.comwrote in message
news:13*************@corp.supernews.com...
>>Filips Benoit wrote:

>>>Dear All,

Opening a access-interface it first show company-news that the user
should read.
The text is shown line by line on a black background and is read from a
txt-file that I update every day.
The tekst is rolling if it is longer than 55 chars.
Right from the text there is a Command-button that imports the next line
On_Click.
The user can click it or press ENTER (since it is the only tab-controle).
BUT, while a long line is rolling the computer should NOT store clicks or
enter-stokes because following line(s) are skipped.

Example: If you click the button while line 3 is rolling you never see
line 4 and jumps directly to line 5.
In fact line4 is displayed so quicky that you don't see it.

OR, can I empty the store (how do they call it?) of mouse-clicks or
key-strokes when a rollingtext is finished ?

Thanks,

Filip


I'm not sure why you are putting the users through the agony of reading
something line by line. Have you considered a large text box, setting the
scroll bar property to true on the text box and then reading the entire
text file into it? Like
Dim lngLen As Long
Close #1
Open strfile For Input As #1
lngLen = FileLen(strfile)
Me.TextFieldName = Input(lngLen, #1)
' Close the text file
Close #1

If you must give them 1 line by line why don't you make the text box
deeper and set the scroll bar to true.


Aug 21 '07 #5

"Filips Benoit" <be***********@telenet.beschreef in bericht news:zC*********************@phobos.telenet-ops.be...
Dear All,

Opening a access-interface it first show company-news that the user should
read.
The text is shown line by line on a black background and is read from a
txt-file that I update every day.
The tekst is rolling if it is longer than 55 chars.
Right from the text there is a Command-button that imports the next line
On_Click.
The user can click it or press ENTER (since it is the only tab-controle).
BUT, while a long line is rolling the computer should NOT store clicks or
enter-stokes because following line(s) are skipped.

Example: If you click the button while line 3 is rolling you never see line
4 and jumps directly to line 5.
In fact line4 is displayed so quicky that you don't see it.

OR, can I empty the store (how do they call it?) of mouse-clicks or
key-strokes when a rollingtext is finished ?

Thanks,

Filip
I agree with others here that I would very much dislike such a 'nagging' app...
Also: When the app is closed and opened again they have to read it again and again ??

If you want to *force* the users to actually *read* the text, you can't!
People 'could' close their eyes while clicking... ;-)
(Well you 'could' use a cam to check even that...)

You 'can' however show the text and force them to wait until the text is fully displayed.
No need for a button. Simply use timer code to show the text.
After all the text has been displayed, open the next form.

But please, please give them also a possibility (button) to go on to the next form when they want to.

Arno R
Aug 22 '07 #6

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

Similar topics

5
by: Bob Bedford | last post by:
I create checkboxes using datas from a database (with PHP). I store all values in an array, as I must pass this value like a Form value. Now, in some cases, when a checkbox is selected, I must...
6
by: nntp | last post by:
I have a set of links which I want search engines to crawl them, but I want to disable them from my visitors, so I will ask the link owners to pay me to let me enable them. <a disabled...
12
by: Forti2ude | last post by:
Hello, I have a simple form... <form> <select name="foo" multiple> <option value="1">one</option> <option value="2">two</option> <option value="3">three</option> </select>
13
by: Rich | last post by:
Hello, So I would like to disable a textbox on a vb.net form without the text getting grayed out. In vb6 I could place a textbox control on a frame control and disable the frame leaving the...
4
by: Chris | last post by:
I have an asp.net page say page1.aspx. The form in html code is <form id = "Form1"> And i want to disable all the fields of the form after some code steps. I had created a javascript funct: ...
0
by: Ahmad Jalil Qarshi | last post by:
Hi! I have a problem while developing some webpages.The Problem is that:- How We Can Disable The Controls Of One Web Form From Other Web Form In Asp.net? Explanation:- There Should Be Two...
8
by: prado | last post by:
I want to disable a table with javascript. In this table i have 'n' record and each record has 3 buttons. If you click a button does an action. I want to disable the all table. is there any way...
4
by: Phoe6 | last post by:
Hi all, I am trying to disable the NIC card (and other cards) enabled in my machine to test diagnostics on that card. I am trying to disable it programmatic using python. I checked python wmi and...
0
by: sainiranji | last post by:
Hi All I have diffrent categories in diffrrent logging purpose and all are working fine...but now my requirment is to disable all at once . The below are change i did for disable all logges...
1
by: David Henderson | last post by:
I know 'disable-output-escaping' has been discussed in the past, but I can't put my finger on any of the threads to see if my current problem is addressed. Sorry for re-asking the question if it...
0
by: Charles Arthur | last post by:
How do i turn on java script on a villaon, callus and itel keypad mobile phone
0
by: ryjfgjl | last post by:
In our work, we often receive Excel tables with data in the same format. If we want to analyze these data, it can be difficult to analyze them because the data is spread across multiple Excel files...
0
BarryA
by: BarryA | last post by:
What are the essential steps and strategies outlined in the Data Structures and Algorithms (DSA) roadmap for aspiring data scientists? How can individuals effectively utilize this roadmap to progress...
1
by: nemocccc | last post by:
hello, everyone, I want to develop a software for my android phone for daily needs, any suggestions?
1
by: Sonnysonu | last post by:
This is the data of csv file 1 2 3 1 2 3 1 2 3 1 2 3 2 3 2 3 3 the lengths should be different i have to store the data by column-wise with in the specific length. suppose the i have to...
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
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,...
0
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...
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...

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.