dutch error message

shodan

Active Member
Joined
Jul 6, 2005
Messages
486
Hi all,

I've made a simple routine which uses a userform with a tabpage and some check, list and text boxes and some buttons. The usual stuff.

this routine works fine on my computer, but is doesn't on my dad's PC,for who it was made. The thing is that he uses a PC with a dutch installation and so the error messages show up in Dutch. The message he is getting is:

kan project of bibliotheek niet vinden. compileer fout

Can someone please explain me where this message is coming from, and what the solution can be?

Thanks a lot.
Shodan
 

Excel Facts

Highlight Duplicates
Home, Conditional Formatting, Highlight Cells, Duplicate records, OK to add pink formatting to any duplicates in selected range.
It's a compiler error saying that it cannot find a referenced library (or project). In the VBE of your copy select menu option Tools | References to see what libraries are referenced by your project. Then do the same on your father's PC to see which library is missing from his machine.

HTH
 
Upvote 0
Hallo, beste Belg :-)

Nog een vraagje.
Heb je enkel de code naar je vader gezonden of het werkbook met code?
Het probleem kan vermeden worden als je het volledige werkboek stuurt. Is toch mijn sterk vermoeden.

fijn weekend !
Erik

problem can be avoided when sending entire workbook instead of only code
 
Upvote 0
Hoi,

Het werkt nu. Blijkbaar was op mijn vaders pc de outlook library niet aangevinkt.

Ik heb inderdaad het volledige werkboek doorgestuurd. En dat werd dan ineens mijn volgende vraag; hoe kan ik vermijden dat routines ,niet werken doordat ik eventueel andere selecties in de references heb aangevinkt.

Wat ik wel moet zeggen is dat in de references wel werd aangegeven welke library ontbrak. er weas er namelijk een die begon met ontbreekt:outlook library...

Groeten,
shodan
 
Upvote 0
Hoi,

Het werkt nu. Blijkbaar was op mijn vaders pc de outlook library niet aangevinkt.
dat is een soort bug in Excel
Je hebt waarschijnlijk "left" of "right" gebruikt: met de htmlMaker hebben ze dat probleem ook.
Ik heb inderdaad het volledige werkboek doorgestuurd. En dat werd dan ineens mijn volgende vraag; hoe kan ik vermijden dat routines ,niet werken doordat ik eventueel andere selecties in de references heb aangevinkt.
In principe worden de referenties aan het werkboek "gekoppeld". Bij mijn Add-In Table-It zit ook zo'n referentie: het wou nogal een pak emails en PM geven als dat bij iedereen ontbrak. Misschien zijn hier uitzonderingen op. Er zijn wel trucs om bepaalde zaken op te sporen. Lijkt een beetje op:
Code:
Dim SH as Sheet
On Error Resume Next
Set SH = Sheets("thisone")
If Err Then MsgBox "this sheet doesn't exist"
On Error GoTo 0
(handgetijpt zonder testen, kan altijd klein foutje bevatten)
zie je het principe ?
errors worden "overgeslagen" door de lijn
On Error Resume Next
de volgende lijn geeft error als het blad niet bestaat
Set SH = Sheets("thisone")
dit wordt dan opgespoord met
If Err

Op deze wijze kan je waarschuwingen aan de gebruiker melden, voor de bug optreed. In Table-It vind je dat ook (code is "open", dus je kan het vinden)

beste groeten,
Erik
 
Upvote 0

Forum statistics

Threads
1,223,956
Messages
6,175,619
Members
452,661
Latest member
Nonhle

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top