473,802 Members | 2,015 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

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 1512
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.TextFieldNam e = 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.co mwrote in message
news:13******** *****@corp.supe rnews.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.TextFieldNam e = 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.c omwrote in message

news:13******** *****@corp.supe rnews.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.TextFieldNam e = 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.co mwrote in message
news:13******** *****@corp.supe rnews.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.TextFieldNam e = 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.beschre ef in bericht news:zC******** *************@p hobos.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
5987
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 disactivate other checkboxes. How can I do this ? here is the code:
6
3170
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 href="#">bahbahbah</a> Does not work, as it is still clickable. It only changes the color to grey.
12
8886
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
14583
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 textbox enabled and text/background were intact but mouse cursor remained an arraw (as opposed to an I for editable). I tried a Panel control on my .net form since I could I guess there is no longer a frame control (also tried a groupbox control)....
4
3128
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: function disable() { alert("Forms length is :" + Form1.length); for (i = 0; i < Form1.length; i++) { var formElement = Form1.elements;
0
1808
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 Web Form,Web Form1.aspx and Web Form2.aspx,Now From Web Form1.aspx When I Click One Button (Disable), Then Web Form2.aspx Buttons
8
25198
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 to disable all this table without have to disable each button of each record? Thanks
4
14266
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 i could not find ways to disable/enable, (listing is however, possible). Where should I look for to enable/disable devices in python. Thanks,
0
2174
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 ! Observe log4j parsing this file log4j.debug=false
1
5485
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 has already been answered... I have an XML doc that I am transforming via XSLT and JavaScript in the browser. This allows me to return unsorted data to the browser and allow the user to sort it with a mouseclick and not hit the server just...
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
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...
0
9115
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
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
6838
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 then checking html paragraph one by one. At the time of converting from word file to html my equations which are in the word document file was convert into image. Globals.ThisAddIn.Application.ActiveDocument.Select();...
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...
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
2
3792
muto222
by: muto222 | last post by:
How can i add a mobile payment intergratation into php mysql website.
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.