c把一串字元轉換成條碼通過小票機列印出來

2022-12-13 07:15:19 字數 837 閱讀 7689

1樓:秋梵桖楓

哥們.我沒有辦法給你**,因為我寫的**傳在伺服器上,本地的已經找不到了.

記得在很久以前,有個客戶提出了這個問題.我的解決辦法是.找到條碼字型.然後將數字採用條件字型顯示.然後列印程式與普通文字相同即可.

我是這麼做的.成功了.

也祝你成功.

2樓:匿名使用者

你有小票機的api麼

3樓:匿名使用者

graphics mygraphics = e.graphics;

font myprintfont = textbox1.font;

//每一頁的行數

float ilineperpage = e.marginbounds.height / myprintfont.getheight(mygraphics);

int ilinenumber = 0; //列印時的行計數器

float fyposition = 0;//列印時的縱座標

float fmarginleft = e.marginbounds.left;

float fmargintop = e.marginbounds.top;

string strline = ""; //每一行要列印的文字

while ((ilinenumber < ilineperpage) &&

((strline = mysreader.readline()) != null))

if (strline != null)

else

4樓:匿名使用者

有條形碼控制元件為什麼不用。

c字串如何轉化為數字C,怎麼把字元轉換成數字

你可以叫 stringstream 和 vector 幫忙。下面的 裡 dbl array 既是你要建立的實數陣列 real 代表你讀到的字串 include include include using namespace std int main 值得一提的是,vector 可以被當成陣列來用,而...

c 中怎麼把字元轉換成字串,c 中怎麼把一個字元轉換成字串

char a a char str include stdio.h include include voidmain intn 123456789 charstr 20 itoa n,str,10 printf s n str 擴充套件資料int轉string的方式 1 採用標準庫中的to stri...

用C 編寫用遞迴的方法把整數n轉換成字串。例如,輸入

include using namespace std visualsan yahoo.cn void trans char buf,int pos,int n else void main include using namespace std define max 255 int pos 0 i...