Private Sub Worksheet_SelectionChange(ByVal Target As Range)
Nó bị báo lỗi phần này bạn ơi
Mình chạy file này cũng báo lổi ---> Nó lổi ở những chổ mà Range được viết theo kiểu [A1] ---> Nếu sửa lại thành kiểu Range("A1") thì hết lổiBáo lỗi gì đâu? Mình chạy thử trơn tru cả mà? Mà nếu có lỗi thì lỗi gì được nhỉ?
Thân.
Ah... Bạn nói thể khiến tôi nhớ ra... Thì ra là THỪA chứ không phải thiếu (tác giả khuyến mãi thêm)mình xin lỗi xem hok kỹ, tại mình thiếu thư viện. Bạn cho mình xin cái link down cái thư viẹn đi, cám ơn bạn nhiều
Bạn cho hỏi: Version Office của bạn là gì? 2000? 2002 hay 2003 vậy?vẫn bị lỗi (
Calendar1.Visible = (Target.Address = "$B$4")
help em để em chạy file máy anh ơi
ý tôi muốn hỏi nó MISSING cái gì ---> Nếu là Calendar thì bạn phải tải Calendar Control và cài lạicủa mình là 2003 và đã chỉnh missing như bạn chỉ, nhưng vẫn hok được
Nguồn: Internetvẫn bị lỗi (
Calendar1.Visible = (Target.Address = "$B$4")
help em để em chạy file máy anh ơi
Re: Adding Missing Controls... (Calendar Control -
You'll also need to register the calendar control with windows before you can reference it in Excel. So steps are:
1. Copy MSCAL.OCX to the SYSTEM32 directory (e.g. "C:\WINNT\SYSTEM32")
2. Goto Start menu, select Run... and enter the RegSvr32 command to register the control with windows (e.g. "regsvr32 C:\WINNT\SYSTEM32\MSCAL.OCX"). You should get a message saying "DllRegisterServer in C:\WINNT\SYSTEM32\MSCAL.OCX succeeded.".
3. Open up Excel, go to your toolbox and then click on the more controls icon, or in VBA right click on the Toolbox toolbar and click on the Additional Controls... menu item, and you will now see Calendar Control listed there for you to select.
You can register any .OCX in this way and it won't cause any harm registering them again and again.
Hope that helps