Register Register Member Login Member Login Member Login Forgot Password ??
PHP , ASP , ASP.NET, VB.NET, C#, Java , jQuery , Android , iOS , Windows Phone
 

Registered : 109,038

HOME > .NET Framework > Forum > ขอโค้ดเครื่องคิดเลข + - * / (บวก-ลบ-คูณ-หาร) หน่อยภาษา C# ขอยคุณนะค่ะ


 

[.NET] ขอโค้ดเครื่องคิดเลข + - * / (บวก-ลบ-คูณ-หาร) หน่อยภาษา C# ขอยคุณนะค่ะ

 
Topic : 040172

Guest



ขอโค้ดเครื่องคิดเลขที่มี + - * /
ขอบคุณมากๆนะค่ะ



Tag : - - - -

Move To Hilight (Stock) 
Send To Friend.Bookmark.
Date : 2010-03-10 21:58:26 By : โบว์ View : 107589 Reply : 21
 

 

No. 1



โพสกระทู้ ( 3,144 )
บทความ ( 1 )

สมาชิกที่ใส่เสื้อไทยครีเอท

สถานะออฟไลน์


โจทย์การบ้านแบบเบๆ มาอีกแล้ว ทำเองเถอะหนู ง่ายขนาดนี้ พี่ทำแล้วผื่นขึ้น
Date : 2010-03-11 08:11:55 By : tungman
 

 

No. 2



โพสกระทู้ ( 11,835 )
บทความ ( 10 )

สมาชิกที่ใส่เสื้อไทยครีเอท Hall of Fame 2012

สถานะออฟไลน์


Code
โจทย์การบ้านแบบเบๆ มาอีกแล้ว ทำเองเถอะหนู ง่ายขนาดนี้ พี่ทำแล้วผื่นขึ้น


แพ้ งานง่ายๆ หรอท่าน เคยได้ยินแต่แพ้กุ้ง แพ้ฝุ่น
Date : 2010-03-11 14:02:36 By : plakrim
 

 

No. 3



โพสกระทู้ ( 1,603 )
บทความ ( 1 )



สถานะออฟไลน์


พี่ตึ๋งศรี ไม่แพ้กุ้งธรรมดาค่ะ
แต่แพ้น้องกุ้ง น้องปู น้องปลาค่ะ
Date : 2010-03-11 21:21:31 By : blurEye
 

 

No. 4



โพสกระทู้ ( 3,144 )
บทความ ( 1 )

สมาชิกที่ใส่เสื้อไทยครีเอท

สถานะออฟไลน์


Quote:
พี่ตึ๋งศรี ไม่แพ้กุ้งธรรมดาค่ะ
แต่แพ้น้องกุ้ง น้องปู น้องปลาค่ะ


อันนั้น ข้าพเจ้าถึงตายก็ยอม
Date : 2010-03-12 11:15:57 By : tungman
 

 

No. 5



โพสกระทู้ ( 121 )
บทความ ( 0 )



สถานะออฟไลน์
Twitter Facebook

ลองเขียนดูเองก่อนนะครับ จะได้เป็นการฝึกไปในตัวด้วย ถ้าทำได้ งานอื่นๆ ก็จะทำได้แหละ (เริ่มมีความมั่นใจมากขึ้น สู้ๆ ครับ)

Date : 2010-03-17 13:04:22 By : madoadza
 

 

No. 6



โพสกระทู้ ( 74,059 )
บทความ ( 838 )

สมาชิกที่ใส่เสื้อไทยครีเอท

สถานะออฟไลน์
Twitter Facebook

C# ถามเรื่องเครื่องคิดเลขครับ คือผมสร้างเครื่องคิดเลขเฉพาะการบวกขึ้นครับ
Date : 2011-04-18 06:41:45 By : webmaster
 

 

No. 7

Guest


คือว่าผมอยากรู้การสร้างเครื่องคิดเลขที่ทำหลายๆปุ่มอ่ะคับ มันต้องเริ่มยังงัยอ่ะ

เคยทำแต่แบบ กรอกตัวเลขลง textbox1 กะ textbox2 แล้วก็กดเครื่องหมายที่ต้องการ แล้วผลลัพธ์จะมาโชว์ที่ textbox3 อ่ะคับ ช่วยอธิบายที ขอบคุณล่วงหน้าคับ
Date : 2011-08-03 00:35:53 By : Void main
 

 

No. 8

Guest


01.#include<stdio.h>
02.int main()
03.{
04.           float a=0;
05.           float b=0;
06.           float c=0;
07.           float d=0;
08.           char e;
09.           char r;
10.           do
11.           {
12.           printf("Plesae key Number1 (+,-,x,/) Number2 )");
13.           scanf("%f%c%f",&a,&e,&b);
14.   
15.           switch(e)
16.                  {
17.                  case'+' :
18.                          c=a+b;
19.                          break;
20.                  case'-' :
21.                          c=a-b;
22.                          break;
23.                  case'*' :
24.                          c=a*b;
25.                          break;
26.                  case'/' :
27.                          c=a/b;
28.                          break;
29.                  default:
30.                  ;}
31.                printf("AWcer:\t %f\n",c);
32.         
33.        scanf("%c",&r);
34.        }
35.        while(r!='q');        
36.}



ไม่ทราบว่าใช่หรือป่าวอะคับ งงง
Date : 2011-09-20 11:04:26 By : VB54
 

 

No. 9

Guest


01.#include <iostream>
02.using namespace std;
03.int main()
04.{
05.int Number1, Number2;
06.char e;
07.// input two number
08.cout << "Enter first number : ";
09.cin >> Number1;
10.cout << "Enter second number : ";
11.cin >> Number2;
12.do
13.{
14.scanf("%c",&e);
15.// Diplay two add
16.cout << endl;
17.cout << "Sum " << Number1 << " + " << Number2;
18.cout << " = " << Number1 + Number2 << endl;
19.cout << endl;
20.cout << "Sum " << Number1 << " - " << Number2;
21.cout << " = " << Number1 - Number2 << endl;
22.cout << endl;
23.cout << "Sum " << Number1 << " * " << Number2;
24.cout << " = " << Number1 * Number2 << endl;
25.cout << endl;
26.cout << "Sum " << Number1 << " / " << Number2;
27.cout << " = " << Number1 / Number2 << endl;
28.cout << "Enter first number : ";
29.cin >> Number1;
30.cout << "Enter second number : ";
31.cin >> Number2;
32.}
33.while(e!='q');
34.cout<<"\n###END Pocess###\t"<<endl;
35.return (0);
36.}




Date : 2011-09-20 11:07:32 By : VB54
 

 

No. 10



โพสกระทู้ ( 20 )
บทความ ( 0 )



สถานะออฟไลน์


ถ้าคุณเขียนโค้ดเครื่องคิดเลขเองได้ เเสดงว่าคุณเข้าใจเนื้อหาที่เรียนเเล้วครับ แต่ถ้าไม่ทำเองคุณก็จะไม่เข้าใจต่อไปเลื่อย ๆ
ลองทำแล้วติดปัญหาอะไรค่อยมาถามใหม่ครับ สู่ ๆ ๆ...
Date : 2011-09-20 17:00:53 By : kimura_kenchin
 

 

No. 11

Guest


C#

001.using System;
002.using System.Collections.Generic;
003.using System.ComponentModel;
004.using System.Data;
005.using System.Drawing;
006.using System.Linq;
007.using System.Text;
008.using System.Windows.Forms;
009. 
010.namespace WindowsFormsApplication4
011.{
012.    public partial class Form1 : Form
013.    {
014.        int a;
015.        bool plus = false;
016.        bool minus = false;
017.        bool multiply = false;
018.        bool divide = false;
019.        bool power = false;
020.        public Form1()
021.        {
022.            InitializeComponent();
023.        }
024. 
025. 
026.        private void Form1_Load(object sender, EventArgs e)
027.        {
028. 
029.        }
030. 
031.        private void button9_Click(object sender, EventArgs e)
032.        {
033.            textBox1.Text = textBox1.Text + "1";
034. 
035.        }
036. 
037.        private void button8_Click(object sender, EventArgs e)
038.        {
039.            textBox1.Text = textBox1.Text + "2";
040. 
041.        }
042. 
043.        private void button7_Click(object sender, EventArgs e)
044.        {
045.            textBox1.Text = textBox1.Text + "3";
046. 
047.        }
048. 
049.        private void button4_Click(object sender, EventArgs e)
050.        {
051.            textBox1.Text = textBox1.Text + "4";
052. 
053.        }
054. 
055.        private void button5_Click(object sender, EventArgs e)
056.        {
057.            textBox1.Text = textBox1.Text + "5";
058. 
059.        }
060. 
061.        private void button6_Click(object sender, EventArgs e)
062.        {
063.            textBox1.Text = textBox1.Text + "6";
064. 
065.        }
066. 
067.        private void button1_Click(object sender, EventArgs e)
068.        {
069.            textBox1.Text = textBox1.Text + "7";
070. 
071.        }
072. 
073.        private void button2_Click(object sender, EventArgs e)
074.        {
075.            textBox1.Text = textBox1.Text + "8";
076. 
077.        }
078. 
079.        private void button3_Click(object sender, EventArgs e)
080.        {
081.            textBox1.Text = textBox1.Text + "9";
082. 
083.        }
084. 
085.        private void button19_Click(object sender, EventArgs e)
086.        {
087.            textBox1.Text = "";
088.        }
089. 
090.        private void button18_Click(object sender, EventArgs e)
091.        {
092.            int a = textBox1.Text.Length;
093.            if (textBox1.Text == "")
094.            {
095.                textBox1.Text = "";
096.            }
097.            else
098.            {
099.                textBox1.Text = textBox1.Text.Remove(a - 1);
100.            }
101. 
102.        }
103. 
104.        private void button13_Click(object sender, EventArgs e)
105.        {
106.            if (textBox1.Text == "")
107.            {
108.                return;
109.            }
110.            else
111.            {
112.                plus = true;
113.                textBox1.Tag = textBox1.Text;
114.                textBox1.Text = "";
115.            }
116.        }
117. 
118.        private void button17_Click(object sender, EventArgs e)
119.        {
120.            if (plus)
121.            {
122.                decimal dec = Convert.ToDecimal(textBox1.Tag) + Convert.ToDecimal(textBox1.Text);
123.                textBox1.Text = dec.ToString();
124.            }
125.            else if (minus)
126.            {
127.                decimal dec = Convert.ToDecimal(textBox1.Tag) - Convert.ToDecimal(textBox1.Text);
128.                textBox1.Text = dec.ToString();
129.            }
130.            else if (multiply)
131.            {
132.                decimal dec = Convert.ToDecimal(textBox1.Tag) * Convert.ToDecimal(textBox1.Text);
133.                textBox1.Text = dec.ToString();
134.            }
135.            else if (divide)
136.            {
137.                if (textBox1.Text == "0")
138.                {
139.                    textBox1.Text = "0";
140.                }
141.                else if (textBox1.Text != "0")
142.                {
143.                    decimal dec = Convert.ToDecimal(textBox1.Tag) / Convert.ToDecimal(textBox1.Text);
144.                    textBox1.Text = dec.ToString();
145.                }
146.            }
147.            else if (power)
148.            {
149.                decimal dec = Convert.ToDecimal(textBox1.Tag) * Convert.ToDecimal(textBox1.Tag);
150.                textBox1.Text = dec.ToString();
151.            }
152. 
153. 
154.            return;
155.        }
156. 
157.        private void button14_Click(object sender, EventArgs e)
158.        {
159.            if (textBox1.Text.Contains("."))
160.            {
161.                return;
162.            }
163.            else
164.            {
165.                textBox1.Text = textBox1.Text + ".";
166.            }
167.        }
168. 
169.        private void button12_Click(object sender, EventArgs e)
170.        {
171.            if (textBox1.Text == "")
172.            {
173.                return;
174.            }
175.            else
176.            {
177.                minus = true;
178.                textBox1.Tag = textBox1.Text;
179.                textBox1.Text = "";
180. 
181.            }
182.        }
183. 
184.        private void button11_Click(object sender, EventArgs e)
185.        {
186.            if (textBox1.Text == "")
187.            {
188.                return;
189.            }
190.            else
191.            {
192.                multiply = true;
193.                textBox1.Tag = textBox1.Text;
194.                textBox1.Text = "";
195.            }
196.        }
197. 
198.        private void button10_Click(object sender, EventArgs e)
199.        {
200.            if (textBox1.Text == "")
201.            {
202.                return;
203.            }
204.            else
205.            {
206.                divide = true;
207.                textBox1.Tag = textBox1.Text;
208.                textBox1.Text = "";
209.            }
210.        }
211. 
212.        private void button15_Click(object sender, EventArgs e)
213.        {
214.            if (textBox1.Text != "0")
215.            {
216.                if (textBox1.Text.Contains('-'))
217.                {
218.                    textBox1.Text = textBox1.Text.Remove(0, 1);
219.                }
220.                else
221.                {
222.                    textBox1.Text = "-" + textBox1.Text;
223.                }
224.            }
225.        }
226. 
227.        private void button16_Click(object sender, EventArgs e)
228.        {
229.            textBox1.Text = textBox1.Text + "0";
230.        }
231. 
232.        private void textBox1_TextChanged(object sender, EventArgs e)
233.        {
234. 
235.        }
236. 
237.        private void label1_Click(object sender, EventArgs e)
238.        {
239. 
240.        }
241. 
242.        private void button20_Click(object sender, EventArgs e)
243.        {
244. 
245.        }
246. 
247.        private void button20_Click_1(object sender, EventArgs e)
248.        {
249.            if (textBox1.Text == "")
250.            {
251.                return;
252.            }
253.            else
254.                power = true;
255.                textBox1.Tag = textBox1.Text;
256.                textBox1.Text = "";
257.           }
258.        }
259.    }

Date : 2012-07-10 11:24:03 By : C#
 

 

No. 12

Guest


ขอบคุณครับ
Date : 2012-08-03 02:51:45 By : redsky8
 

 

No. 13

Guest


ขอบคุณมากครับ ทำให้ตาสว่างขึ้นเยอะเลย
กะว่าจะไปตามความในตำราให้ลึกซึ้งกว่านี้
เขียนเองติดบั๊กเพียบเลย ที่ไม่ติดก็ให้ผลที่ไม่ตรง
Date : 2012-09-14 21:16:05 By : ต้น
 

 

No. 14

Guest


การเขียนโปรแกรมเกี่ยวกับคำสั่ง while และ do while ทำอย่างไรครับ
(C# 2010)
Date : 2012-09-26 23:42:27 By : นี่ง
 

 

No. 15

Guest


6. จงเขียนโปรแกรมเครื่องคิดเลขแบบง่าย โดยมีเงื่อนไขดังนี้
1. กด a ให้เข้าโปรแกรมบวกเลข เมื่อคำนวณเรียบร้อยแล้ว
แล้วให้โปรแกรมถามว่า ต้องการจะออกจริง หรือไม่ ถ้าตอบ Y ให้ออก ถ้า ตอบ N ให้กลับไปเลือกโปรแกรมใหม่อีกครั้ง
2. กด b ให้เข้าโปรแกรมลบเลข
แล้วให้โปรแกรมถามว่า ต้องการจะออกจริง หรือไม่ ถ้าตอบ Y ให้ออก ถ้า ตอบ N ให้กลับไปเลือกโปรแกรมใหม่อีกครั้ง
3. กด c ให้เข้าโปรแกรมคูณเลข
แล้วให้โปรแกรมถามว่า ต้องการจะออกจริง หรือไม่ ถ้าตอบ Y ให้ออก ถ้า ตอบ N ให้กลับไปเลือกโปรแกรมใหม่อีกครั้ง
4. กด d ให้เข้าโปรแกรมหารเลข
แล้วให้โปรแกรมถามว่า ต้องการจะออกจริง หรือไม่ ถ้าตอบ Y ให้ออก ถ้า ตอบ N ให้กลับไปเลือกโปรแกรมใหม่อีกครั้ง
5. กด Y ให้ออกจากโปรแกรมแกรม
แล้วให้โปรแกรมถามว่า ต้องการจะออกจริง หรือไม่ ถ้าตอบ Y ให้ออก ถ้า ตอบ N ให้กลับไปเลือกโปรแกรมใหม่อีก
Date : 2013-02-10 15:57:11 By : may
 

 

No. 16

Guest


ตรง no.11 บรรทัดที่ 122 หน้าคำว่า convert นี่คืออะไรหรอคับ ?
Date : 2013-02-21 01:37:59 By : ทิว
 

 

No. 17



โพสกระทู้ ( 74,059 )
บทความ ( 838 )

สมาชิกที่ใส่เสื้อไทยครีเอท

สถานะออฟไลน์
Twitter Facebook

ปกติใน C# จะบวกกันได้จะต้องแปลงให้อยู่ในรูป DataType ที่มันสามารถบวกได้ก่อนครับ เช่น พวก String จะบวกไม่ได้
Date : 2013-02-24 08:51:11 By : mr.win
 

 

No. 18



โพสกระทู้ ( 109 )
บทความ ( 0 )



สถานะออฟไลน์


Code (C#)
001.public partial class Form1 : Form
002.  {
003. 
004.      //int a;
005.      bool plus = false;
006.      bool minus = false;
007.      bool multiply = false;
008.      bool divide = false;
009.      bool power = false;
010. 
011.      public Form1()
012.      {
013.          InitializeComponent();
014.      }
015. 
016.      private void num_0_Click(object sender, EventArgs e)
017.      {
018.          textBox1.Text = textBox1.Text + "0";
019.      }
020. 
021.      private void num_1_Click(object sender, EventArgs e)
022.      {
023.          textBox1.Text = textBox1.Text + "1";
024.      }
025. 
026.      private void num_2_Click(object sender, EventArgs e)
027.      {
028.          textBox1.Text = textBox1.Text + "2";
029.      }
030. 
031.      private void num_3_Click(object sender, EventArgs e)
032.      {
033.          textBox1.Text = textBox1.Text + "3";
034.      }
035. 
036.      private void num_4_Click(object sender, EventArgs e)
037.      {
038.          textBox1.Text = textBox1.Text + "4";
039.      }
040. 
041.      private void num_5_Click(object sender, EventArgs e)
042.      {
043.          textBox1.Text = textBox1.Text + "5";
044.      }
045. 
046.      private void num_6_Click(object sender, EventArgs e)
047.      {
048.          textBox1.Text = textBox1.Text + "6";
049.      }
050. 
051.      private void num_7_Click(object sender, EventArgs e)
052.      {
053.          textBox1.Text = textBox1.Text + "7";
054.      }
055. 
056.      private void num_8_Click(object sender, EventArgs e)
057.      {
058.          textBox1.Text = textBox1.Text + "8";
059.      }
060. 
061.      private void num_9_Click(object sender, EventArgs e)
062.      {
063.          textBox1.Text = textBox1.Text + "9";
064.      }
065. 
066.      private void btnBackspace_Click(object sender, EventArgs e)
067.      {
068.          int a = textBox1.Text.Length;
069.          if (textBox1.Text == "")
070.          {
071.              textBox1.Text = "";
072.          }
073.          else
074.          {
075.              textBox1.Text = textBox1.Text.Remove(a - 1);
076.          }
077. 
078. 
079.      }
080. 
081.      private void btnClear_Click(object sender, EventArgs e)
082.      {
083.          //if (textBox1.Text == "")
084.          //    return;
085.          //textBox1.Text = "";
086.          textBox1.Clear();
087.      }
088. 
089.      private void button1_Click(object sender, EventArgs e)
090.      {
091.           if  (plus)
092.          {
093.              decimal dec = Convert.ToDecimal(textBox1.Tag) + Convert.ToDecimal(textBox1.Text);
094.              textBox1.Text = dec.ToString();
095.          }
096.          else if (minus)
097.          {
098.              decimal dec = Convert.ToDecimal(textBox1.Tag) - Convert.ToDecimal(textBox1.Text);
099.              textBox1.Text = dec.ToString();
100.          }
101.          else if (multiply)
102.          {
103.              decimal dec = Convert.ToDecimal(textBox1.Tag) * Convert.ToDecimal(textBox1.Text);
104.              textBox1.Text = dec.ToString();
105.          }
106.          else if (divide)
107.          {
108.              if (textBox1.Text == "0")
109.              {
110.                  textBox1.Text = "0";
111.              }
112.              else if (textBox1.Text != "0")
113.              {
114.                  decimal dec = Convert.ToDecimal(textBox1.Tag) / Convert.ToDecimal(textBox1.Text);
115.                  textBox1.Text = dec.ToString();
116.              }
117.          }
118.          else if (power)
119.          {
120.              decimal dec = Convert.ToDecimal(textBox1.Tag) * Convert.ToDecimal(textBox1.Tag);
121.              textBox1.Text = dec.ToString();
122.          }
123. 
124.          return ;
125. 
126.      }
127. 
128.      private void btnKoon_Click(object sender, EventArgs e)
129.      {
130.          if (textBox1.Text == "")
131.          {
132.              return;
133.          }
134.          else
135.          {
136.              multiply = true;
137.              textBox1.Tag = textBox1.Text;
138.              textBox1.Text = "";
139.          }
140.           
141. 
142.      }
143. 
144.      private void btnLopp_Click(object sender, EventArgs e)
145.      {
146.          if (textBox1.Text == "")
147.          {
148.              return;
149.          }
150.          else
151.          {
152.              minus = true;
153.              textBox1.Tag = textBox1.Text;
154.              textBox1.Text = "";
155.          }
156.      }
157. 
158.      private void btnBuak_Click(object sender, EventArgs e)
159.      {
160.          if (textBox1.Text == "")
161.          {
162.              textBox1.Text = (textBox1.Tag + textBox1.Text);
163.              return;
164.          }
165.          else
166.          {
167.              plus = true;
168.              textBox1.Tag = textBox1.Text;
169.              textBox1.Text = "";
170.               
171.          }
172. 
173.      }
174. 
175.      private void btnHan_Click(object sender, EventArgs e)
176.      {
177.          if (textBox1.Text == "")
178.          {
179.              return;
180.          }
181.          else
182.          {
183.              divide = true;
184.              textBox1.Tag = textBox1.Text;
185.              textBox1.Text = "";
186.          }
187. 
188.      }
189. 
190.      private void btnJud_Click(object sender, EventArgs e)
191.      {
192.          if (textBox1.Text.Contains("."))
193.          {
194.              return;
195.          }
196.          else
197.          {
198.              textBox1.Text = textBox1.Text + ".";
199.          }
200.      }


รบกวนหน่อยครับ จากโค้ดด้านบนเป็น + - * / แต่แสดง ผลทุกครั้งต้องกด = ก่อน แล้วค่อยไป + ต่อ แต่ถ้าต้องการ + ต่อไปเลยนี่ต้องเพิ่มโค้ดอะไร อะครับ รบกวนหน่อยคับ
Date : 2013-04-11 10:00:47 By : offonepoint
 

 

No. 19

Guest


พ่อเป็นโปรแกรมเมอร์หรอคับ เขียนซะยาว
Date : 2013-08-27 09:35:17 By : โด้เด๋าดึ๋ง
 

 

No. 20



โพสกระทู้ ( 697 )
บทความ ( 0 )



สถานะออฟไลน์
Facebook

กระทู้ตั้งแต่ กี่ปีที่แล้วเนี้ย ป่านนี้เจ้าของกระทู้เทพแล้วมั้ง
Date : 2013-08-27 09:52:32 By : 01000010
 

 

No. 21

Guest


ช่วยแนะนำโค๊ดเครื่องคิดเลขกับโค๊ดนาฬิกาหน่อยได้ไหมค่ะพอดีจำทำโปรเจ็คส่งค่ะ และควรจะใช้โปรแกรมไหนสร้างค่ะช่วยแนะนำหน่อย
Date : 2016-08-05 18:12:17 By : mon
 

   

ค้นหาข้อมูล


   
 

แสดงความคิดเห็น
Re : ขอโค้ดเครื่องคิดเลข + - * / (บวก-ลบ-คูณ-หาร) หน่อยภาษา C# ขอยคุณนะค่ะ
 
 
รายละเอียด
 
ตัวหนา ตัวเอียง ตัวขีดเส้นใต้ ตัวมีขีดกลาง| ตัวเรืองแสง ตัวมีเงา ตัวอักษรวิ่ง| จัดย่อหน้าอิสระ จัดย่อหน้าชิดซ้าย จัดย่อหน้ากึ่งกลาง จัดย่อหน้าชิดขวา| เส้นขวาง| ขนาดตัวอักษร แบบตัวอักษร
ใส่แฟลช ใส่รูป ใส่ไฮเปอร์ลิ้งค์ ใส่อีเมล์ ใส่ลิ้งค์ FTP| ใส่แถวของตาราง ใส่คอลัมน์ตาราง| ตัวยก ตัวห้อย ตัวพิมพ์ดีด| ใส่โค้ด ใส่การอ้างถึงคำพูด| ใส่ลีสต์
smiley for :lol: smiley for :ken: smiley for :D smiley for :) smiley for ;) smiley for :eek: smiley for :geek: smiley for :roll: smiley for :erm: smiley for :cool: smiley for :blank: smiley for :idea: smiley for :ehh: smiley for :aargh: smiley for :evil:
Insert PHP Code
Insert ASP Code
Insert VB.NET Code Insert C#.NET Code Insert JavaScript Code Insert C#.NET Code
Insert Java Code
Insert Android Code
Insert Objective-C Code
Insert XML Code
Insert SQL Code
Insert Code
เพื่อความเรียบร้อยของข้อความ ควรจัดรูปแบบให้พอดีกับขนาดของหน้าจอ เพื่อง่ายต่อการอ่านและสบายตา และตรวจสอบภาษาไทยให้ถูกต้อง

อัพโหลดแทรกรูปภาพ

Notice

เพื่อความปลอดภัยของเว็บบอร์ด ไม่อนุญาติให้แทรก แท็ก [img]....[/img] โดยการอัพโหลดไฟล์รูปจากที่อื่น เช่นเว็บไซต์ ฟรีอัพโหลดต่าง ๆ
อัพโหลดแทรกรูปภาพ ให้ใช้บริการอัพโหลดไฟล์ของไทยครีเอท และตัดรูปภาพให้พอดีกับสกรีน เพื่อความโหลดเร็วและไฟล์ไม่ถูกลบทิ้ง

   
  เพื่อความปลอดภัยและการตรวจสอบ กระทู้ที่แทรกไฟล์อัพโหลดไฟล์จากที่อื่น อาจจะถูกลบทิ้ง
 
โดย
อีเมล์
บวกค่าให้ถูก
<= ตัวเลขฮินดูอารบิก เช่น 123 (หรือล็อกอินเข้าระบบสมาชิกเพื่อไม่ต้องกรอก)





ThaiCreate.Com Logo
© www.ThaiCreate.Com. 2003-2025 All Rights Reserved.
ไทยครีเอทบริการ จัดทำดูแลแก้ไข Web Application ทุกรูปแบบ (PHP, .Net Application, VB.Net, C#)
[Conditions Privacy Statement] ติดต่อโฆษณา 081-987-6107 อัตราราคา คลิกที่นี่