Access : จุดเริ่มต้นที่ง่ายที่สุดสำหรับการเรียนรู้ ระบบฐานข้อมูล Access : จุดเริ่มต้นที่ง่ายที่สุดสำหรับการเรียนรู้ การเขียนโปรแกรม Access : เป็นได้ทั้งตัวเก็บฐานข้อมูล และตัวจัดการฐานข้อมูล Thai Access : บอร์ดเสริมการเรียนรู้ Access ด้วยภาษาไทย
@ เขียนคำถามให้ผู้ตอบเข้าใจ จะช่วยให้ผู้ถามได้คำตอบที่ชัดเจนและรวดเร็ว / @ คุณได้คำตอบที่ต้องการแล้วหรือยัง? กลับมาอีกสักครั้งเพื่อแจ้งผู้ตอบ.
0 สมาชิก และ 1 บุคคลทั่วไป กำลังดูหัวข้อนี้
ฟอร์มค่าใช้จ่าย(Vat) เลขอินวอย์ซ running ตามปกติ แต่อีกฟอร์ม ค่าใช้จ่ายรวมบิล(Vat) ไม่ running ได้ใบเดียว รบกวนท่านที่เคารพ ช่วยดูหน่อยครับผิดตรงไหน
Sub ForIsToday()Dim strDate As StringDim intNum As Integer, intMax As IntegerDim strSuffix As StringstrDate = "TA" & "" & (Format(Now, "yy-mm-dd")) If Me.voucher_e_id = "" Or IsNull(Me.voucher_e_id) Then If IsNull(DMax("Val(Mid([voucher_e_id],12))", "voucher_e", "Left([voucher_e_id],10) = '" & strDate & " '")) Then Me.voucher_e_id = strDate & "-" & "01" Debug.Print "1" Else intMax = DMax("Val(Mid([voucher_e_id],12))", "voucher_e", "Left([voucher_e_id],10) = '" & strDate & " '") intMax = intMax + 1 Me.voucher_e_id = strDate & "-" & Format(intMax, "00") Debug.Print "1" End IfEnd IfEnd SubSub ForIsOtherday()Dim strDate As StringDim intNum As Integer, intMax As IntegerDim strSuffix As StringstrDate = "TA" & "" & (Format(date_exp, "yy-mm-dd")) If Me.voucher_e_id = "" Or IsNull(Me.voucher_e_id) Then If IsNull(DMax("Val(Mid([voucher_e_id],12))", "voucher_e", "Left([voucher_e_id],10) = '" & strDate & " '")) Then Me.voucher_e_id = strDate & "-" & "01" Debug.Print "1" Else intMax = DMax("Val(Mid([voucher_e_id],12))", "voucher_e", "Left([voucher_e_id],10) = '" & strDate & " '") intMax = intMax + 1 Me.voucher_e_id = strDate & "-" & Format(intMax, "00") Debug.Print "1" End IfEnd IfEnd Sub