Nortwind Traders

pcampos

Registered User.
Local time
Today, 01:32
Joined
Jan 20, 2010
Messages
12
Hi there...

I have used the Northwind Traders Database as a template for my own Database.

I have a problem where some of the MsgBoxes called in some functions have "Nortwind Traders" on the title.

Does anyone knows where the Message boxes are kept and how to change the title of these msgboxes?
 
Try this.
Open VB editor (ALT+F11) then CTRL+F search for Northwind Traders. Select search Current Project and hit find next. Change the title.
HTH
 
I have tried that but it cannot find those terms... I also looked for the respective msgbox but al it has is a reference to the respective msgbox and a number.

here is an example of a reference to a msgbox but not to the actual msgbox

Option Compare Database
Option Explicit

Public eh As New ErrorHandling
Public Enum StringIDEnum
AppTitle = 2
CannotRemovePostedInventory = 3
FilledBackOrderedProduct = 4
DiscountedPriceBelowCost = 5
 
Not sure but I would search through all the macros. I don't normally use macros but use code to do things. Search through the Macro Action Catalog for each form. I has to be in there somewhere.
 
Open the Table "STRINGS" and edit the text for #2 Northwind Traders.
Look in the Module Utilities and you find list of string = numbers. YOu can edit what the error message will display by changing the text in the table. It will be associated with the error number.
Hope that is what you needed.
 

Users who are viewing this thread

Back
Top Bottom