Prev: The SCAN_SetReaderParams Error occured when using SMDK (Symbol
Next: Establish Data/GPRS Connection Automatically
From: Nina on 25 Jul 2008 15:40 I installed on my PC IDAutomation fonts for Windows. In Word document I can see barcode when I select "IDAutomationSC39XS" font. In Visual Studio in design mode I can see barcode in text property of Label control. But after I run an application i see in label "Tahoma" font. The code: this.label1.Font = new System.Drawing.Font("IDAutomationSC39XS", 10F, System.Drawing.FontStyle.Regular); label1.Text = "*123*"; in runtime gives me a string *123* not a barcode. How to make it work? "Chris Tacke, eMVP" wrote: > How about you back way up and tell us what you're trying to do, exactly. > What's your OS? WHat's your hardware. You know - all of the things we need > to know to actually anser this question. > > > -- > > Chris Tacke, Embedded MVP > OpenNETCF Consulting > Giving back to the embedded community > http://community.OpenNETCF.com > > "Nina" <Nina(a)discussions.microsoft.com> wrote in message > news:8F441309-7924-44A8-9D76-5078188E49F6(a)microsoft.com... > > They don't have those functions. > > > > "Ginny Caughey MVP" wrote: > > > >> Nina, > >> > >> Do you want to create a barcode on printed output? If so, the printer > >> control language of your printer may allow you to specify the type of > >> barcode to print. > >> > >> -- > >> > >> Ginny Caughey > >> Device Application Development MVP > >> > >> > >> "Nina" <Nina(a)discussions.microsoft.com> wrote in message > >> news:332F49F6-8D28-4AFB-BF82-608D68CE9964(a)microsoft.com... > >> > I'm working on Visual Studio 2005 Mobile using C# language. > >> > I need to create simple barcode 3 of 9. How can I do it? Do I need > >> > download > >> > barcode controls or dll files? > >> > > >> > >> > > >
From: Chris Tacke, eMVP on 25 Jul 2008 15:58 Copy the font to the device. Just having it on the PC doesn't magically make it available on the device. -- Chris Tacke, Embedded MVP OpenNETCF Consulting Giving back to the embedded community http://community.OpenNETCF.com "Nina" <Nina(a)discussions.microsoft.com> wrote in message news:EF9B3D26-7C08-4262-BB82-3CD4CDC399C3(a)microsoft.com... >I installed on my PC IDAutomation fonts for Windows. In Word document I can > see barcode when I select "IDAutomationSC39XS" font. In Visual Studio in > design mode I can see barcode in text property of Label control. But after > I > run an application i see in label "Tahoma" font. The code: > this.label1.Font = new System.Drawing.Font("IDAutomationSC39XS", 10F, > System.Drawing.FontStyle.Regular); > label1.Text = "*123*"; > in runtime gives me a string *123* not a barcode. How to make it work? > > > "Chris Tacke, eMVP" wrote: > >> How about you back way up and tell us what you're trying to do, exactly. >> What's your OS? WHat's your hardware. You know - all of the things we >> need >> to know to actually anser this question. >> >> >> -- >> >> Chris Tacke, Embedded MVP >> OpenNETCF Consulting >> Giving back to the embedded community >> http://community.OpenNETCF.com >> >> "Nina" <Nina(a)discussions.microsoft.com> wrote in message >> news:8F441309-7924-44A8-9D76-5078188E49F6(a)microsoft.com... >> > They don't have those functions. >> > >> > "Ginny Caughey MVP" wrote: >> > >> >> Nina, >> >> >> >> Do you want to create a barcode on printed output? If so, the printer >> >> control language of your printer may allow you to specify the type of >> >> barcode to print. >> >> >> >> -- >> >> >> >> Ginny Caughey >> >> Device Application Development MVP >> >> >> >> >> >> "Nina" <Nina(a)discussions.microsoft.com> wrote in message >> >> news:332F49F6-8D28-4AFB-BF82-608D68CE9964(a)microsoft.com... >> >> > I'm working on Visual Studio 2005 Mobile using C# language. >> >> > I need to create simple barcode 3 of 9. How can I do it? Do I need >> >> > download >> >> > barcode controls or dll files? >> >> > >> >> >> >> >> >> >>
From: Nina on 25 Jul 2008 16:15 I tried to install IDAutomation exe file on my handheld and got an error: "_INSTALL.exe is not valid Windows CE application". How can I copy fonts? "Chris Tacke, eMVP" wrote: > Copy the font to the device. Just having it on the PC doesn't magically > make it available on the device. > > > -- > > Chris Tacke, Embedded MVP > OpenNETCF Consulting > Giving back to the embedded community > http://community.OpenNETCF.com > > "Nina" <Nina(a)discussions.microsoft.com> wrote in message > news:EF9B3D26-7C08-4262-BB82-3CD4CDC399C3(a)microsoft.com... > >I installed on my PC IDAutomation fonts for Windows. In Word document I can > > see barcode when I select "IDAutomationSC39XS" font. In Visual Studio in > > design mode I can see barcode in text property of Label control. But after > > I > > run an application i see in label "Tahoma" font. The code: > > this.label1.Font = new System.Drawing.Font("IDAutomationSC39XS", 10F, > > System.Drawing.FontStyle.Regular); > > label1.Text = "*123*"; > > in runtime gives me a string *123* not a barcode. How to make it work? > > > > > > "Chris Tacke, eMVP" wrote: > > > >> How about you back way up and tell us what you're trying to do, exactly. > >> What's your OS? WHat's your hardware. You know - all of the things we > >> need > >> to know to actually anser this question. > >> > >> > >> -- > >> > >> Chris Tacke, Embedded MVP > >> OpenNETCF Consulting > >> Giving back to the embedded community > >> http://community.OpenNETCF.com > >> > >> "Nina" <Nina(a)discussions.microsoft.com> wrote in message > >> news:8F441309-7924-44A8-9D76-5078188E49F6(a)microsoft.com... > >> > They don't have those functions. > >> > > >> > "Ginny Caughey MVP" wrote: > >> > > >> >> Nina, > >> >> > >> >> Do you want to create a barcode on printed output? If so, the printer > >> >> control language of your printer may allow you to specify the type of > >> >> barcode to print. > >> >> > >> >> -- > >> >> > >> >> Ginny Caughey > >> >> Device Application Development MVP > >> >> > >> >> > >> >> "Nina" <Nina(a)discussions.microsoft.com> wrote in message > >> >> news:332F49F6-8D28-4AFB-BF82-608D68CE9964(a)microsoft.com... > >> >> > I'm working on Visual Studio 2005 Mobile using C# language. > >> >> > I need to create simple barcode 3 of 9. How can I do it? Do I need > >> >> > download > >> >> > barcode controls or dll files? > >> >> > > >> >> > >> >> > >> > >> > >> > > >
From: Chris Tacke, eMVP on 25 Jul 2008 16:21 Copy the font file, not the desktop installer. Drop it in the \Windows or \Windows\Fonts folder on the device. -- Chris Tacke, Embedded MVP OpenNETCF Consulting Giving back to the embedded community http://community.OpenNETCF.com "Nina" <Nina(a)discussions.microsoft.com> wrote in message news:72E3BDE6-97FC-433A-8BAB-65CDF86DF6AB(a)microsoft.com... >I tried to install IDAutomation exe file on my handheld and got an error: > "_INSTALL.exe is not valid Windows CE application". How can I copy fonts? > > > "Chris Tacke, eMVP" wrote: > >> Copy the font to the device. Just having it on the PC doesn't magically >> make it available on the device. >> >> >> -- >> >> Chris Tacke, Embedded MVP >> OpenNETCF Consulting >> Giving back to the embedded community >> http://community.OpenNETCF.com >> >> "Nina" <Nina(a)discussions.microsoft.com> wrote in message >> news:EF9B3D26-7C08-4262-BB82-3CD4CDC399C3(a)microsoft.com... >> >I installed on my PC IDAutomation fonts for Windows. In Word document I >> >can >> > see barcode when I select "IDAutomationSC39XS" font. In Visual Studio >> > in >> > design mode I can see barcode in text property of Label control. But >> > after >> > I >> > run an application i see in label "Tahoma" font. The code: >> > this.label1.Font = new System.Drawing.Font("IDAutomationSC39XS", 10F, >> > System.Drawing.FontStyle.Regular); >> > label1.Text = "*123*"; >> > in runtime gives me a string *123* not a barcode. How to make it work? >> > >> > >> > "Chris Tacke, eMVP" wrote: >> > >> >> How about you back way up and tell us what you're trying to do, >> >> exactly. >> >> What's your OS? WHat's your hardware. You know - all of the things >> >> we >> >> need >> >> to know to actually anser this question. >> >> >> >> >> >> -- >> >> >> >> Chris Tacke, Embedded MVP >> >> OpenNETCF Consulting >> >> Giving back to the embedded community >> >> http://community.OpenNETCF.com >> >> >> >> "Nina" <Nina(a)discussions.microsoft.com> wrote in message >> >> news:8F441309-7924-44A8-9D76-5078188E49F6(a)microsoft.com... >> >> > They don't have those functions. >> >> > >> >> > "Ginny Caughey MVP" wrote: >> >> > >> >> >> Nina, >> >> >> >> >> >> Do you want to create a barcode on printed output? If so, the >> >> >> printer >> >> >> control language of your printer may allow you to specify the type >> >> >> of >> >> >> barcode to print. >> >> >> >> >> >> -- >> >> >> >> >> >> Ginny Caughey >> >> >> Device Application Development MVP >> >> >> >> >> >> >> >> >> "Nina" <Nina(a)discussions.microsoft.com> wrote in message >> >> >> news:332F49F6-8D28-4AFB-BF82-608D68CE9964(a)microsoft.com... >> >> >> > I'm working on Visual Studio 2005 Mobile using C# language. >> >> >> > I need to create simple barcode 3 of 9. How can I do it? Do I >> >> >> > need >> >> >> > download >> >> >> > barcode controls or dll files? >> >> >> > >> >> >> >> >> >> >> >> >> >> >> >> >> >> >>
From: Nina on 25 Jul 2008 16:59 I copied IDAutomationC39XS.ttf file to handheld in Windoes/Fonts directiry. It still doesn't work. "Chris Tacke, eMVP" wrote: > Copy the font file, not the desktop installer. Drop it in the \Windows or > \Windows\Fonts folder on the device. > > > -- > > Chris Tacke, Embedded MVP > OpenNETCF Consulting > Giving back to the embedded community > http://community.OpenNETCF.com > > > "Nina" <Nina(a)discussions.microsoft.com> wrote in message > news:72E3BDE6-97FC-433A-8BAB-65CDF86DF6AB(a)microsoft.com... > >I tried to install IDAutomation exe file on my handheld and got an error: > > "_INSTALL.exe is not valid Windows CE application". How can I copy fonts? > > > > > > "Chris Tacke, eMVP" wrote: > > > >> Copy the font to the device. Just having it on the PC doesn't magically > >> make it available on the device. > >> > >> > >> -- > >> > >> Chris Tacke, Embedded MVP > >> OpenNETCF Consulting > >> Giving back to the embedded community > >> http://community.OpenNETCF.com > >> > >> "Nina" <Nina(a)discussions.microsoft.com> wrote in message > >> news:EF9B3D26-7C08-4262-BB82-3CD4CDC399C3(a)microsoft.com... > >> >I installed on my PC IDAutomation fonts for Windows. In Word document I > >> >can > >> > see barcode when I select "IDAutomationSC39XS" font. In Visual Studio > >> > in > >> > design mode I can see barcode in text property of Label control. But > >> > after > >> > I > >> > run an application i see in label "Tahoma" font. The code: > >> > this.label1.Font = new System.Drawing.Font("IDAutomationSC39XS", 10F, > >> > System.Drawing.FontStyle.Regular); > >> > label1.Text = "*123*"; > >> > in runtime gives me a string *123* not a barcode. How to make it work? > >> > > >> > > >> > "Chris Tacke, eMVP" wrote: > >> > > >> >> How about you back way up and tell us what you're trying to do, > >> >> exactly. > >> >> What's your OS? WHat's your hardware. You know - all of the things > >> >> we > >> >> need > >> >> to know to actually anser this question. > >> >> > >> >> > >> >> -- > >> >> > >> >> Chris Tacke, Embedded MVP > >> >> OpenNETCF Consulting > >> >> Giving back to the embedded community > >> >> http://community.OpenNETCF.com > >> >> > >> >> "Nina" <Nina(a)discussions.microsoft.com> wrote in message > >> >> news:8F441309-7924-44A8-9D76-5078188E49F6(a)microsoft.com... > >> >> > They don't have those functions. > >> >> > > >> >> > "Ginny Caughey MVP" wrote: > >> >> > > >> >> >> Nina, > >> >> >> > >> >> >> Do you want to create a barcode on printed output? If so, the > >> >> >> printer > >> >> >> control language of your printer may allow you to specify the type > >> >> >> of > >> >> >> barcode to print. > >> >> >> > >> >> >> -- > >> >> >> > >> >> >> Ginny Caughey > >> >> >> Device Application Development MVP > >> >> >> > >> >> >> > >> >> >> "Nina" <Nina(a)discussions.microsoft.com> wrote in message > >> >> >> news:332F49F6-8D28-4AFB-BF82-608D68CE9964(a)microsoft.com... > >> >> >> > I'm working on Visual Studio 2005 Mobile using C# language. > >> >> >> > I need to create simple barcode 3 of 9. How can I do it? Do I > >> >> >> > need > >> >> >> > download > >> >> >> > barcode controls or dll files? > >> >> >> > > >> >> >> > >> >> >> > >> >> > >> >> > >> >> > >> > >> > >> > > >
First
|
Prev
|
Next
|
Last
Pages: 1 2 3 4 Prev: The SCAN_SetReaderParams Error occured when using SMDK (Symbol Next: Establish Data/GPRS Connection Automatically |