C#, VB Get Application Path

01 ธันวาคม 2552

     วันนี้ขอนำเสนอการเขียนโปรแกรมในเรื่องของการ Get Application Path ของ Application ที่เราใช้กันอยู่นะครับเพื่อที่จะไม่เป็นปัญหาในการติดตั้ง Application ที่เราได้ทำการพัฒนาขึ้น

Get Directory
     ตัวอย่าง Code Get Application Path ค่าที่ได้เป็นชนิด String โดย Path ที่ได้เป็น Directory ที่อ้างอิงถึง File ของเราที่เก็บอยู่โดยไม่ได้อ้างอิงหรือระบุถึง File ใดโดยตรง

Source Code C#

//ประกาศ Namespace
//using System.IO;
//using System.Reflection;

string stringPath;
stringPath=Application.StartupPath;

Source Code VB
'ประกาศ Namespace
'Imports System.IO
'Imports System.Reflection

Dim stringPath As String
stringPath=Application.StartupPath


Get File Name
     การที่จะอ้างอิงหรือระบุถึง File ที่เราต้องการนั้นเราก็แค่ทำการต่อ String Dirctory ที่ได้ตามด้วย ชื่อของ File ที่้ต้องการ ดังตัวอย่าง

Source Code C#
//ประกาศ Namespace
//using System.IO;
//using System.Reflection;

string stringPath;
stringPath=Application.StartupPath + @"\FileName.xxx";

string stringPath;
stringPath =Application.StartupPath + @"\FolderName\FileName.xxx"

Source Code VB
'ประกาศ Namespace
'Imports System.IO
'Imports System.Reflection

Dim stringPath As String
stringPath=Application.StartupPath & "\FileName.xxx"

Dim stringPath As String
stringPath=Application.StartupPath & "\FolderName\FileName.xxx"


ผิดพลาดประการใดก็ติชมแก้ไขกันนะครับ
ขอบคุณครับ

2 ความคิดเห็น:

Unknown 17 กรกฎาคม, 2553 13:35  

เยี่ยมเลยครับ เปงกำลังใจให้พัฒนางานดี ๆ ต่อไปครับ !!

level 01 พฤศจิกายน, 2553 09:38  

คุณตุ๊ ผมต้องขอขอบคุณมากคับ

แสดงความคิดเห็น

About This Blog

เนื้อหาเกี่ยวกับการพัฒนา Program โดยใช้ .Net, C#, VB.

  © Blogger template On The Road by Ourblogtemplates.com 2009

Back to TOP