472,952 Members | 1,953 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,952 software developers and data experts.

Check floppy ready causes the drive to make a little noise


If I periodically check to see if the floppy is ready, the drive will each
time make a little noise.

I've been up against this before and could never find a way to check to see
if the floppy drive is ready without making the drive make that grinding
noise.

Does anyone know a way?

Thanks in advance

Nov 21 '05 #1
10 2027
There isn't a way as far as I know because Windows always checks for a
certain amount of time before throwing the error drive not ready

Crouchie1998
BA (HONS) MCP MCSE
Nov 21 '05 #2
You could use:

Dim result As DialogResult
result = MessageBox.Show("Is there a floppy disk in Drive" +
MyDriveLetter.Text + "?", "Floppy Checker", MessageBoxButtons.YesNo,
MessageBoxIcon.Question)
If result = DialogResult.Yes Then
'Do your stuff"
Else
'Don't do your stuff
End If

This wouldn't make any grinding noises! :-)

" Just Me" <gr****@a-znet.com> wrote in message
news:eB*************@TK2MSFTNGP10.phx.gbl...

If I periodically check to see if the floppy is ready, the drive will each
time make a little noise.

I've been up against this before and could never find a way to check to
see if the floppy drive is ready without making the drive make that
grinding noise.

Does anyone know a way?

Thanks in advance

Nov 21 '05 #3
lol!

--

Daniel
MCSE, MCP+I, MCP in Windows 2000/NT

--------------------------------------
remove the 2nd madrid from my mail address to contact me.

"lgbjr" <lg***@online.nospam> wrote in message
news:OB**************@TK2MSFTNGP10.phx.gbl...
You could use:

Dim result As DialogResult
result = MessageBox.Show("Is there a floppy disk in Drive" +
MyDriveLetter.Text + "?", "Floppy Checker", MessageBoxButtons.YesNo,
MessageBoxIcon.Question)
If result = DialogResult.Yes Then
'Do your stuff"
Else
'Don't do your stuff
End If

This wouldn't make any grinding noises! :-)

" Just Me" <gr****@a-znet.com> wrote in message
news:eB*************@TK2MSFTNGP10.phx.gbl...

If I periodically check to see if the floppy is ready, the drive will
each time make a little noise.

I've been up against this before and could never find a way to check to
see if the floppy drive is ready without making the drive make that
grinding noise.

Does anyone know a way?

Thanks in advance


Nov 21 '05 #4
Just Me,

Sorry, however I don't understand what you mean with this message.
If I periodically check to see if the floppy is ready, the drive will each
time make a little noise.

What is "ready" in this message. Available, written, ?????

Cor
Nov 21 '05 #5
Thanks for all the replies.

I suppose "lol" says it most briefly!

" Just Me" <gr****@a-znet.com> wrote in message
news:eB*************@TK2MSFTNGP10.phx.gbl...

If I periodically check to see if the floppy is ready, the drive will each
time make a little noise.

I've been up against this before and could never find a way to check to
see if the floppy drive is ready without making the drive make that
grinding noise.

Does anyone know a way?

Thanks in advance

Nov 21 '05 #6
LOL = Laugh Out Loud & I agree with the MVP because that scrappy message box
code won't make a single bit of difference

I know you can buy a silencer for a gun, but do they make one for a floppy
drive? Sorry - being sill now

Crouchie1998
BA (HONS) MCP MCSE
Nov 21 '05 #7
"Crouchie1998" <cr**********@spamcop.net> schrieb:
LOL = Laugh Out Loud & I agree with the MVP because that scrappy message
box
code won't make a single bit of difference

I know you can buy a silencer for a gun, but do they make one for a floppy
drive? Sorry - being sill now


LOL! BTW: I always hated the sound of floppy drives and thus deleted the
recent folder to prevent Windows from accessing the floppy drive when
starting at the time I was using floppy disks.

--
M S Herfried K. Wagner
M V P <URL:http://dotnet.mvps.org/>
V B <URL:http://classicvb.org/petition/>

Nov 21 '05 #8
Why didn't you just disable recent dowcuments? Therefore they won't be
created in the first place & you wouldn't have that problem:

1) To Disable Recent Docs. History:
-----------------------------------

User Key:
---------

HKEY_CURRENT_USER\Software\Microsoft\Windows\Curre ntVersion\Policies\Explore
r

System Key:
-----------

HKEY_LOCAL_MACHINE\Software\Microsoft\Windows\Curr entVersion\Policies\Explor
er

Key Name:
---------

NoRecentDocsHistory

Key Type:
---------

DWORD

Value:
------

0 = Enable Recent Docs. History
1 = Disable Recent Docs. History <---- You want

------------------------------------------------

2) To Clear Recent Docs. When Windows Shutsdown:
------------------------------------------------

User Key:
---------

HKEY_CURRENT_USER\Software\Microsoft\Windows\Curre ntVersion\Policies\Explore
r

System Key:
-----------

HKEY_LOCAL_MACHINE\Software\Microsoft\Windows\Curr entVersion\Policies\Explor
er

Key Name:
---------

ClearRecentDocsOnExit

Key Type:
---------

DWORD

Value:
------

0 = Enable Clear Recent Docs On Windows Shutdown
1 = Disable Clear Recent Docs On Windows Shutdown <---- You want

----------------------------------------------------------------

3) Lastly, remove the Recent Docs. from the Start Menu:
-------------------------------------------------------

User Key:
---------

HKEY_CURRENT_USER\Software\Microsoft\Windows\Curre ntVersion\Policies\Explore
r

System Key:
-----------

HKEY_LOCAL_MACHINE\Software\Microsoft\Windows\Curr entVersion\Policies\Explor
er

Key Name:
---------

NoRecentDocsMenu

Key Type:
---------

DWORD

Value:
------

0 = Enable Recent Docs On Start Menu
1 = Disable Recent Docs On Start Menu <---- You want

----------------------------------------------------

I hope this helps, Herfried.

Crouchie1998
BA (HONS) MCP MCSE
Nov 21 '05 #9
Crouchie,

"Crouchie1998" <cr**********@spamcop.net> schrieb:
Why didn't you just disable recent dowcuments? Therefore they won't be
created in the first place & you wouldn't have that problem:


Well, I know that there are ways to do that, but I rarely used floppys, and
I didn't use a floppy disk in the last few years at all :-).

--
M S Herfried K. Wagner
M V P <URL:http://dotnet.mvps.org/>
V B <URL:http://classicvb.org/petition/>

Nov 21 '05 #10
Grouchie,

Do you really think I believe my post was a real solution to the problem?
LOL! Though I could have written a "Floppy Checker" Class using the same
"user interface", I didn't think it was necessary to get the point of the
joke across.

However, if you write a windows app that requires the use of a floppy drive,
there is no way to programatically determine if a floppy is in the drive
without accessing the drive (thus the grinding noise from the heads trying
to find the media - a bit louder if there isn't a floppy in the drive).

So, even though it was meant as a joke, asking the user to verify that a
floppy is in the drive before trying to access the drive does actually
address the original question in this thread, whereas deleting the recent
documents folder or disabling recent documents via the registry (while
eliminating unnecessary floppy read attempts by the OS) really have nothing
to do with the original question.

Cheers
Lee

"Crouchie1998" <cr**********@spamcop.net> wrote in message
news:es*************@TK2MSFTNGP10.phx.gbl...
LOL = Laugh Out Loud & I agree with the MVP because that scrappy message
box
code won't make a single bit of difference

I know you can buy a silencer for a gun, but do they make one for a floppy
drive? Sorry - being sill now

Crouchie1998
BA (HONS) MCP MCSE

Nov 21 '05 #11

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

Similar topics

8
by: Ken Varn | last post by:
Everytime I call Process.GetCurrentProcess() the system goes out to the floppy drive. Why does this happen. I decided to use FileMon to get a log of what is happening when this occurs. Here is...
26
by: Simon | last post by:
I'm doing a survey. When do you think GNU/Linux will be ready for the average Joe? What obstacles must it overcome first?
1
by: Anil Kumar Narayanan | last post by:
This is the DIR command of MS-DOS and works for a floppy drive media.. it retrieves all the files whether deleted or not from the floppy drive.. but i was unsuccessful in getting the Date and Time...
1
by: Sandy | last post by:
Is there a way to detect if a disk has been put in the floppy drive? Thank You! Sandy
6
by: helpless newbie | last post by:
Hello. I'm a newbie in c programming. I'd like to make a program for creating an image file from a floppy disk. Is there anyone with agood point of start in doing this? Thanks.
1
by: cfyam | last post by:
When my app copy some files to floppy disk, how can to determine the time to show the message to inform user to take the disk off?
0
by: Elias | last post by:
Hi, I recently started playing around with the DAAB from Microsoft as part of the Enterprise Library...
0
by: Lespaul36 | last post by:
I am trying to find a way to search drives quickly with base amount of info (Drive type, drive letter, drive name). I am using WMI win32_logicalDisk to get a good amount of info. But it runs the...
4
by: Academia | last post by:
I don't suppose there is any way to tell if there is a floppy in a floppy drive without activating the drive and causing it to make a noise if there is no floppy in the drive. Is there? ...
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...
2
isladogs
by: isladogs | last post by:
The next Access Europe meeting will be on Wednesday 4 Oct 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: Aliciasmith | last post by:
In an age dominated by smartphones, having a mobile app for your business is no longer an option; it's a necessity. Whether you're a startup or an established enterprise, finding the right mobile app...
2
by: giovanniandrean | last post by:
The energy model is structured as follows and uses excel sheets to give input data: 1-Utility.py contains all the functions needed to calculate the variables and other minor things (mentions...
3
NeoPa
by: NeoPa | last post by:
Introduction For this article I'll be using a very simple database which has Form (clsForm) & Report (clsReport) classes that simply handle making the calling Form invisible until the Form, or all...
1
by: Teri B | last post by:
Hi, I have created a sub-form Roles. In my course form the user selects the roles assigned to the course. 0ne-to-many. One course many roles. Then I created a report based on the Course form and...
3
by: nia12 | last post by:
Hi there, I am very new to Access so apologies if any of this is obvious/not clear. I am creating a data collection tool for health care employees to complete. It consists of a number of...
0
NeoPa
by: NeoPa | last post by:
Introduction For this article I'll be focusing on the Report (clsReport) class. This simply handles making the calling Form invisible until all of the Reports opened by it have been closed, when it...
0
isladogs
by: isladogs | last post by:
The next online meeting of the Access Europe User Group will be on Wednesday 6 Dec 2023 starting at 18:00 UK time (6PM UTC) and finishing at about 19:15 (7.15PM). In this month's session, Mike...

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.