9/22/2013

ค้นหา  Column ใน DataTable

If Not dtLawWord.Columns.Contains("ID") Then
                MessageBox.Show("Can not Find Columns ID")
End If

Posted on Sunday, September 22, 2013 by nuyingnaja

9/19/2013


Imports Microsoft.Office.Interop.Word
Imports Microsoft.Office.Interop
Imports Microsoft.Office

Public Class classWord

    Public Sub GetWord()


        Dim WdApp As New Application

        Dim WdDoc As Word.Document

        WdDoc = WdApp.Documents.Open("D:\text.doc")

        Dim rStart, rStop As Integer

        rStart = 100

        rStop = 200

        WdDoc.Range(Start:=rStart, End:=rStop).Delete()

        WdDoc.Save()

        WdDoc.Close()

        WdDoc = Nothing

        WdApp.Quit()

        WdApp = Nothing

    End Sub

End Class

Posted on Thursday, September 19, 2013 by nuyingnaja

9/17/2013


For Each oRow As DataGridViewRow In DataGridView1.Rows

            TextBox1.Text = oRow.Cells(1).Value

Next

Posted on Tuesday, September 17, 2013 by nuyingnaja


Private Sub CopyFileToFolder(ByVal FileName As String, ByVal FileNameNew As String)

        File.Copy(FileName, FileNameNew, True)

End Sub

Posted on Tuesday, September 17, 2013 by nuyingnaja


Private Sub CreatFolder(ByVal pathName As String)

        If Not System.IO.Directory.Exists(pathName) Then        ' ถ้าไม่มี Directory name นี้
            My.Computer.FileSystem.CreateDirectory(pathName)  ' ก็จงสร้าง Directory name นี้
        End If

End Sub

Posted on Tuesday, September 17, 2013 by nuyingnaja

9/16/2013


Dim i As Integer = DataGridView1.Rows.Count - 1

For irow = 0 To DataGridView1.Rows.Count - 1

            ' if Row is Selete Check Box is Delete row
            If DataGridView1.Rows.Item(i).Cells(0).Value = True Then

                DataGridView1.Rows.RemoveAt(i)

            End If
            i -= 1

Next

Posted on Monday, September 16, 2013 by nuyingnaja

For iIndex = DataGridView1.RowCount - 1 To 0 Step -1

                If DataGridView1.Rows.Item(iIndex).Cells(0).Value = txt_lawSearch.Text Then

                    DataGridView1.Rows(iIndex).Selected = True
                    Me.DataGridView1.CurrentCell = Me.DataGridView1.Rows(iIndex).Cells(0)
                    Exit Sub

                End If

Next iIndex

Posted on Monday, September 16, 2013 by nuyingnaja


Private Sub DataGridView1_CellClick(ByVal sender As Object, ByVal e As System.Windows.Forms.DataGridViewCellEventArgs) Handles DataGridView1.CellClick

        Dim ICell As Integer = e.ColumnIndex
        Dim IRow As Integer = e.RowIndex


        If _IRow >= 0 Then


            MsgBox(dgvView.Rows.Item(IRow).Cells(
ICell).Value)

        End If

 

End Sub

Posted on Monday, September 16, 2013 by nuyingnaja

DataGridView1.Rows.Clear()
      
With DataGridView1

        .Rows.Add("1", "AAA")
        .Rows.Add("2", "BBB")
        .Rows.Add("3", "CCC")
        .Rows.Add("4", "DDD")
        .Rows.Add("5", "EEE")

End With

==== หรือ ====

Dim dt As New DataTable
DataGridView1.DataSource = dt


Posted on Monday, September 16, 2013 by nuyingnaja


Private Sub btn_Browse_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles btn_Browse.Click
        

   Try
            Dim BrowseFolder As New FolderBrowserDialog
            BrowseFolder.ShowDialog()
            txt_FolderFile.Text = BrowseFolder.SelectedPath
            If txt_FolderFile.Text = "" Then
                Exit Sub
            End If

            System.Windows.Forms.Application.DoEvents()
            Cursor = Cursors.WaitCursor
            Dim dir As New DirectoryInfo(txt_FolderFile.Text)

            Dim aryFi As FileInfo() = dir.GetFiles("*.doc")
            Dim fi As FileInfo
            Dim i As Integer = 1

            For Each fi In aryFi
                Dim gFile As String = Path.GetFileNameWithoutExtension(fi.Name)
                ' process
            Next
   Catch ex As Exception
            MsgBox(ex.Message)

   End Try

End Sub

Posted on Monday, September 16, 2013 by nuyingnaja


Private Sub WriteTxt_dt(ByVal dt As DataTable, ByVal path As String)

        Dim sw As StreamWriter = New StreamWriter("D:\" & 
path & ".txt")
        Dim FRow As DataRow()
        FRow = dt.Select("", "", DataViewRowState.CurrentRows)
        For Each r1 In FRow


            Dim lineoftext = r1("ID").ToString & " = " & r1("NAME").ToString
            sw.WriteLine(lineoftext)


        Next
        sw.Close()


End Sub

Posted on Monday, September 16, 2013 by nuyingnaja

9/15/2013

Private Sub WriteXml_dt(ByVal dt As DataTable)
        If dt.Rows.Count <> 0 Then
            'Save File Xml to D:\NewFolder
            dt.WriteXml("D:\NewFolder\Test.xml", XmlWriteMode.WriteSchema, True)
        End If

End Sub
 

Function ReadXml_dt()
        Dim _filePath As String = "D:\NewFolder"
        Dim _fileName As String = "Test.xml"
        Dim dt As New DataTable("dt")
        Dim ds As New DataSet()

        If System.IO.Directory.Exists(_filePath) Then      ' if not directory name
            Dim di As New DirectoryInfo(_filePath)
            Dim aryFi As FileInfo() = di.GetFiles(_fileName)
            Dim fi As FileInfo

            'Read File Xml
            For Each fi In aryFi
                ds.ReadXml(_filePath & "\" & _fileName)
                dt = ds.Tables(0).Copy
            Next

        End If
        Return dt

 

End Function

Posted on Sunday, September 15, 2013 by nuyingnaja

9/12/2013


          วันนี้นำเสนอ การลบลายน้ำใน Microsoft Word ด้วย VB.NET (Delete WaterMark Word)  ขั้นตอนมีดังนี้

1. เตรียมเอกสาร Microsoft Word ที่มี ลายน้ำ ตัวอย่างประมาณนี้
   - ในเอกสารนี้ประกอบด้วย ลายน้ำ (WaterMark)
   - ในเอกสารนี้ประกอบด้วย ลายน้ำส่วนหัว (Header WaterMark)




2. Create New Project ดังนี้
3. Select Windows Forms Application
4. Name : Winapp_DelWaterMark
5. OK



6. Design Form1 ดังนี้
    - Textbox : text_FolderFile
    - Butoon1 : btnDel_WaterMark
    - Butoon2 : btnDel_HeaderWaterMark




7.  คลิ๊กขวาที่ โปรแจค เพื่อ Add Reference...
8.  เลือก Tab ".NET"
9.  เลือก Interop.Microsoft.Office.Interop.Word  Version 8.4.0.0
10. OK




11.  Coding ดังนี้

Imports Microsoft.Office.Interop
Imports Microsoft.Office.Interop.Word

Public Class Form1
 

Private Sub btnDel_WaterMark_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles btnDel_WaterMark.Click
        Dim WdApp As New Application
        Dim WdDoc As Word.Document
        Dim pathWord As String = txt_FolderFile.Text

        WdDoc = WdApp.Documents.Open(pathWord)
        WdApp.Visible = True

        Call DeleteWatermark(WdDoc, "CLEAR")

        WdDoc.Close()
        WdApp.Quit()

End Sub
 

Private Sub btnDel_HeaderWaterMark_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles btnDel_HeaderWaterMark.Click
        Dim WdApp As New Application
        Dim WdDoc As Word.Document
        Dim pathWord As String = txt_FolderFile.Text

        WdDoc = WdApp.Documents.Open(pathWord)
        WdApp.Visible = True

        Call DeleteHeaderWatermark(WdDoc)

        WdDoc.Close()
        WdApp.Quit()

End Sub

Public Sub DeleteWatermark(ByVal worddoc As Word.Document, ByVal WATERMARK_STATUS As String)

        Dim i As Integer = 0
        Dim j As Integer = 0
        Dim shpname As String = Nothing

        Dim HdFt As Microsoft.Office.Interop.Word.HeaderFooter
        Dim WordDocument As Range = worddoc.Range

        'for each header
        Dim page As Integer = WordDocument.Sections.Count
        With WordDocument
            For i = 1 To page
                For Each HdFt In .Sections(i).Headers
                    With HdFt
                        For j = HdFt.Shapes.Count To 1 Step -1

                            ' Delete WaterMart
                            If WATERMARK_STATUS = "CLEAR" Then
                                .Shapes(j).Delete()
                            End If

                        Next j
                    End With
                Next
            Next
        End With

 

End Sub
 

Public Sub DeleteHeaderWatermark(ByVal worddoc As Word.Document)
        Dim WordDocument As Range = worddoc.Range
        Dim page As Integer = WordDocument.Sections.Count

        'for each header
        With WordDocument
            For i = 1 To page
                'Delete Header WaterMark
                For Each HdFt In .Sections(i).Headers
                    HdFt.Range.Delete()
                Next
            Next
        End With

End Sub


End Class



12. กด Run Program(F5)  และ Click Delete WaterMark  แสดงผลดังนี้



ในรูปจะเห็นว่าไม่พบลายน้ำ (WaterMark)  แล้ว


13.  Click Delete Header WaterMark  แสดงผลดังนี้



ในรูปนี้จะเห็นว่าในเอกสารของเราใสสะอาด ปราศจากลายน้ำที่รบกวนแล้วค่ะ

ทำง่ายๆ ขั้นตอนไม่ยุ่งยาก หวังว่าคงมีประโยชน์กับตัวเอง และคนอ่าน น่ะค่ะ


Download Semple Coding in vb.net Project

http://www.mediafire.com/?e0s8ull84gzj309

Posted on Thursday, September 12, 2013 by nuyingnaja

9/11/2013


Code Open file in visual basic 2010

โค้ด อ่านไฟล์ขึ้นมาแสดง

System.Diagnostics.Process.Start("D:\TEST.txt")

หรือ

Process.Start("D:\TEST.txt")

หรือ 

Shell("D:\app.exe")

Posted on Wednesday, September 11, 2013 by nuyingnaja

9/04/2013


 คำสั่งปิด Process ที่บ้างครั้งไม่จำไม่เป็น และต้องการปิด เขียนโค้ดดังนี้


Example
' สั่งปิด Process WINWORD
 
Dim procQ As System.Diagnostics.Process
For Each procQ In System.Diagnostics.Process.GetProcessesByName("WINWORD")
            procQ.Kill()
Next

Posted on Wednesday, September 04, 2013 by nuyingnaja


การตัดข้อความ การแยกประโยคด้วยคำหรือตัวอักษร

1. Split() การตัดข้อความ


Syntax
Split(ByVal Expression As String, Optional ByVal Delimiter As String)


Example

Dim test_date As String = "16 มิถุนายน 2556"
Dim getStr() As String = Split(test_date, " ")

For i = 0 To getStr.Length - 1
        
         MsgBox(getStr(i))
         ' 1. 16
         ' 2.  มิถุนาย
         ' 3.  2556

Next

** บทความที่เกี่ยวข้อง **
ฟังก์ชัน Mid ตัดคำใน vb.net

Posted on Wednesday, September 04, 2013 by nuyingnaja

การสลับคำจาก ตัวแรกให้ไปอยู่ตัวสุดท้าย และตัวสุดท้ายมาอยู่ตัวแรก ด้วย ฟังก์ชัน StrReverse

1. StrReverse() สลับคำ กลับคำ


Syntax
InStrRev(ByVal StringCheck As String, ByVal StringMatch As String, Optional ByVal Start As Integer)

Example

Dim test_word As String
test_word = "I Love Thailand"
 

' need  dnaliahT evoL I

Dim word As Integer =  StrReverse(test_word)   'dnaliahT evoL I

จากฟังก์ชันนี้จะเห็นได้ว่า ตัวอักษรจะสลับตำแหน่งกัน จากหน้ามือเป็นหลังมือ
 

Posted on Wednesday, September 04, 2013 by nuyingnaja

Public Function InStr(ByVal String1 As String, ByVal String2 As String, Optional ByVal Compare As Microsoft.VisualBasic.CompareMethod = Binary) As Integer
     Member of Microsoft.VisualBasic.Strings
Summary:

การแทนที่คำ ด้วย ฟังก์ชัน Replace

1. InStr() ค้นหาคำที่ต้องการ


Syntax
InStr(ByVal String1 As String, ByVal String2 As String)
InStrRev(ByVal String1 As String, ByVal String2 As String)

Example

Dim test_word As String
test_word = "I Love Thailand"
 

' need "h"

Dim location As Integer = InStr(test_word, "h")          ' 9
Dim location2 As Integer = InStrRev(test_word, "h")   ' 9
 

Posted on Wednesday, September 04, 2013 by nuyingnaja





การตัดคำที่มีประโยคยาว แต่ต้องการเฉพาะคำที่ต้องการเท่านั้น โดยใช้ ฟังก์ชัน Mid ตัดคำ ตัวอย่างดังนี้
 

Syntax
Mid(ByVal str As String, ByVal Start As Integer, ByVal Length As Integer)


Example

Private Sub Form1_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load

        Dim test_word As String
        test_word = "Thailand Only"

        ' need "Thailand"
        Dim A, B As String
        A = Mid(test_word, 1, 8)                     ' Thailand
        B = Microsoft.VisualBasic.Left(test_word, 8) ' Thailand

        ' need "Only"
        Dim C, D As String
        C = Mid(test_word, 10, 4)                     ' Only
        D = Microsoft.VisualBasic.Right(test_word, 4) ' Only


        test_word = "I Love Thailand"

        ' need "Love"
        Dim F, G As String
        F = Mid(test_word, 3, 4)                     ' Love

        ' ใช้ ฟังก์ชันค้นหาคำ ตำแหน่งของคำนั้นก่อน ตัวอย่างนี้ค้นหา "Love" หรือ "L" ก่อนก็ได้
        Dim locationStart As Integer = InStr(test_word, "Love")
        Dim locationStop As Integer = "Love".Length
        G = Mid(test_word, locationStart, locationStop) ' Love
End Sub

** บทความที่เกี่ยวข้อง **
ตัดข้อความด้วย Split
ฟังก์ชันค้นหาคำ
การอ่าน Microsoft Office Word จากตำแหน่งใน เอกสาร
 

Posted on Wednesday, September 04, 2013 by nuyingnaja


การแทนที่คำ ด้วย ฟังก์ชัน Replace

1. Replace() แทนที่คำที่ต้องการ


Syntax
Replace(ByVal Expression As String,ByVal Find As String, ByVal Replacement As String)


Example

ตัวอย่างคำ  Helly gyygle ให้แทน y เป็น 0 จะได้ัดังนี้
 
 Helly gyygle = Hello google

Coding in vb.net

Dim word as String = "Helly gyygle"
Dim str as String = Replace(word , "y", "o")   ' Hello google
Dim str2 as String = word .Replace("y", "o" ' Hello google

Posted on Wednesday, September 04, 2013 by nuyingnaja

9/03/2013


แปลง ตัวหนังสือเป็นตัวเลข ใน vb.net เขียน Code ได้ดังนี้

        Dim str As String = "50.50"
        Dim str2 As String = "1,050.49"

        Dim Conv_num As Integer = CInt(str)    '  50
        Dim Conv_num2 As Double = CInt(str)    '  50.0

        Dim Conv_num3 As Integer = Val(str)   '  50
        Dim Conv_num4 As Double = Val(str)    '  50.5

        Dim Conv_num5 As Double = CInt(str2)  '  1050.0
        Dim Conv_num6 As Double = Val(str2)   '  1

        ' * หมายเหตุที่ Conv_num6 = 1 เพราะเจอเครื่องหมาย , ใน str2 จึงอ่านค่าไม่ถูกต้องการแก้ไขให้ถูก ให้แก้โดยใช้ ฟังก์ชัน Replace แทนที่คำ ดังนี้

        ' * แทนที่ , ด้วยค่า null ดังนี้

        Dim Conv_num9 As Double = Val(Replace(str2, ",", ""))  ' 1050.49
        '========= END  ===========

*** บทความที่เกี่ยวข้อง ***
Convert Integer  to String
ฟังก์ชัน Replace แทนที่คำ

Posted on Tuesday, September 03, 2013 by nuyingnaja


แปลง ตัวเลขเป็นตัวหนังสือ ใน vb.net เขียน Code ได้ดังนี้

Dim num As Integer = 500
Dim num2 As Decimal = 2550.49

Dim Convstr As String = CStr(num)     '  500
Dim Convstr2 As String = CStr(num2)   '  2550.49
Dim Conv_num7 As String = Integer.Parse(num)  ' 500
Dim Conv_num8 As String = Decimal.Parse(num2) ' 2550.49

*** บทความที่เกี่ยวข้อง ***
Convert String to Integer


Posted on Tuesday, September 03, 2013 by nuyingnaja

Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click

        ' แสดงวันที่และเวลา
        MsgBox(Now) 

        ' แสดงวันที่
        MsgBox(Now.Today)

End Sub


** บทความที่เกี่ยวข้อง **
แสดงรูปแบบวันที่ ค.ศ. และ พ.ศ. VB.NET
Convers String to Date in vb.net
DateAdd แสดงการเพิ่มวันที่และช่วงเวลา
บวก ลบ วันที่ / DateDiff เปรียบเทียบวันที่และเวลา
FormatDateTime
รูปแบบวันที่ เพิ่มเติม

Posted on Tuesday, September 03, 2013 by nuyingnaja


แสดงการเพิ่มวันที่และช่วงเวลา ใน vb.net

Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click
        'ต้องการทราบว่า นับจากวันนี้อีก 10 วันเป็นวันอะไร
        MsgBox(DateAdd(DateInterval.Day, 10, Today))

        ' หรือ ต้องการทราบว่า ณ วันที่ กำนดไว้ อีก 10 วันเป็นวันอะไร
        Dim D1 As Date = "#01/01/2013 10:11:12#"
        MsgBox(DateAdd(DateInterval.Day, 10, D1))


       ' หรือ ต้องการทราบว่า ณ วันที่ กำนดไว้ ย้อนหลัก 10 วันเป็นวันอะไร
        Dim D1 As Date = "#01/01/2013 10:11:12#"
        MsgBox(DateAdd(DateInterval.Day, -10, D1))


        ' หรือ ต้องการทราบว่า ณ วันที่และเวลา กำนดไว้ อีก 10 ชั่วโมง เป็นเวลาเท่าไร
        MsgBox(DateAdd(DateInterval.Hour, 10, D1))
End Sub

นอกจากตัวอย่างนี้แล้วยังมีให้เลือกอีกมาก ดังนี้



** บทความที่เกี่ยวข้อง **
แสดงรูปแบบวันที่ ค.ศ. และ พ.ศ. VB.NET
Convers String to Date in vb.net
DateAdd แสดงการเพิ่มวันที่และช่วงเวลา
บวก ลบ วันที่ / DateDiff เปรียบเทียบวันที่และเวลา
FormatDateTime
หาวันนี้ปัจจุบัน DateNow
รูปแบบวันที่ เพิ่มเติม

Posted on Tuesday, September 03, 2013 by nuyingnaja


         ใน vb.net มีการบวก ลบ วันที่ ซึ่งมีหลากหลายรูปแบบ และผลต่างแต่ละรูปแบบก็แล้วแต่การนำมาใช้งานของโปรแกรมนั้นๆ วันนี้มาดูกัน มีแบบไหนบ้าง

1. DateDiff() เปรียบเทียบวันที่เวลาระหว่าง เวลา1 และ เวลา2

Syntax
DateDiff(DateInterval,Date1,Date2)


DateInterval  มีดังนี้ เยอะมาก
DateInterval.Day
DateInterval.DayOfYear
DateInterval.Hour
DateInterval.Minute
DateInterval.Month
DateInterval.Quarter
DateInterval.Second
DateInterval.Weekday
DateInterval.WeekOfYear
DateInterval.Year

Example
Private Sub DateDiff_Show()
        Dim D1 As Date = "#01/01/2013#"
        Dim D2 As Date = "#01/12/2013#"

        Dim T1 As Date = "#05:02:22#"
        Dim T2 As Date = "#10:10:55#"

        Me.txt_D1.Text = DateDiff(DateInterval.Day, D1, D2)
        Me.txt_D2.Text = DateDiff(DateInterval.Year, D1, D2)
        Me.txt_D3.Text = DateDiff(DateInterval.Month, D1, D2)

        Me.txt_D4.Text = DateDiff(DateInterval.DayOfYear, D1, D2)
        Me.txt_D5.Text = DateDiff(DateInterval.Weekday, D1, D2)
        Me.txt_D6.Text = DateDiff(DateInterval.WeekOfYear, D1, D2)
        Me.txt_D7.Text = DateDiff(DateInterval.Quarter, D1, D2)

        Me.txt_D8.Text = DateDiff(DateInterval.Hour, T1, T2)
        Me.txt_D9.Text = DateDiff(DateInterval.Minute, T1, T2)
        Me.txt_D10.Text = DateDiff(DateInterval.Second, T1, T2)
End Sub


Download Semple Coding in vb.net Project
http://www.mediafire.com/?wmp8c21ke8bu6ne

** บทความที่เกี่ยวข้อง **
แสดงรูปแบบวันที่ ค.ศ. และ พ.ศ. VB.NET
Convers String to Date in vb.net
DateAdd แสดงการเพิ่มวันที่และช่วงเวลา
บวก ลบ วันที่ / DateDiff เปรียบเทียบวันที่และเวลา
FormatDateTime
หาวันนี้ปัจจุบัน DateNow
รูปแบบวันที่ เพิ่มเติม



Posted on Tuesday, September 03, 2013 by nuyingnaja


วันนี้มาดูในส่วนของการเปลี่ยนวันที่ (Convers) จาก String เป็น Datetime ดังนี้ค่ะ

Dim str_date As String = "20/09/2013"
Dim date_ As Date = CDate(str_date)

** บทความที่เกี่ยวข้อง **
แสดงรูปแบบวันที่ ค.ศ. และ พ.ศ. VB.NET
Convers String to Date in vb.net
DateAdd แสดงการเพิ่มวันที่และช่วงเวลา
บวก ลบ วันที่ / DateDiff เปรียบเทียบวันที่และเวลา
FormatDateTime
หาวันนี้ปัจจุบัน DateNow
รูปแบบวันที่ เพิ่มเติม


Posted on Tuesday, September 03, 2013 by nuyingnaja


         FormatDateTime ใน vb.net มีอยู่หลากหลายรูปแบบแล้วแต่การใช้งาน มาดูกันว่ามี Format แบบไหนบ้าง

Private Sub textbox_show()
        Dim test_date As Date = Now
        Me.txtD1.Text = Format(test_date, "dd/MM/yyyy")
        Me.txtD2.Text = Format(test_date, "d-M-yy")
        Me.txtD3.Text = Format(test_date, "MMM dd yyyy")
        Me.txtD4.Text = Format(test_date, "dd MMMM yyyy")
        Me.txtD5.Text = Format(test_date, "dd MMMM yyyy HH:mm:ss:fff")

        Me.txtD6.Text = FormatDateTime(test_date, DateFormat.GeneralDate)
        Me.txtD7.Text = FormatDateTime(test_date, DateFormat.LongDate)
        Me.txtD8.Text = FormatDateTime(test_date, DateFormat.LongTime)
        Me.txtD9.Text = FormatDateTime(test_date, DateFormat.ShortDate)
        Me.txtD10.Text = FormatDateTime(test_date, DateFormat.ShortTime)
End Sub





         Download Semple Coding in vb.net Project
http://www.mediafire.com/download/5t15vd05vvnzrne/Windows_Date.zip


** บทความที่เกี่ยวข้อง **
แสดงรูปแบบวันที่ ค.ศ. และ พ.ศ. VB.NET
Convers String to Date in vb.net
DateAdd แสดงการเพิ่มวันที่และช่วงเวลา
บวก ลบ วันที่ / DateDiff เปรียบเทียบวันที่และเวลา
FormatDateTime
รูปแบบวันที่ เพิ่มเติม

Posted on Tuesday, September 03, 2013 by nuyingnaja

              การแสดงรูปแบบวันที่  มีอยู่ 2 แบบคือ แบบ ค.ศ. และ พ.ศ. ในโปรแกรมถ้าไม่เขียนโค้ดกำหนดไว้  โปรแกรมจะแสดงรูปแบบวันที่ตามที่เครื่องกำหนดไว้  ดังนั้นถ้าต้องการทำให้แสดงรูปแบบวันที่เหมือนกันจะต้องเขียน โค้ดดังนี้


จะต้องเขียน code ไว้ใน Form1_Load หรือ Private Sub New() ค่ะ


การแสดงรูปแบบ ค.ศ.

My.Application.ChangeCulture("en-US")


การแสดงรูปแบบ พ.ศ.

My.Application.ChangeCulture("th-TH")


CodeDate

** บทความที่เกี่ยวข้อง **
แสดงรูปแบบวันที่ ค.ศ. และ พ.ศ. VB.NET
Convers String to Date in vb.net
DateAdd แสดงการเพิ่มวันที่และช่วงเวลา
บวก ลบ วันที่ / DateDiff เปรียบเทียบวันที่และเวลา
FormatDateTime
หาวันนี้ปัจจุบัน DateNow
รูปแบบวันที่ เพิ่มเติม



Posted on Tuesday, September 03, 2013 by nuyingnaja

9/02/2013


Close Msgbox in vb.net (โค้ดสั่งปิด Msgbox ในโปรแกรม)

ทั่วไปแล้วเราจะใช้ Msgbox ในการแสดงข้อความเตือนต่าง เช่น
MsgBox("Please Login !!!")

แต่ Code ตัวนี้จะแสดงข้อความเตือน 3 วินาที แล้วปิด Msgbox ในโปรแกรม ให้ด้วย เขียน code ดังนี้

Private Sub Msgbox_Show()
        CreateObject("WScript.Shell").PopUp("Please Login !!! ", 3, "Caution")
End Sub


Close Msgbox


*ขอบคุณข้อมูลดีดี จาก http://www.thai-access.com/topic_post.asp?CategoryID=1&TopicID=1240

Posted on Monday, September 02, 2013 by nuyingnaja