复制并粘贴在不同的工作簿之间

时间:2018-06-08 15:05:04

标签: excel vba

我想粘贴来自" wb" to" wb1",但它只是打开" wb2" ..我尝试了两种不同的方式,但仍然无法正常工作。任何的想法?感谢。

Sub ()
      Dim wb1 As Workbook
    Dim wb As Workbook


ScreenUpdating = False

Set wb = ThisWorkbook
Set wb1 = Workbooks.Open("\\Homeshare\Home2\w1.xlsm")

wb.Worksheets("Sheets1").Range("B50").Copy
wb1.Worksheets("Production").Range("A1").PasteSpecial Paste:=xlPasteFormats
ScreenUpdating = True
End Sub
public function changePassword()
{
    $user = $this->getUsersTable()->newEntity();
    $id = $this->Auth->user('id');
    if (!empty($id)) {
        $user->id = $this->Auth->user('id');
        $validatePassword = true;
        //@todo add to the documentation: list of routes used
        $redirect = Configure::read('Users.Profile.route');
    } else {
        $user->id = $this->request->session()->read(Configure::read('Users.Key.Session.resetPasswordUserId'));
        $validatePassword = false;
        if (!$user->id) {
            $this->Flash->error(__d('CakeDC/Users', 'User was not found'));
            $this->redirect($this->Auth->config('loginAction'));

            return;
        }
        //@todo add to the documentation: list of routes used
        $redirect = $this->Auth->config('loginAction');
    }
    $this->set('validatePassword', $validatePassword);
    if ($this->request->is('post')) {
        try {
            $validator = $this->getUsersTable()->validationPasswordConfirm(new Validator());
            if (!empty($id)) {
                $validator = $this->getUsersTable()->validationCurrentPassword($validator);
            }
            $user = $this->getUsersTable()->patchEntity($user, $this->request->data(), ['validate' => $validator]);
            if ($user->errors()) {
                $this->Flash->error(__d('CakeDC/Users', 'Password could not be changed'));
            } else {
                $user = $this->getUsersTable()->changePassword($user);
                if ($user) {
                    $this->Flash->success(__d('CakeDC/Users', 'Password has been changed successfully'));

                    return $this->redirect($redirect);
                } else {
                    $this->Flash->error(__d('CakeDC/Users', 'Password could not be changed'));
                }
            }
        } catch (UserNotFoundException $exception) {
            $this->Flash->error(__d('CakeDC/Users', 'User was not found'));
        } catch (WrongPasswordException $wpe) {
            $this->Flash->error(__d('CakeDC/Users', '{0}', $wpe->getMessage()));
        } catch (Exception $exception) {
            $this->Flash->error(__d('CakeDC/Users', 'Password could not be changed'));
        }
    }
    $this->set(compact('user'));
    $this->set('_serialize', ['user']);
}

0 个答案:

没有答案