1
ห้อง MS Access / : ต้องการ docmd.openreport normal view แต่เลือก printer ได้
« เมื่อ: 23 ก.ค. 67 , 15:45:03 »
ตามนี้ครับ สะดวกดี
โพสต์นี้ได้รับคำขอบคุณจาก: Krathok-man
This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.
หมายถึงมี Pop-up ขึ้นมาให้เลือกเครื่องพิมพ์ก่อนแล้วกด ตกลง
...
เดี๋ยวจะลองดูนะครับ
ผมสร้าง code ดังนี้ เพื่อไม่ให้ Form BB_detail รับข้อมูล
[BB_detail].Form.AllowAdditions = False
[BB_detail].Form.AllowEdits = False
[BB_detail].Form.AllowDeletions = False
แต่มันยังกด command btt ได้ จริงๆ ผมอยากให้ Disable ทั้งหมด คือสั่งอะไรไม่ได้เลย
เมื่อเกิดเหตุการณ์ มีวิธีอะไรบ้างครับ
Private Sub Form_Current()
Dim ctl As Control
For Each ctl In Me
If ctl.ControlType = acComboBox Then
ctl.Enabled = False
ctl.Locked = True
End If
If ctl.ControlType = acTextBox Then
ctl.Enabled = False
ctl.Locked = True
End If
If ctl.ControlType = acCommandButton Then
ctl.Enabled = False
End If
Next ctl
Forms![BB_detail].Form.AllowAdditions = False
Forms![BB_detail].Form.AllowEdits = False
Forms![BB_detail].Form.AllowDeletions = False
End Sub
acBoundObjectFrame | Bound object frame |
acCheckBox | Check box |
acComboBox | Combo box |
acCommandButton | Command button |
acCustomControl | ActiveX (custom) control |
acImage | Image |
acLabel | Label |
acLine | Line |
acListBox | List box |
acObjectFrame | Unbound object frame or chart |
acOptionButton | Option button |
acOptionGroup | Option group |
acPage | Page |
acPageBreak | Page break |
acRectangle | Rectangle |
acSubform | Subform/subreport |
acTabCtl | Tab |
acTextBox | Text box |
acToggleButton | Toggle button |
Shell "Notepad.exe " & "D:\Warning.txt", vbNormalFocus
เปิดแล้ว บังคับให้เต็มเจอครับ
มี Code ที่ทำให้เต็มเจอไหม
Shell "Notepad.exe " & "D:\Warning.txt", vbNormalFocus
Set oShell = CreateObject("WScript.Shell")
oShell.SendKeys "% x"
เช่น 65.00 อ่านว่า "sixty five bath" เป็นต้น จนถึงหลักล้าน
Public Function wsiSpellNumber(ByVal MyNumber)
Dim Bath, Stang, Temp
Dim DecimalPlace, Count
ReDim Place(9) As String
Place(2) = " Thousand "
Place(3) = " Million "
Place(4) = " Billion "
Place(5) = " Trillion "
' String representation of amount.
MyNumber = Trim(Str(MyNumber))
' Position of decimal place 0 if none.
DecimalPlace = InStr(MyNumber, ".")
' Convert Stang and set MyNumber to dollar amount.
If DecimalPlace > 0 Then
Stang = GetTens(Left(Mid(MyNumber, DecimalPlace + 1) & _
"00", 2))
MyNumber = Trim(Left(MyNumber, DecimalPlace - 1))
End If
Count = 1
Do While MyNumber <> ""
Temp = GetHundreds(Right(MyNumber, 3))
If Temp <> "" Then Bath = Temp & Place(Count) & Bath
If Len(MyNumber) > 3 Then
MyNumber = Left(MyNumber, Len(MyNumber) - 3)
Else
MyNumber = ""
End If
Count = Count + 1
Loop
Select Case Bath
Case ""
Bath = "No Bath"
Case "One"
Bath = "One Bath"
Case Else
Bath = Bath & " Bath"
End Select
Select Case Stang
Case ""
Stang = " and No Stang"
Case "One"
Stang = " and One Stang"
Case Else
Stang = " and " & Stang & " Stang"
End Select
wsiSpellNumber = Bath & Stang
End Function
' Converts a number from 100-999 into text
Function GetHundreds(ByVal MyNumber)
Dim result As String
If Val(MyNumber) = 0 Then Exit Function
MyNumber = Right("000" & MyNumber, 3)
' Convert the hundreds place.
If Mid(MyNumber, 1, 1) <> "0" Then
result = GetDigit(Mid(MyNumber, 1, 1)) & " Hundred "
End If
' Convert the tens and ones place.
If Mid(MyNumber, 2, 1) <> "0" Then
result = result & GetTens(Mid(MyNumber, 2))
Else
result = result & GetDigit(Mid(MyNumber, 3))
End If
GetHundreds = result
End Function
' Converts a number from 10 to 99 into text.
Function GetTens(TensText)
Dim result As String
result = "" ' Null out the temporary function value.
If Val(Left(TensText, 1)) = 1 Then ' If value between 10-19...
Select Case Val(TensText)
Case 10: result = "Ten"
Case 11: result = "Eleven"
Case 12: result = "Twelve"
Case 13: result = "Thirteen"
Case 14: result = "Fourteen"
Case 15: result = "Fifteen"
Case 16: result = "Sixteen"
Case 17: result = "Seventeen"
Case 18: result = "Eighteen"
Case 19: result = "Nineteen"
Case Else
End Select
Else ' If value between 20-99...
Select Case Val(Left(TensText, 1))
Case 2: result = "Twenty "
Case 3: result = "Thirty "
Case 4: result = "Forty "
Case 5: result = "Fifty "
Case 6: result = "Sixty "
Case 7: result = "Seventy "
Case 8: result = "Eighty "
Case 9: result = "Ninety "
Case Else
End Select
result = result & GetDigit _
(Right(TensText, 1)) ' Retrieve ones place.
End If
GetTens = result
End Function
' Converts a number from 1 to 9 into text.
Function GetDigit(Digit)
Select Case Val(Digit)
Case 1: GetDigit = "One"
Case 2: GetDigit = "Two"
Case 3: GetDigit = "Three"
Case 4: GetDigit = "Four"
Case 5: GetDigit = "Five"
Case 6: GetDigit = "Six"
Case 7: GetDigit = "Seven"
Case 8: GetDigit = "Eight"
Case 9: GetDigit = "Nine"
Case Else: GetDigit = ""
End Select
End Function
Option Compare Database
Public Declare Function GetSystemDefaultLCID Lib "kernel32" () As Long
Public Declare Function GetLocaleInfo Lib "kernel32" _
Alias "GetLocaleInfoA" _
(ByVal Locale As Long, _
ByVal LCType As Long, _
ByVal lpLCData As String, _
ByVal cchData As Long) As Long
Public Function GetUserLocaleInfo(ByVal dwLocaleID As Long, ByVal dwLCType As Long) As String
Dim sReturn As String
Dim r As Long
r = GetLocaleInfo(dwLocaleID, dwLCType, sReturn, Len(sReturn))
If r Then
sReturn = Space$(r)
r = GetLocaleInfo(dwLocaleID, dwLCType, sReturn, Len(sReturn))
If r Then GetUserLocaleInfo = Left$(sReturn, r - 1)
End If
End Function
Public Function mYear(ByVal yourDate As Date) As Long
mYear = Year(yourDate)
If GetUserLocaleInfo(GetSystemDefaultLCID(), &H1009) = 7 Then mYear = Year(yourDate)
End Function
Public Function bYear(ByVal yourDate As Date) As Long
bYear = Year(yourDate)
'If GetUserLocaleInfo(GetSystemDefaultLCID(), &H1009) <> 7 Then bYear = Year(yourDate) + 543
If GetUserLocaleInfo(GetSystemDefaultLCID(), &H1009) = 7 Then bYear = ((Year(yourDate) + 543) - 2500)
End Function
Function MonthNameEng(ByVal yourDate) As String
If Not IsNull(yourDate) Then
yourDate = Format(yourDate, "m")
Select Case yourDate
Case 1
MonthNameEng = "January"
Case 2
MonthNameEng = "February"
Case 3
MonthNameEng = "March"
Case 4
MonthNameEng = "April"
Case 5
MonthNameEng = "May"
Case 6
MonthNameEng = "June"
Case 7
MonthNameEng = "July"
Case 8
MonthNameEng = "August"
Case 9
MonthNameEng = "September"
Case 10
MonthNameEng = "October"
Case 11
MonthNameEng = "November"
Case 12
MonthNameEng = "December"
Case Else
MonthNameEng = ""
End Select
End If
End Function