 |
|
มีปัญหา พ.ศ.ใน Crystal Report เกี่ยวกับ PrintDate ครับ รบกวนท่านที่รู้โปรดช่วยตอบคำถามทีครับ |
|
 |
|
|
 |
 |
|
ลองกำหนด format ใน cystal report ครับ
คือ คลิกขวาที่ fieldobject date ที่ต้องการ แล้วเลือกแท็บ date and time ตรง style ให้เลือกเป็น custom style
เสร็จแล้วคลิกที่ปุ่ม customize จะได้ฟอร์ม custom style แล้วเลือกแท็บ date จากนั้นก็กำหนด รายละเอียดดังรูปดูครับ

ถ้าไม่ได้จริงๆ ก็ลองหาวิธีอื่นดูนะครับ
|
 |
 |
 |
 |
Date :
2010-09-03 10:55:08 |
By :
tee |
|
 |
 |
 |
 |
|
|
 |
 |
|
 |
 |
 |
|
|
 |
 |
|
ขอบคุณคุณ tee มากครับ แบบของคุณ tee ผมลองปรับดูแล้วครับ แต่ก็ยังไม่ได้ T T
|
 |
 |
 |
 |
Date :
2010-09-03 11:36:18 |
By :
LunaziA |
|
 |
 |
 |
 |
|
|
 |
 |
|
 |
 |
 |
|
|
 |
 |
|
เก็ยช้อมูลลงดาต้าเบสเป็น string หรือ datetime ละค่ะ
ถ้ากรณีแรกก้อตัดต่อสตริงให้จบก่อน
ส่วนกรณีที่สอง ก้อแยกวันเดือนปีออกมาแล้ว convert ก่อนส่งไป crystal report ค่ะ
|
 |
 |
 |
 |
Date :
2010-09-03 13:59:48 |
By :
blurEyes |
|
 |
 |
 |
 |
|
|
 |
 |
|
 |
 |
 |
|
|
 |
 |
|
ดูโค้ดเต็มๆ ดีกว่ากครับจะได้ช่วยถูก
|
 |
 |
 |
 |
Date :
2010-09-03 17:08:46 |
By :
tee |
|
 |
 |
 |
 |
|
|
 |
 |
|
 |
 |
 |
|
|
 |
 |
|
การเขียนโปรแกรมเรื่องวันที่ค่อนข้างจะยุ่งสักหน่อย งั้นผมขอเป็นตัวเลือกให้นะ อาจไม่เทพแต่ผมก็ใช้งานได้ครับ
Code
Select Convert(varchar,receivedate,103) receivedate from MyTable
สร้าง Formular นะครับ
และเขียนคำสั่งตามด้านล่าง
dim MonthNames as string
dim MonthNumber as string
dim YearNumber as number
YearNumber =tonumber(right({command.receivedate},4))
if YearNumber<2500 then
YearNumber =YearNumber+543
end if
MonthNumber =mid({command.receivedate},4,2)
if MonthNumber="01" then
MonthNames="มกราคม"
elseif MonthNumber="02" then
MonthNames="กุมภาพันธ์"
elseif MonthNumber="03" then
MonthNames="มีนาคม"
elseif MonthNumber="04" then
MonthNames="เมษายน"
elseif MonthNumber="05" then
MonthNames="พฤษภาคม"
elseif MonthNumber="06" then
MonthNames="มิถุนายน"
elseif MonthNumber="07" then
MonthNames="กรกฎาคม"
elseif MonthNumber="08" then
MonthNames="สิงหาคม"
elseif MonthNumber="09" then
MonthNames="กันยายน"
elseif MonthNumber="10" then
MonthNames="ตุลาคม"
elseif MonthNumber="11" then
MonthNames="พฤศจิกายน"
elseif MonthNumber="12" then
MonthNames="ธันวาคม"
end if
MonthNames =left({command.receivedate},2) & " " & MonthNames &" " & replace(replace(totext(YearNumber),".00",""),",","")
formula = "วันที่ " & MonthNames
|
|
|
 |
 |
|
 |
 |
 |
|
|
 |
 |
|
ขอบคุณนะคับ คุณ suphat
|
 |
 |
 |
 |
Date :
2010-09-07 17:15:59 |
By :
LunaziA |
|
 |
 |
 |
 |
|
|
 |
 |
|
 |
 |
 |
|
|
 |
 |
|
cdate(Year({ข้อมูลของเรา})+543,Month({ข้อมูลของเรา}),day({ข้อมูลของเรา}))
ข้อมูลของเรา ต้องมี data type เป็น date ก่อนนะค่ะ ซึ่งแก้ไขได้ใน database ค่ะ แล้วเอาโค้ดนี้ไปใส่ ใน formular field ค่ะ
เครดิต จาก : https://www.thaicreate.com/dotnet/forum/054968.html ขอบคุณด้วยค่ะ ^^
|
 |
 |
 |
 |
Date :
2013-02-21 17:39:54 |
By :
JOY |
|
 |
 |
 |
 |
|
|
 |
 |
|
 |
 |
|
|