|
|
|
แปลงค่า จาก string ในโปรแกรม จัดเก็บลงในฐานข้อมูล (Access) ให้เป็น integer ทำไงหรอคะ |
|
|
|
|
|
|
|
System.Convert.ToInt32(sNumber, 10);
int x = Int.Parse("100");
|
|
|
|
|
Date :
2010-10-18 16:06:23 |
By :
n |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
จาก
System.Convert.ToInt32(sNumber, 10);
int x = Int.Parse("100");
ตรง (sNumber, 10) กับ ("100") คืออะไรหรอคะ
|
|
|
|
|
Date :
2010-10-18 16:17:46 |
By :
looknut |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ก่อนจะบันทึก หรือ update ให้แปลงค่าก่อน
Code (C#)
string str = "1";
integer num = convert.toint32(str);
|
|
|
|
|
Date :
2010-10-18 16:55:05 |
By :
nooknoname |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ลองดูแล้วเกือบได้ ค่ะ เพียงแต่ว่าหนูไม่รุว่า vb.net โค้ดมันเขียนยังไงอ่าค่ะ รบกวนอีกนิดนะคะ
|
|
|
|
|
Date :
2010-10-18 17:03:57 |
By :
looknut |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Code (VB.NET)
CInt(txtNumric.Text)
|
|
|
|
|
Date :
2010-10-19 08:39:58 |
By :
3rds |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
เขียน vb อย่าพยายามใช้ function จากยุคหินเป็น ctype cint พวกนี้เพราะจะทำให้ performance ตก
ซึ่ง .net มี method มาแทนแล้วพยายามใช้ให้ติดเป็นนิสัย
|
|
|
|
|
Date :
2010-10-19 14:58:14 |
By :
tungman |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Load balance : Server 05
|