473,395 Members | 1,474 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,395 software developers and data experts.

I messed up the start up options!

Hi,

I was designing an Access database and was playing around with the
startup options. Like a dumbass, I tuned off all the menus and
shortcuts etc. and now I cannot edit the database anymore!!

Is there any way to get th startup properties back!!!

Thanks,

P

Dec 2 '06 #1
6 1499
Hey dumbass,

Open the database holding the shift key down.

<de**********@gmail.comwrote in message
news:11*********************@79g2000cws.googlegrou ps.com...
Hi,

I was designing an Access database and was playing around with the
startup options. Like a dumbass, I tuned off all the menus and
shortcuts etc. and now I cannot edit the database anymore!!

Is there any way to get th startup properties back!!!

Thanks,

P

Dec 2 '06 #2
On Sat, 2 Dec 2006 17:34:57 -0000, "tombsy"
<ic***********@tiscali.co.ukwrote:
>Hey dumbass,
>Open the database holding the shift key down.
Good advice.

I am curious. Why did you find it necessary to precede your advice
with an invective intended to cause insult?

><de**********@gmail.comwrote in message
news:11*********************@79g2000cws.googlegro ups.com...
>Hi,

I was designing an Access database and was playing around with the
startup options. Like a dumbass, I tuned off all the menus and
shortcuts etc. and now I cannot edit the database anymore!!

Is there any way to get th startup properties back!!!

Thanks,

P
Dec 2 '06 #3
You are right.
The deluedsoul called himself a dumbass, so I was merely showing a sense of
humour.
"Anna Vanden" <se********@spamnot.comwrote in message
news:r7********************************@4ax.com...
On Sat, 2 Dec 2006 17:34:57 -0000, "tombsy"
<ic***********@tiscali.co.ukwrote:
>>Hey dumbass,
>>Open the database holding the shift key down.

Good advice.

I am curious. Why did you find it necessary to precede your advice
with an invective intended to cause insult?

>><de**********@gmail.comwrote in message
news:11*********************@79g2000cws.googlegr oups.com...
>>Hi,

I was designing an Access database and was playing around with the
startup options. Like a dumbass, I tuned off all the menus and
shortcuts etc. and now I cannot edit the database anymore!!

Is there any way to get th startup properties back!!!

Thanks,

P

Dec 2 '06 #4
de**********@gmail.com wrote:
Hi,

I was designing an Access database and was playing around with the
startup options. Like a dumbass, I tuned off all the menus and
shortcuts etc. and now I cannot edit the database anymore!!

Is there any way to get th startup properties back!!!
If you have disabled the shify on startup key you could try:

Public Sub ResetStartProperties(ByVal FullPathToApplication As String)
' close the application to be modified
Dim a As Access.Application
Set a = New Access.Application
With a
.OpenCurrentDatabase FullPathToApplication, True
On Error Resume Next
With .CurrentProject.Properties
.item("AllowByPassKey").Value = True
.item("AllowFullMenus").Value = True
.item("AllowSpecialKeys").Value = True
.item("StartupShowDBWindow").Value = True
End With
On Error GoTo 0
.Quit
End With
End Sub

Dec 2 '06 #5
"Anna Vanden" <se********@spamnot.comwrote in message
news:r7********************************@4ax.com...
On Sat, 2 Dec 2006 17:34:57 -0000, "tombsy"
<ic***********@tiscali.co.ukwrote:
>>Hey dumbass,
>>Open the database holding the shift key down.

Good advice.

I am curious. Why did you find it necessary to precede your advice
with an invective intended to cause insult?

Where computers are concerned we have all had our turns at being a
"dumbass". The people that bug me a bit are those that say "I didn't do
anything, all of a sudden it just ....". I really do not like coming across
are those that have gone out of their way to conceal their mistake, and
thereby cause a great waste of time, and often greatly extended damage.

If I ever meet a self-confessed "dumbass" I can at least believe there is a
chance I have met an honest man (or lady, no sexism here). I am also
grateful that I have learned a lesson from someone else's mistake.

I read it as just joining in on the joke.
>><de**********@gmail.comwrote in message
news:11*********************@79g2000cws.googlegr oups.com...
>>Hi,

I was designing an Access database and was playing around with the
startup options. Like a dumbass, I tuned off all the menus and
shortcuts etc. and now I cannot edit the database anymore!!

Is there any way to get th startup properties back!!!

Thanks,

P

Dec 2 '06 #6
Nice one Dave

"David F Cox" <no****@nospam.zzwrote in message
news:Ju****************@newsfe4-gui.ntli.net...
"Anna Vanden" <se********@spamnot.comwrote in message
news:r7********************************@4ax.com...
>On Sat, 2 Dec 2006 17:34:57 -0000, "tombsy"
<ic***********@tiscali.co.ukwrote:
>>>Hey dumbass,
>>>Open the database holding the shift key down.

Good advice.

I am curious. Why did you find it necessary to precede your advice
with an invective intended to cause insult?


Where computers are concerned we have all had our turns at being a
"dumbass". The people that bug me a bit are those that say "I didn't do
anything, all of a sudden it just ....". I really do not like coming
across are those that have gone out of their way to conceal their mistake,
and thereby cause a great waste of time, and often greatly extended
damage.

If I ever meet a self-confessed "dumbass" I can at least believe there is
a chance I have met an honest man (or lady, no sexism here). I am also
grateful that I have learned a lesson from someone else's mistake.

I read it as just joining in on the joke.
>>><de**********@gmail.comwrote in message
news:11*********************@79g2000cws.googleg roups.com...
Hi,

I was designing an Access database and was playing around with the
startup options. Like a dumbass, I tuned off all the menus and
shortcuts etc. and now I cannot edit the database anymore!!

Is there any way to get th startup properties back!!!

Thanks,

P


Dec 2 '06 #7

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

Similar topics

3
by: ftw | last post by:
I am using SQL7 Query Analyzer. A simple select * from myMLSview and then I save results as a .csv file has the commas messed up in quite a few places. The data is messed up before I save it to the...
6
by: dale zhang | last post by:
Hi, I build a web form with a 4-cell table on the top (flawlayout), followed by some labels and textboxes (gridlayout). The web form is displayed well in dell m60 laptop with all resolution...
7
by: Mark | last post by:
Hello, I have researched and tried every thing I have found on the web, in groups and MS KB articles. Here is what I have. I have a Windows 2000 Domain Controller all service packs and...
3
by: David C. Barber | last post by:
Using SQL Server 2000 and moving to a new computer. We did a full backup of the existing database to tape, brought up the new computer with a clean install using the same server name and IP...
4
by: Jianwei Sun | last post by:
Hi, all, I have a question, and I hope to get some hints here.. I created a really simple service just to check why the service manager doesn't start my service the second time if the first...
2
by: =?Utf-8?B?aG9oc2VuQGhvdG1haWwuY29t?= | last post by:
C# Solution Explorer Tips & Tricks Everything cannot how to work from C# Recent Projects(all cannot to write/read). HELP ME! How to get for C# Recent Projects working!!?? Cannot how to work new...
1
by: remya1000 | last post by:
i'm tring to start a calculator in a remote machine from my system. and the codes i tried is this. Module Module1 Sub Main() Dim retValue As String retValue =...
5
by: lil rahmer | last post by:
The other day I was messing around in regedit (I know very bad idea, ive learned my lesson). I messed up something and know when my computer starts up it uses the old style of windows startup where...
3
by: David Lozzi | last post by:
IN VS2005, How do i set the start page to be more web developer friendly? I just reloaded my machine and now the start page doesn't have the Open: Web Site or Create: Web Site options... Just Open...
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
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...
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
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
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...

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.