Possible To Change Desktop Icon For ACCDB

Nov 15, 2011

I'd like to have a custom icon for the accdb file for the users. I recall doing it for pre-2007 databases, but I can't figure out how to change the 2007 db. Is it possible with 2007?

View Replies


ADVERTISEMENT

Forms :: Change Form Icon Next To Caption?

Jun 12, 2014

how to change a form icon and make that icon embed to my database, I have tried the Application Icon property in Access Options but when I copy the database to other computer then the icon disappeared.

View 3 Replies View Related

Modules & VBA :: OnLoad Event To Change Icon Of The Form

Sep 26, 2014

I currently use code in a module and code on each form in the on_load event to change the icon of the form.. the code i use is as follows..

in a module:

Code:
Private Declare PtrSafe Function GetSystemMetrics Lib "user32" (ByVal nIndex As Long) As Long
Private Const WM_SETICON = &H80
Private Const IMAGE_ICON = 1
Private Const LR_LOADFROMFILE = &H10
Private Const SM_CXSMICON As Long = 49
Private Const SM_CYSMICON As Long = 50

[Code] ....

And on each form on load:

Code:
SetFormIcon Me.hWnd, "k: est directoryhsicon.ico"

What I am wondering is would it be possible to store the .ico file within the DB file itself (i know access can store bitmaps) and reference the .ico in the form load event code?

Overtime the db file will probably move to its own dedicated storage so using a direct reference to the file wont work..

I have tried the following but get an error (it tries to reference the .ico file as to being in the root directory of the db file)

Code:
SetFormIcon Me.hWnd, Left(CurrentDb.Name, Len(CurrentDb.Name) - Len(Dir(CurrentDb.Name))) & "hsicon.ico"

View 2 Replies View Related

Desktop Shortcuts

Jul 11, 2006

I hope this is the right forum for such a question, if not I apologize in advance.

I have an application that is being used by six people. When the newest version of it was built, I altered the desktop shortcut on everyone's PC to point to the newest version. Four of these shortcuts still work, but two are behaving somewhat erratically.

In the case of these two, clicking on the shortcut sometimes opens the older version of the application. I have recreated the shortcuts and they work for a while, before reverting to the older link. Going to the application via Explorer works fine.

While I am getting more comfortable with VBA, this area is outside anything I know. Could someone advise me on what affects whether shortcuts work or not? Do they automatically 'refresh'? If so, when?

In case it's relevant, everyone here is using the same versions of both XP and Access and everyone has access to the same drives.

View 12 Replies View Related

Forms To The Desktop

Apr 12, 2005

:rolleyes: I know there is a way of placing a form on a desktop to an icon which only allows the user access to the form only! Help pleeease

View 1 Replies View Related

ACCDB Password

Feb 7, 2008

hello, is it possible to programmatically set or change the password to an accdb file from within an application? (my app is written in VB 6)
i know this was possible in the old mdb format but what are the options for the new format? i must use the accdb format for security reasons.

thanks!

View 6 Replies View Related

Is There A Way To Protect Shortcut On Desktop ?

Dec 6, 2005

Hello,I need to know is there any way to protect a shortcut on desktop ?Bcz someone is deleting (I dont know by mistake or intentionally) shortcut of database shortcut. I thinking about its protection from deletion only unless you have to supply a password or code something like that.Any idea..?With kind regards,Ashfaque

View 1 Replies View Related

Crash To Desktop Issue

Jan 21, 2007

Hi all,

Today some of my users (primarily Access 9 users from what I can tell) have started experiencing weird Crash to Desktop issues.

The issue occurs when the user clicks a command button, which in turn should open an unbound form.

All other database functionality is working correctly.

The form is unbound, contains a combo, command button, listbox based on a query and several textboxes.

On open code is -

Private Sub Form_Load()

Me.cboType.Value = "Mail"
Me.lstResults.RowSource = "SELECT qryViewMail.ID, qryViewMail.Date_Received, qryViewMail.Customer_Name, qryViewMail.MDL_MVL, qryViewMail.Category, qryViewMail.Type FROM qryViewMail ORDER BY [ID];"
Me.lblStatus.Visible = False

End Sub



This functionality has worked correctly up until now.

Has anyone experienced similar issues before?

Thanks,

Rob

View 4 Replies View Related

General :: Accessing SQL From Desktop Via Php?

Mar 28, 2013

My server provider is telling me that my server is Linux and I would have to upgrade to windows to be able to connect my database to the SQL.so i figured, if there was a middle man who could collect the information and pass it along?Is there an add on of sorts to allow access to behave this way?

View 8 Replies View Related

Trouble Converting Mdb To Accdb

Dec 10, 2007

I have a mdb access 2000 database that I want to convert to accdb. I can't for the life of me get it to work as when I try the save as access 2007 it always tells me I have the database open exclusively which is normal as I am the only user at the time when I want to convert it... not quite sure how I can open my database not exclusive? I have tried read only but doesn't work either...

thanx for any advice you might have...

View 6 Replies View Related

General :: How To Convert ADP To ACCDB

Apr 27, 2015

I have a (Access Data Project) ADP project which was created in Access 2003.I need to convert it into an ACCDB file with Access 2007. How to do this besides exporting each and every table, query,report etc one by one ? I was hoping there was something where I could import or export the whole thing in one go.

View 2 Replies View Related

Modules & VBA :: Connect To Mdb From Accdb

Oct 20, 2013

I am trying to connect to an access database format 2003 from my access 2007 database. I would like to create a recordset from a table in the 2003 database and bind it to a listbox in my 2007 database.I tried to the following code that didn't work.

Code:
Dim DNHConn As ADODB.Connection
Dim Rs As ADODB.Recordset
Dim connStr, xSource, xSys, xUsr, xPsw
On Error GoTo errH

[code]....

When I try to execute that code, I get an error that the apllication can't start because the worgroup file is either missing or opened exclusive by another user.

View 2 Replies View Related

General :: Converting MDB Into ACCDB?

Jun 6, 2014

Is there an easy way to convert an old ACCESS db from version 2003 to version 2010?

My ACCESS db is .mdb and I want to convert it to .accdb as version 2010. It has hundreds of modules that may take awhile to export. Exporting is the only way I know to transfer from one db to another.

View 5 Replies View Related

Error When Importing From MDB To ACCDB?

Aug 19, 2013

Have an Access db created with Access 2003. Was not updated with Access 2007, and now need to work with it in Access 2010.

Saved the Access 2003 db, a *.mdb file as a *.accdb and imported the data from the *.mdb db.

The import failed and the error report and in the report the Issue Type Error and the Issue Type ID is ACCWeb107014. When I checked this error, the follow explanation was given. However, the tables have a PK.

ACCWeb107014Error text A Table should have a Primary Key and it should be a number with field size 'long' to be compatible with the Web.What it means The indicated table has one of the following problems:

The table does not have a primary key.The data type of the primary key is not Number.The primary key Field Size is not Long.

View 1 Replies View Related

Modules & VBA :: Allow ACCDE To Be Open On Desktop Only

Aug 4, 2015

In my frontend code, I include a table with a version #. In my backend, I also include a version table. The front end will compare wih back end, and if it's different, it will force to get the updated version that it's stored in the LAN.

However, I do not want the user to open the file directly from the LAN because it might cause slow performance problem if multi-user,etc.

So I want to implement a code to force the application to be open only from desktop.

So far, I have a strUsername which detect the user network environ. Then, it will check the application path to determine if it was opened from:

C:Users<strUsername>Desktop

If not, then an error message will prompt to alert the member to copy the file in the LAN and save on their desktop.

It works on my laptop, all fine. Today I didnthe test in my user desktop, but the message saying that the file has to be opened from desktop keep appearing.

I double check the user folder and the Username environ is (cd98) but the user folder was setup as "CD98" capital letter. Does that affect the coding?

How can I make my code to not distinguish between lower or upper case either for username and folder user as well?

View 4 Replies View Related

Modules & VBA :: How To Access A Folder On Desktop

Feb 7, 2014

I used to have a code that we used to copy data from a folder that was on the desktop using the code below.

Code:
DoCmd.CopyObject "C:Documents and SettingsAll UsersDesktopWetcleans

This does not work with windows7. I have tried the C:USERSPUBLICDESSKTOPWetcleans but that does not seem to work either. How to access a folder on the desktop ?

View 2 Replies View Related

Desktop Time And Billing Template With VAT

Nov 12, 2013

I have a very simple database using the MS template 'desktop time and billing' for MS Access 2007.

[URL] .....

Any new template with the option for VAT or Sales Tax for each Billable Hour and each Billable Expense?

If this is selected or overwritten at time /expense input stage and then automatically added to the invoice.

Not sure why MS omitted Sales Tax from their design?!

Can Access Master add Sales Tax /VAT and then post as a new template?

View 3 Replies View Related

General :: Convert ACCDB Data To MDB

Oct 6, 2012

I am using accdb but I wanna convert some datas into mdb, but I really don't know how to do this?

View 3 Replies View Related

General :: Can't Update Front End To ACCDB

Mar 3, 2013

I am in the process of updating a database to 2010 (.accdb) and cannot get past a problem. We are using Access 2010.

I updated the back end data to .accdb with no problem. I can't link the front end to that data without updating the front end to .accdb as well. There are no tables in the front end.

I try to update the front end to /accdb and I get the error message 'You are trying to convert an encoded database. Decode the database, then try again.'

How do I decode the database? I tried setting a password and then unsetting it, but that made no difference. I have not previously encoded the database.

can't finish the update to .accdb data. The alternative is to stay with 2003 MDB data. Is that a bad thing?

View 2 Replies View Related

General :: Open Accdb Without MS Access?

Aug 14, 2012

I have MS Access on my PC however wish to move the accdb file to a network location to allow other network users to have access to it.

Unfortunately a few of the other users do not have MS Access. Is it possible for them to still open the database without any admin or background - I would like them to be able to use the forms and 'front end'.

View 3 Replies View Related

General :: Split Accdb - How Many Backends

Dec 13, 2013

We have a split A2010 accdb, and the backend is now 1.8Gb so I need to do something If I put each of the 4 main tables in 4 separate backend accdbs, will the fact that the frontend then needs to link to 4 accdbs in some way impact on performance? Another possibility (given that 90% of our work only needs the recent data) is that I split the 4 main tables into 'archive' and 'current' (= recent) tables, with all the 'archive' tables in one accdb and all the 'current' tables in another accdb: but that would make it more difficult to run reports etc over the entire data Putting the 4 main tables in 4 separate backend accdbs seems like the answer to me - but are there any other considerations to this.

View 14 Replies View Related

General :: Locked ACCDB File

Oct 19, 2012

I have a database with extension .accdb. When I open it, everything is locked. I can't access VB Editor, Navigation Pane, Ribbon, nothing. It just opens a form and the only thing that can be edited are the text boxes on the form. I can't use Shift when opening it, that does nothing. It does not prompt for a password when opening.

View 13 Replies View Related

ACCDB - Can't Open In 2007 Or Import

Apr 25, 2013

I just finished a week long database project. All ready to show the users - who have 2007. I have 2010. I can't get it to open on their PCs even though it's saved as 2007 set. So I try to import it into 2007 - nope no going. Can I install 2010 runtime on their PC and have that database automatically open with it ....

View 2 Replies View Related

Changing A Desktop Database To A Access Project

Dec 17, 2007

I built a database application, and I need for more than just myself to use it at the same time. I have just learned that I should have built a project instead. Can I change my application "Maintenance.mdb" to a project or do I have to start over?

View 5 Replies View Related

Zipping File Of Desktop With MS Access 2007?

Feb 24, 2014

I want to zip my file of my Desktop with MS Access 2007.

View 5 Replies View Related

Desktop Services Template - Add Items To Invoice

Jan 26, 2014

I am using the Desktop services template as a starting point for an invoicing app. I would like to be able to add a product and/or service after the invoice is submitted so I can add a finance charge for invoices that haven't been paid yet. The template is setup to prevent items from being added once it is submitted. Looking for macro / rule that is preventing this action?

View 9 Replies View Related







Copyrights 2005-15 www.BigResource.com, All rights reserved