2011-03-24 53 views
1

我必須將自定義標籤打印到熱敏打印機。我有一些設置和工作,但有一個例外:標籤卷每行有兩個標籤,但C#打印對象似乎無法看到。C#中的擴展PageSize信息

當我查詢PageSize信息時,它告訴我標籤是3.15「x 0.75」。雖然對於整個標籤來說是真的,但它並沒有給出任何關於每個單獨標籤尺寸或其間距的信息。

挖掘驅動程序ini文件,有一條看起來像PageSize84 = THT-6-423,3150,2,1500,750,150,125,1的線。所有我需要的信息似乎都列在這一行(2列,1500寬,750高),我只是不知道如何從C#訪問它。我今天一直在網上衝浪,而且我沒有運氣。

我現在總是可以對信息進行硬編碼,但是如果製造商更改標籤,這不會對代碼進行驗證。

回答

3

如果您正在嘗試讀取ini文件以獲取值,則可以使用該文件。 IniFile.ReadIniValue(「[Tag]」,「Server」,@「C:\ my.ini」);

#region Usings 

using System.Text; 
using System.Runtime.InteropServices; 
#endregion 

/// <summary> 
/// Communicates with ini files 
/// </summary> 
public static class IniFile 
{ 
    #region Declarations 



    #endregion 

    #region Constructor/Deconstructor 

    /// <summary> 
    /// Initializes a new instance of the <see cref="IniFile"/> class. 
    /// </summary> 
    static IniFile() 
    { 
    } 

    #endregion 

    #region Properties 



    #endregion 

    #region Win32_API 

    [DllImport("kernel32")] 
    private static extern int GetPrivateProfileString(
     string section, 
     string key, string def, 
     StringBuilder retVal, 
     int size, string filePath); 

    [DllImport("kernel32.dll", CharSet = CharSet.Unicode, SetLastError = true)] 
    [return: MarshalAs(UnmanagedType.Bool)] 
    static extern bool WritePrivateProfileString(string lpAppName, 
     string lpKeyName, string lpString, string lpFileName); 

    #endregion 

    /// <summary> 
    /// Reads the ini value. 
    /// </summary> 
    /// <param name="section">The section.</param> 
    /// <param name="key">The key.</param> 
    /// <param name="iniFilePath">The ini file path.</param> 
    /// <returns>Value stored in key</returns> 
    /// <exception cref="FileNotFoundException"></exception> 
    public static string ReadIniValue(string section, string key, string iniFilePath) 
    { 
     if(!File.Exists(iniFilePath)) 
     { 
      throw new FileNotFoundException(); 
     } 

     const int size = 255; 
     var buffer = new StringBuilder(size); 
     var len = GetPrivateProfileString(section, key, string.Empty, buffer, size, iniFilePath); 

     if (len > 0) 
     { 
      return buffer.ToString(); 
     } 
     return string.Empty; 
    } 

    /// <summary> 
    /// Writes the ini value. 
    /// </summary> 
    /// <param name="section">The section.</param> 
    /// <param name="keyname">The keyname.</param> 
    /// <param name="valueToWrite">The value to write.</param> 
    /// <param name="iniFilePath">The ini file path.</param> 
    /// <returns>true if write was successful, false otherwise</returns> 
    public static bool WriteIniValue(string section,string keyname,string valueToWrite,string iniFilePath) 
    { 
     return WritePrivateProfileString(section, keyname, valueToWrite, iniFilePath); 
    } 
} 
+1

謝謝,我會試試看。 – kyork 2011-03-25 13:26:39

+0

我最終不得不硬編碼ini文件的路徑,我不喜歡,但其餘的現在工作。 – kyork 2011-03-25 21:58:34

+0

根據您的ini文件的位置,您可以使用Environment.SpecialFolder使其更具動態性。 – Dylan 2011-03-25 22:07:42