วิธีการ Set Default ให้ Arcview GIS รู้จักภาษาไทย
Set Default ให้ Arcview GIS รู้จักภาษาไทย
ตอนไปฝึกอบรมเจ้าหน้าที่องค์กรปกครองส่วนท้องถิ่นและแกนนำชุมชนในพื้นที่หรือสอนนักศึกษาเกี่ยวกับการใช้โปรแกรม Arcview GIS ให้แสดงข้อมูลในช่องสารบัญชั้นข้อมูล(Table of Content :TOC) จากฐานข้อมูลที่เป็นภาษาไทยเจอคำถามทำไมของเครื่องที่เขาใช้เป็นภาษาต่างด้าว ไม่เหมือนกับในจอที่ฉายจาก LCD ของวิทยากรเลย ก็เครื่องของผมได้ Set Default โปรแกรมรู้จักภาษาไทยแล้วครับ (ก็อยากจะให้เขา Set เป็น กลับไปได้ใช้งานได้สะดวก)วิธีการ ไม่ยากครับ s = TxSym.Make s.SetFont(NFont.Make("AngsanaUPC","Bold")) s.SetSize(18) TOC.SetDefaultSymbol(s)
' ArcView's startup file, which runs before default.apr is read. ' Check for a valid project workspace -- the directory must be writable. haveHOMEPath = false for each var in {"HOME", "TEMP", "CWD", "AVHOME"} path = System.GetEnvVar(var) if (path <> NIL) then if (File.Exists(path.AsFileName) and File.IsWritable(path.AsFileName)) then System.SetEnvVar("HOME", path) haveHOMEPath = true break end end endif (Not haveHOMEPath) then MsgBox.Warning("Cannot find a writable project directory. Please set environment variable HOME to a writable directory.", "") end' Check for a valid TEMP under Windows -- let user know if it is not set. ' Required for themes based on TXT type annotation and for editing. if (system.GetOS = #SYSTEM_OS_MSW) then haveTEMPPath = false for each var in {"TEMP", "HOME", "CWD", "AVHOME"} path = System.GetEnvVar(var) if (path <> NIL) then if (File.Exists(path.AsFileName) and File.IsWritable(path.AsFileName)) then System.SetEnvVar("TEMP", path) haveTEMPPath = true break end end end if (Not haveTEMPPath) then MsgBox.Warning("Cannot find TEMP directory. Please set environment variable TEMP to a writable directory.", "") end end' Check for a valid TMPDIR under UNIX. if (system.GetOS = #SYSTEM_OS_UNIX) then home = System.GetEnvVar("HOME") if (Not (File.IsWritable(home.AsFileName))) then path = System.GetEnvVar("TMPDIR") if (path <> NIL) then if (Not (File.Exists(path.AsFileName) and File.IsWritable(path.AsFileName))) then MsgBox.Warning("TMPDIR directory " + path.AsString + " is not writable . " + "Please set environment variable TMPDIR to a writable directory.", "") end else System.SetEnvVar("TMPDIR","/tmp") end end endMsgBox.Banner("$AVHOME/etc/banner".AsFileName, 1, "") av.SetName("ArcView GIS 3.3 ")avExt = FN.Make("$AVHOME") avExt.MergePath("ext") System.SetEnvVar("AVEXT", avExt.GetFullName)avBin = FN.Make("$AVHOME") avBin.MergePath("bin") System.SetEnvVar("AVBIN", avBin.GetFullName)' ' The USEREXT variable is used by the extension manager dialog. ' That dialog looks for additional extensions in the directory specified by ' it. You can change it's value if you want to keep additional extensions in ' some other location. ' if (System.GetEnvVar("USEREXT") = NIL) then System.SetEnvVar("USEREXT", System.GetEnvVar("HOME")) end ' ' The default font size used by ArcView's script editor is approximately ' 14 pt (courier). That font size is identified by the enumeration element ' #SED_FONTSIZE_MEDIUM. You can use the elements #SED_FONTSIZE_SMALL ' or #SED_FONTSIZE_LARGE to make the default font size smaller (12 pt) ' or larger (14 pt). SEd.SetDefaultFontSize(#SED_FONTSIZE_SMALL)if (system.GetOS = #SYSTEM_OS_MSW) then Script.Make("DDEServer.Start").DoIt(NIL)if (system.GetOSVariant = #SYSTEM_OSVARIANT_MSW16) thenSystem.SetEnvVar("AVBIN", System.GetEnvVar("AVHOME")+"\bin16") System.SetEnvVar("AVEXT", System.GetEnvVar("AVHOME")+"\ext16")if (FN.FindInSystemSearchPath("winsock.dll") <> nil) then System.LoadLibrary("$AVBIN/avrpc.dll".AsFileName) end System.LoadLibrary("$AVBIN/avexec.dll".AsFileName)else 'for WinNT and Win95System.SetEnvVar("AVBIN", System.GetEnvVar("AVHOME")+"\bin32") System.SetEnvVar("AVEXT", System.GetEnvVar("AVHOME")+"\ext32")if (FN.FindInSystemSearchPath("wsock32.dll") <> nil) then System.LoadLibrary("$AVBIN/avrpc.dll".AsFileName) end end 'MSW16 case end 'MSW case' ' Load the Shapes.dll if (system.GetOS = #SYSTEM_OS_MSW) then System.LoadLibrary("$AVBIN/shapes.dll".AsFileName) end 'MSW case if (system.GetOS = #SYSTEM_OS_UNIX) then if (File.Exists("$AVHOME/lib/libshapes.so".AsFileName)) then System.LoadLibrary("$AVHOME/lib/libshapes.so".AsFileName) else if (File.Exists("$AVHOME/lib/libshapes.sl".AsFileName)) then System.LoadLibrary("$AVHOME/lib/libshapes.sl".AsFileName) else if (File.Exists("$AVHOME/lib/libshapes.a".AsFileName)) then System.LoadLibrary("$AVHOME/lib/libshapes.a".AsFileName) end end end end' ' Load the dnsgm.dll if (File.Exists("$AVBIN/dnsgm.dll".AsFileName)) then System.LoadLibrary("$AVBIN/dnsgm.dll".AsFileName) end' ' Load the avimgexp.dll if (File.Exists("$AVBIN/avimgexp.dll".AsFileName)) then System.LoadLibrary("$AVBIN/avimgexp.dll".AsFileName) end' ' Load the avdlog.dll if (File.Exists("$AVBIN/avdlog.dll".AsFileName)) then System.LoadLibrary("$AVBIN/avdlog.dll".AsFileName) ends = TxSym.Make s.SetFont(NFont.Make("AngsanaUPC","Bold")) s.SetSize(18) TOC.SetDefaultSymbol(s)
- ใช้โปรแกรม Notepad เปิด file ที่เก็บ Source code คำสั่งภาษาไทย เช่น ของผมคือ Thai.txt
- ใช้เมนูคำสั่ง Edit -->Select all -->Copy (หรือทางลัดอื่นแล้วแต่ถนัดครับ)
- เปิด file ที่ควบคุมคำสั่งของโปรแกรมคือ C:\ESRI\AV-GIS30\ARCVIEW\ETC\start up
- แล้วก็ Edit -->Paste (ต่อท้าย)
- อย่าลืม Save
- แล้ว Restart เครื่องคอมพิวเตอร์ใหม่
ไม่มีความคิดเห็น:
แสดงความคิดเห็น