- [SQLSERVER] Loại bỏ Restricted User trên database MSSQL
- [C#] Hướng dẫn tạo mã QRcode Style trên winform
- [C#] Hướng dẫn sử dụng temp mail service api trên winform
- [C#] Hướng dẫn tạo mã thanh toán VietQR Pay không sử dụng API trên winform
- [C#] Hướng Dẫn Tạo Windows Service Đơn Giản Bằng Topshelf
- [C#] Chia sẻ source code đọc dữ liệu từ Google Sheet trên winform
- [C#] Chia sẻ source code tạo mã QR MOMO đa năng Winform
- [C#] Chia sẻ source code phần mềm lên lịch tự động chạy ứng dụng Scheduler Task Winform
- [Phần mềm] Tải và cài đặt phần mềm Sublime Text 4180 full version
- [C#] Hướng dẫn download file từ Minio Server Winform
- [C#] Hướng dẫn đăng nhập zalo login sử dụng API v4 trên winform
- [SOFTWARE] Phần mềm gởi tin nhắn Zalo Marketing Pro giá rẻ mềm nhất thị trường
- [C#] Việt hóa Text Button trên MessageBox Dialog Winform
- [DEVEXPRESS] Chia sẻ code các tạo report in nhiều hóa đơn trên XtraReport C#
- [POWER AUTOMATE] Hướng dẫn gởi tin nhắn zalo từ file Excel - No code
- [C#] Chia sẻ code lock và unlock user trong domain Window
- [DEVEXPRESS] Vẽ Biểu Đồ Stock Chứng Khoán - Công Cụ Thiết Yếu Cho Nhà Đầu Tư trên Winform
- [C#] Hướng dẫn bảo mật ứng dụng 2FA (Multi-factor Authentication) trên Winform
- [C#] Hướng dẫn convert HTML code sang PDF File trên NetCore 7 Winform
- [C#] Hướng dẫn viết ứng dụng chat với Gemini AI Google Winform
[DEVEXPRESS] Hướng dẫn sử dụng Schedule Control hiển thị giờ làm việc nhân viên VB.NET
Bài viết hôm nay, mình sẽ hướng dẫn các bạn sử dụng công cụ Schedule Control trong Devexpress bằng ngôn ngữ VB.NET, để hiển thị giờ ra vào làm việc của nhân viên.
Chức năng này có thể giúp bạn phần nào hiển thị cho phần mềm nhân sự có thể xem theo tháng làm việc của từng nhân viên trong công ty của mình.
Giao diện demo của ứng dụng:
Source code VB.NET
Imports System.ComponentModel
Imports System.Text
Imports DevExpress.XtraScheduler
Partial Public Class Form1
Shared Sub New()
DevExpress.UserSkins.BonusSkins.Register()
DevExpress.Skins.SkinManager.EnableFormSkins()
End Sub
Public Sub New()
InitializeComponent()
End Sub
Private Sub Form1_Load(sender As Object, e As EventArgs) Handles MyBase.Load
SchedulerControl2.ActiveViewType = DevExpress.XtraScheduler.SchedulerViewType.Month
SchedulerControl2.OptionsCustomization.AllowInplaceEditor = DevExpress.XtraScheduler.UsedAppointmentType.None
' đặt load đầu tháng
SchedulerControl2.Start = New DateTime(2017, 6, 1)
' Hiển thị lịch làm việc thời gian nhân viên
For i As Integer = 0 To 29
Dim app As Appointment = SchedulerStorage1.CreateAppointment(AppointmentType.Normal)
Dim start As New DateTime(2017, 6, 1 + i, 7, 30, 0)
Dim [end] As New DateTime(2017, 6, 1 + i, 11, 30, 0)
app.Start = start
app.[End] = [end]
app.Description = "Ca sáng"
'SchedulerStorage1.Appointments.Labels.Clear()
app.LabelKey = 3
app.StatusKey = 1
app.AllDay = False
SchedulerStorage1.Appointments.Add(app)
' thời điểm 2
Dim app2 As Appointment = SchedulerStorage1.CreateAppointment(AppointmentType.Normal)
Dim start2 As New DateTime(2017, 6, 1 + i, 12, 30, 0)
Dim [end2] As New DateTime(2017, 6, 1 + i, 16, 30, 0)
app2.Start = start2
app2.[End] = [end2]
app2.Description = "Ca chiều"
app2.LabelKey = 1
'SchedulerStorage1.Appointments.Labels.Clear()
'app2.AllDay = False
'SchedulerStorage1.Appointments.Labels.Add(System.Drawing.Color.FromArgb((CInt((CByte(255)))), (CInt((CByte(194)))), (CInt((CByte(190))))), "Important", "&Important")
SchedulerStorage1.Appointments.Add(app2)
Next
End Sub
End Class
Và dưới đây là bảng màu để cho các bạn set color label
CHÚC CÁC BẠN THÀNH CÔNG!