473,402 Members | 2,050 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,402 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 2060
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? ...
0
by: emmanuelkatto | last post by:
Hi All, I am Emmanuel katto from Uganda. I want to ask what challenges you've faced while migrating a website to cloud. Please let me know. Thanks! Emmanuel
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...
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...

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.