private void btnQuestion_Click(object sender, RoutedEventArgs e)
        {
            string message = @"
1. Download quantity import format that is available from system. 

2. Prepare data that you wish to import in the system using the downloadable excel. [Critical that you do not change format of excel, neither alter column position in excel]

3. Click on the “Import quantity” button.

4. System is now performing necessary checks for integrity of the excel document and data. Import will also perform necessary checks for any errors or warning, if there are any they will be displayed on the screen.

5. Quantity import can only be used to update quantity of a product that is already configured to homes.

6. Quantity import cannot be used to configure quantity of a product that is not already configured to homes or make a specific quantity configuration inactive.

7. “Process” button will be enabled if excel can be imported.";

            frmPopUpInformation pop = new frmPopUpInformation(message);

            pop.Show();
        }
Пример #2
0
        private void btnQuestion_Click(object sender, RoutedEventArgs e)
        {
            string message = @"
1. Download product import format that is available from system.

2. Prepare data that you wish to import in the system using the downloadable excel. [Critical that you do not change format of excel, neither alter column position in excel]

3. Click on the “Import product” button.

4. System is now performing necessary checks for integrity of the excel document and data. Import will also perform necessary checks for any errors or warning, if there are any they will be displayed on the screen.

5. Product import updates information about product if it finds a match and creates a new product if it does not find a matching product. [matching is performed based on Product ID]

6. Product import cannot be used to delete or make a product inactive.

7. “Process” button will be enabled if excel can be imported.";

            frmPopUpInformation pop = new frmPopUpInformation(message);

            pop.Show();
        }