You can subscribe to this list here.
| 2002 |
Jan
|
Feb
|
Mar
|
Apr
(44) |
May
(70) |
Jun
(125) |
Jul
(138) |
Aug
(28) |
Sep
(11) |
Oct
(29) |
Nov
(238) |
Dec
(48) |
|---|---|---|---|---|---|---|---|---|---|---|---|---|
| 2003 |
Jan
(14) |
Feb
(83) |
Mar
(23) |
Apr
(73) |
May
(23) |
Jun
(60) |
Jul
(87) |
Aug
(87) |
Sep
(50) |
Oct
(18) |
Nov
(33) |
Dec
(8) |
| 2004 |
Jan
(32) |
Feb
(17) |
Mar
(11) |
Apr
(2) |
May
(17) |
Jun
(15) |
Jul
(3) |
Aug
(13) |
Sep
(13) |
Oct
(27) |
Nov
(8) |
Dec
(13) |
| 2005 |
Jan
(12) |
Feb
(5) |
Mar
(9) |
Apr
(2) |
May
(6) |
Jun
(11) |
Jul
(15) |
Aug
(1) |
Sep
(2) |
Oct
(3) |
Nov
|
Dec
(5) |
| 2006 |
Jan
(9) |
Feb
(7) |
Mar
(9) |
Apr
(15) |
May
(15) |
Jun
(5) |
Jul
(2) |
Aug
|
Sep
(5) |
Oct
(9) |
Nov
(9) |
Dec
(3) |
| 2007 |
Jan
(1) |
Feb
(7) |
Mar
(4) |
Apr
(4) |
May
(2) |
Jun
|
Jul
|
Aug
(6) |
Sep
(8) |
Oct
(6) |
Nov
(12) |
Dec
(4) |
| 2008 |
Jan
(3) |
Feb
(10) |
Mar
(7) |
Apr
(3) |
May
(5) |
Jun
(7) |
Jul
|
Aug
(5) |
Sep
(6) |
Oct
(15) |
Nov
(18) |
Dec
(3) |
| 2009 |
Jan
(10) |
Feb
|
Mar
(4) |
Apr
(5) |
May
(2) |
Jun
|
Jul
(9) |
Aug
|
Sep
(7) |
Oct
|
Nov
|
Dec
|
| 2010 |
Jan
(10) |
Feb
|
Mar
|
Apr
(11) |
May
|
Jun
(2) |
Jul
|
Aug
|
Sep
|
Oct
(6) |
Nov
|
Dec
|
| 2011 |
Jan
(1) |
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
(2) |
Oct
|
Nov
(1) |
Dec
|
| 2012 |
Jan
|
Feb
|
Mar
(4) |
Apr
|
May
|
Jun
|
Jul
(2) |
Aug
|
Sep
|
Oct
|
Nov
(3) |
Dec
|
| 2013 |
Jan
|
Feb
|
Mar
(1) |
Apr
(13) |
May
|
Jun
(1) |
Jul
|
Aug
(1) |
Sep
|
Oct
|
Nov
|
Dec
(1) |
| 2014 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
(1) |
| 2015 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
(4) |
Nov
|
Dec
|
|
From: Doug R. <dou...@fr...> - 2010-01-22 20:40:06
|
Hello,
I started to solve the last error message (I don't know if it's the
right start point ):
.../src/barcodecombo.cpp:319: attention : 'void
QWidget::setPaletteForegroundColor(const QColor&)' is deprecated
(declared at /usr/lib/qt4/include/QtGui/qwidget.h:1011)
Using my best friend Google, and I searched about
"QWidget::setPaletteForegroundColor" and found a web page where the
following paragraph is displayed :
\oldcode
widget->setPaletteForegroundColor(color);
\newcode
QPalette palette;
palette.setColor(widget->foregroundRole(), color);
widget->setPalette(palette);
\endcode
And in similar way, I modified line 319 as below :
.../src/barcodecombo.cpp:319: attention : 'void
QWidget::setPaletteForegroundColor(const QColor&)' is deprecated
(declared at /usr/lib/qt4/include/QtGui/qwidget.h:1011)
\oldcode
widget->setPaletteForegroundColor(color);
\newcode
QPalette palette;
palette.setColor(widget->foregroundRole(), color);
widget->setPalette(palette);
\endcode
= 319 prev ==================
data->setPaletteForegroundColor( c );
= 319 new ==================
QPalette palette;
palette.setColor(data->foregroundRole(), c);
data->setPalette(palette);
= 319 end new ==================
I think it's the "beginner spirit" because after I tried to correct the
second error (down to top) at line 317 and... NO WAY ...
IMHO it's because I'm more able to perform "find/replace" than coding
C++ because I feel that line 317 error is very similar to line 319
(about color/foreground/...) but... don't know how :o)
I'll be happy to have you're feedback Dominik
++
Nicolas
Dominik Seichter a écrit :
> Hi,
>
> Am Mittwoch 20 Januar 2010 schrieb Doug Ross:
>
>> Hello Dominik,
>>
>> So, I followed your 4 steps and I reached the same point (error on the
>> same files).
>> I'll now "try to begin to try" to solve the errors... I think it'll take
>> me some time to understand how to do concretly but... you give me plenty
>> of URL/lecture so... I'll start reading.
>>
>> I'll inform you when I'll correct my first error but... don't worry
>> until 6month from now if you don't hear for me about error correction :D.
>>
>
> Great that you got so far! I think you will get into it quite well, so I
> should say sorry now for a few party of the code which are very old, very
> unstructured and not so good designed. But basic porting this should not be
> such much of a problem.
>
> Feel free to send even small patches to this list so that I can incorporate
> them. After you made the first progress and patches I could also setup SVN
> access for you, which should be more convinient.
>
> Regards,
> Dom
>
>
>
>> ++
>> Nicolas
>>
>> Dominik Seichter a écrit :
>>
>>> Hello Nicolas,
>>>
>>> I would be glad, if you could give porting KBarcode a try.
>>>
>>> The usual way to continue porting would be the following steps:
>>>
>>> 1. check out KBarcode from SVN:
>>> svn co https://kbarcode.svn.sf.net/svnroot/kbarcode/trunk kbarcode
>>> 2. create a build directory for KBarcode
>>> make kbarcode-build
>>> cd kbarcode-build
>>> 3. create cmake build system
>>> cmake ../kbarcode
>>> 4. try to build KBarcode
>>> make
>>>
>>> The build system for KDE4 should be working (just commited a fix for it)
>>> and make will stop on the first error in the source code which needs
>>> porting. The first errors for me are in the files barkode.h and
>>> barcodecombo.cpp
>>>
>>> Most problems should be due to porting issues from KDE3 to KDE4 or from
>>> Qt3 to Qt4. Useful information can be found here:
>>>
>>> http://techbase.kde.org/Welcome_to_KDE_TechBase
>>> http://api.kde.org/
>>> http://techbase.kde.org/Development/Tutorials
>>> http://techbase.kde.org/Development/Tutorials/KDE4_Porting_Guide
>>> http://qt.nokia.com/doc/4.5/index.html
>>>
>>> Well, and maybe you should read a small C++ tutorial, but this should get
>>> you started. If you have questions, feel free to ask on this list. I
>>> would prefer to discuss porting on the mailing list, as other people
>>> might also be interested in this kind information and maybe we can find
>>> someone to join the porting efforts.
>>>
>>> Best regards,
>>> Dom
>>>
>>> Am Dienstag 19 Januar 2010 schrieb Doug Ross:
>>>
>>>> Hello Dom,
>>>>
>>>> I'm not familliar in develloping such "large application".
>>>> I'm more familiar with shell or perl script and I suppose that Kbarcode
>>>> is devellopted using C/C++ (witch I don't know), but... if I can help, I
>>>> could try.
>>>>
>>>> What is the way/method for migrating Kbarcode from KDE3 to KDE4 ?
>>>> You could contact me directly thru mail if you want.
>>>>
>>>> ++
>>>> Nicolas
>>>>
>>>> Dominik Seichter a écrit :
>>>>
>>>>> Hi Nicolas,
>>>>>
>>>>> We started to port KBarcode to KDE4 in svn at:
>>>>> https://kbarcode.svn.sf.net/svnroot/kbarcode/trunk
>>>>>
>>>>> Unfortunately we did not get very far and did not made any progress for
>>>>> the last year, because no one seems to have time at the moment. If
>>>>> anyone wants to continue the porting effort, I would love to help.
>>>>> Though I cannot do any work for myself at the moment.
>>>>>
>>>>> Best regards,
>>>>> Dom
>>>>>
>>>>> Am Dienstag 19 Januar 2010 schrieb Doug Ross:
>>>>>
>>>>>> Hello all,
>>>>>>
>>>>>> I'm looking for an application that allow to create barcode labels
>>>>>> including additional comments so I think Kbarcode will fully match my
>>>>>> needs.
>>>>>>
>>>>>> My issue is that I run Mandriva 2010 with KDE4 and... Kbarcode seems
>>>>>> to not compile at all with KDE4.
>>>>>> I tried to compile Kbarcode 2.0.7 and "configure" fail when reaching
>>>>>> "KDE" phase with the following message :
>>>>>> ----------
>>>>>> checking for KDE... configure: error:
>>>>>> in the prefix you've chosen, are no KDE libraries installed. This will
>>>>>> fail. So, check this please and use another prefix!
>>>>>> ----------
>>>>>>
>>>>>> Is there some way to compile Kbarcode with KDE4 ?
>>>>>>
>>>>>> ++
>>>>>> Nicolas
>>>>>>
>>>>>>
>>>>>> ----------------------------------------------------------------------
>>>>>> -- --- --- Throughout its 18-year history, RSA Conference consistently
>>>>>> attracts the world's best and brightest in the field, creating
>>>>>> opportunities for Conference attendees to learn about information
>>>>>> security's most important issues through interactions with peers,
>>>>>> luminaries and emerging and established companies.
>>>>>> http://p.sf.net/sfu/rsaconf-dev2dev
>>>>>> _______________________________________________
>>>>>> Kbarcode-users mailing list
>>>>>> Kba...@li...
>>>>>> https://lists.sourceforge.net/lists/listinfo/kbarcode-users
>>>>>>
>>>> ------------------------------------------------------------------------
>>>> --- --- Throughout its 18-year history, RSA Conference consistently
>>>> attracts the world's best and brightest in the field, creating
>>>> opportunities for Conference attendees to learn about information
>>>> security's most important issues through interactions with peers,
>>>> luminaries and emerging and established companies.
>>>> http://p.sf.net/sfu/rsaconf-dev2dev
>>>> _______________________________________________
>>>> Kbarcode-users mailing list
>>>> Kba...@li...
>>>> https://lists.sourceforge.net/lists/listinfo/kbarcode-users
>>>>
>> ---------------------------------------------------------------------------
>> --- Throughout its 18-year history, RSA Conference consistently attracts
>> the world's best and brightest in the field, creating opportunities for
>> Conference attendees to learn about information security's most important
>> issues through interactions with peers, luminaries and emerging and
>> established companies. http://p.sf.net/sfu/rsaconf-dev2dev
>> _______________________________________________
>> Kbarcode-users mailing list
>> Kba...@li...
>> https://lists.sourceforge.net/lists/listinfo/kbarcode-users
>>
>>
>
>
>
|
|
From: Dominik S. <dom...@we...> - 2010-01-22 08:52:16
|
Hello Robin, If you have time, feel free to try porting one little dialog or something similar small. One should get started really quick with little stuff like this. Learning Qt is pretty easy if you know any other GUI framework. Once KBarcode ist ported, I would be happy to see Zint integration. It is a very nice barcoding library! Regards, Dom Am Mittwoch 20 Januar 2010 schrieb ro...@zi...: > Hi, > > I would be interested in helping with this. I have had a look at it before > but the sheer amount of code seems rather daunting. I have some experience > with Qt4 and C/C++ although I am far from expert. I don't know how much > help I would be able to give right at the moment because I have other > projects on the go but please keep me informed of any developments you > make and I will jump in when I can. > > Robin. > > > http://www.zint.org.uk > > On 20 January 2010 at 07:48 Dominik Seichter <dom...@we...> wrote: > > Hello Nicolas, > > > > I would be glad, if you could give porting KBarcode a try. > > > > The usual way to continue porting would be the following steps: > > > > 1. check out KBarcode from SVN: > > svn co https://kbarcode.svn.sf.net/svnroot/kbarcode/trunk kbarcode > > 2. create a build directory for KBarcode > > make kbarcode-build > > cd kbarcode-build > > 3. create cmake build system > > cmake ../kbarcode > > 4. try to build KBarcode > > make > > > > The build system for KDE4 should be working (just commited a fix for it) > > and make will stop on the first error in the source code which needs > > porting. The first errors for me are in the files barkode.h and > > barcodecombo.cpp > > > > Most problems should be due to porting issues from KDE3 to KDE4 or from > > Qt3 to > > > > Qt4. Useful information can be found here: > > > > http://techbase.kde.org/Welcome_to_KDE_TechBase > > http://api.kde.org/ > > http://techbase.kde.org/Development/Tutorials > > http://techbase.kde.org/Development/Tutorials/KDE4_Porting_Guide > > http://qt.nokia.com/doc/4.5/index.html > > > > Well, and maybe you should read a small C++ tutorial, but this should get > > you started. If you have questions, feel free to ask on this list. I > > would prefer to discuss porting on the mailing list, as other people > > might also be interested in this kind information and maybe we can find > > someone to join the porting efforts. > > > > Best regards, > > Dom > > > > Am Dienstag 19 Januar 2010 schrieb Doug Ross: > > > Hello Dom, > > > > > > I'm not familliar in develloping such "large application". > > > I'm more familiar with shell or perl script and I suppose that Kbarcode > > > is devellopted using C/C++ (witch I don't know), but... if I can help, > > > I could try. > > > > > > What is the way/method for migrating Kbarcode from KDE3 to KDE4 ? > > > You could contact me directly thru mail if you want. > > > > > > ++ > > > Nicolas > > > > > > Dominik Seichter a écrit : > > > > Hi Nicolas, > > > > > > > > We started to port KBarcode to KDE4 in svn at: > > > > https://kbarcode.svn.sf.net/svnroot/kbarcode/trunk > > > > > > > > Unfortunately we did not get very far and did not made any progress > > > > for the last year, because no one seems to have time at the moment. > > > > If anyone wants to continue the porting effort, I would love to help. > > > > Though I cannot do any work for myself at the moment. > > > > > > > > Best regards, > > > > Dom > > > > > > > > Am Dienstag 19 Januar 2010 schrieb Doug Ross: > > > >> Hello all, > > > >> > > > >> I'm looking for an application that allow to create barcode labels > > > >> including additional comments so I think Kbarcode will fully match > > > >> my needs. > > > >> > > > >> My issue is that I run Mandriva 2010 with KDE4 and... Kbarcode seems > > > >> to not compile at all with KDE4. > > > >> I tried to compile Kbarcode 2.0.7 and "configure" fail when reaching > > > >> "KDE" phase with the following message : > > > >> ---------- > > > >> checking for KDE... configure: error: > > > >> in the prefix you've chosen, are no KDE libraries installed. This > > > >> will fail. So, check this please and use another prefix! > > > >> ---------- > > > >> > > > >> Is there some way to compile Kbarcode with KDE4 ? > > > >> > > > >> ++ > > > >> Nicolas > > > >> > > > >> > > > >> -------------------------------------------------------------------- > > > >>---- --- --- Throughout its 18-year history, RSA Conference > > > >> consistently attracts the world's best and brightest in the field, > > > >> creating opportunities for Conference attendees to learn about > > > >> information security's most important issues through interactions > > > >> with peers, luminaries and emerging and established companies. > > > >> http://p.sf.net/sfu/rsaconf-dev2dev > > > >> _______________________________________________ > > > >> Kbarcode-users mailing list > > > >> Kba...@li... > > > >> https://lists.sourceforge.net/lists/listinfo/kbarcode-users > > > > > > ----------------------------------------------------------------------- > > >---- --- Throughout its 18-year history, RSA Conference consistently > > > attracts the world's best and brightest in the field, creating > > > opportunities for Conference attendees to learn about information > > > security's most important issues through interactions with peers, > > > luminaries and emerging and established companies. > > > http://p.sf.net/sfu/rsaconf-dev2dev > > > _______________________________________________ > > > Kbarcode-users mailing list > > > Kba...@li... > > > https://lists.sourceforge.net/lists/listinfo/kbarcode-users > -- ********************************************************************** Dominik Seichter - dom...@we... KRename - http://www.krename.net - Powerful batch renamer for KDE KBarcode - http://www.kbarcode.net - Barcode and label printing PoDoFo - http://podofo.sf.net - PDF generation and parsing library SchafKopf - http://schafkopf.berlios.de - Schafkopf, a card game, for KDE Alan - http://alan.sf.net - A Turing Machine in Java ********************************************************************** |
|
From: Dominik S. <dom...@we...> - 2010-01-22 08:50:15
|
Hi, Am Mittwoch 20 Januar 2010 schrieb Doug Ross: > Hello Dominik, > > So, I followed your 4 steps and I reached the same point (error on the > same files). > I'll now "try to begin to try" to solve the errors... I think it'll take > me some time to understand how to do concretly but... you give me plenty > of URL/lecture so... I'll start reading. > > I'll inform you when I'll correct my first error but... don't worry > until 6month from now if you don't hear for me about error correction :D. Great that you got so far! I think you will get into it quite well, so I should say sorry now for a few party of the code which are very old, very unstructured and not so good designed. But basic porting this should not be such much of a problem. Feel free to send even small patches to this list so that I can incorporate them. After you made the first progress and patches I could also setup SVN access for you, which should be more convinient. Regards, Dom > > ++ > Nicolas > > Dominik Seichter a écrit : > > Hello Nicolas, > > > > I would be glad, if you could give porting KBarcode a try. > > > > The usual way to continue porting would be the following steps: > > > > 1. check out KBarcode from SVN: > > svn co https://kbarcode.svn.sf.net/svnroot/kbarcode/trunk kbarcode > > 2. create a build directory for KBarcode > > make kbarcode-build > > cd kbarcode-build > > 3. create cmake build system > > cmake ../kbarcode > > 4. try to build KBarcode > > make > > > > The build system for KDE4 should be working (just commited a fix for it) > > and make will stop on the first error in the source code which needs > > porting. The first errors for me are in the files barkode.h and > > barcodecombo.cpp > > > > Most problems should be due to porting issues from KDE3 to KDE4 or from > > Qt3 to Qt4. Useful information can be found here: > > > > http://techbase.kde.org/Welcome_to_KDE_TechBase > > http://api.kde.org/ > > http://techbase.kde.org/Development/Tutorials > > http://techbase.kde.org/Development/Tutorials/KDE4_Porting_Guide > > http://qt.nokia.com/doc/4.5/index.html > > > > Well, and maybe you should read a small C++ tutorial, but this should get > > you started. If you have questions, feel free to ask on this list. I > > would prefer to discuss porting on the mailing list, as other people > > might also be interested in this kind information and maybe we can find > > someone to join the porting efforts. > > > > Best regards, > > Dom > > > > Am Dienstag 19 Januar 2010 schrieb Doug Ross: > >> Hello Dom, > >> > >> I'm not familliar in develloping such "large application". > >> I'm more familiar with shell or perl script and I suppose that Kbarcode > >> is devellopted using C/C++ (witch I don't know), but... if I can help, I > >> could try. > >> > >> What is the way/method for migrating Kbarcode from KDE3 to KDE4 ? > >> You could contact me directly thru mail if you want. > >> > >> ++ > >> Nicolas > >> > >> Dominik Seichter a écrit : > >>> Hi Nicolas, > >>> > >>> We started to port KBarcode to KDE4 in svn at: > >>> https://kbarcode.svn.sf.net/svnroot/kbarcode/trunk > >>> > >>> Unfortunately we did not get very far and did not made any progress for > >>> the last year, because no one seems to have time at the moment. If > >>> anyone wants to continue the porting effort, I would love to help. > >>> Though I cannot do any work for myself at the moment. > >>> > >>> Best regards, > >>> Dom > >>> > >>> Am Dienstag 19 Januar 2010 schrieb Doug Ross: > >>>> Hello all, > >>>> > >>>> I'm looking for an application that allow to create barcode labels > >>>> including additional comments so I think Kbarcode will fully match my > >>>> needs. > >>>> > >>>> My issue is that I run Mandriva 2010 with KDE4 and... Kbarcode seems > >>>> to not compile at all with KDE4. > >>>> I tried to compile Kbarcode 2.0.7 and "configure" fail when reaching > >>>> "KDE" phase with the following message : > >>>> ---------- > >>>> checking for KDE... configure: error: > >>>> in the prefix you've chosen, are no KDE libraries installed. This will > >>>> fail. So, check this please and use another prefix! > >>>> ---------- > >>>> > >>>> Is there some way to compile Kbarcode with KDE4 ? > >>>> > >>>> ++ > >>>> Nicolas > >>>> > >>>> > >>>> ---------------------------------------------------------------------- > >>>>-- --- --- Throughout its 18-year history, RSA Conference consistently > >>>> attracts the world's best and brightest in the field, creating > >>>> opportunities for Conference attendees to learn about information > >>>> security's most important issues through interactions with peers, > >>>> luminaries and emerging and established companies. > >>>> http://p.sf.net/sfu/rsaconf-dev2dev > >>>> _______________________________________________ > >>>> Kbarcode-users mailing list > >>>> Kba...@li... > >>>> https://lists.sourceforge.net/lists/listinfo/kbarcode-users > >> > >> ------------------------------------------------------------------------ > >>--- --- Throughout its 18-year history, RSA Conference consistently > >> attracts the world's best and brightest in the field, creating > >> opportunities for Conference attendees to learn about information > >> security's most important issues through interactions with peers, > >> luminaries and emerging and established companies. > >> http://p.sf.net/sfu/rsaconf-dev2dev > >> _______________________________________________ > >> Kbarcode-users mailing list > >> Kba...@li... > >> https://lists.sourceforge.net/lists/listinfo/kbarcode-users > > --------------------------------------------------------------------------- > --- Throughout its 18-year history, RSA Conference consistently attracts > the world's best and brightest in the field, creating opportunities for > Conference attendees to learn about information security's most important > issues through interactions with peers, luminaries and emerging and > established companies. http://p.sf.net/sfu/rsaconf-dev2dev > _______________________________________________ > Kbarcode-users mailing list > Kba...@li... > https://lists.sourceforge.net/lists/listinfo/kbarcode-users > -- ********************************************************************** Dominik Seichter - dom...@we... KRename - http://www.krename.net - Powerful batch renamer for KDE KBarcode - http://www.kbarcode.net - Barcode and label printing PoDoFo - http://podofo.sf.net - PDF generation and parsing library SchafKopf - http://schafkopf.berlios.de - Schafkopf, a card game, for KDE Alan - http://alan.sf.net - A Turing Machine in Java ********************************************************************** |
|
From: Doug R. <dou...@fr...> - 2010-01-20 20:27:31
|
Hello Dominik, So, I followed your 4 steps and I reached the same point (error on the same files). I'll now "try to begin to try" to solve the errors... I think it'll take me some time to understand how to do concretly but... you give me plenty of URL/lecture so... I'll start reading. I'll inform you when I'll correct my first error but... don't worry until 6month from now if you don't hear for me about error correction :D. ++ Nicolas Dominik Seichter a écrit : > Hello Nicolas, > > I would be glad, if you could give porting KBarcode a try. > > The usual way to continue porting would be the following steps: > > 1. check out KBarcode from SVN: > svn co https://kbarcode.svn.sf.net/svnroot/kbarcode/trunk kbarcode > 2. create a build directory for KBarcode > make kbarcode-build > cd kbarcode-build > 3. create cmake build system > cmake ../kbarcode > 4. try to build KBarcode > make > > The build system for KDE4 should be working (just commited a fix for it) and > make will stop on the first error in the source code which needs porting. > The first errors for me are in the files barkode.h and barcodecombo.cpp > > Most problems should be due to porting issues from KDE3 to KDE4 or from Qt3 to > Qt4. Useful information can be found here: > > http://techbase.kde.org/Welcome_to_KDE_TechBase > http://api.kde.org/ > http://techbase.kde.org/Development/Tutorials > http://techbase.kde.org/Development/Tutorials/KDE4_Porting_Guide > http://qt.nokia.com/doc/4.5/index.html > > Well, and maybe you should read a small C++ tutorial, but this should get you > started. If you have questions, feel free to ask on this list. I would prefer > to discuss porting on the mailing list, as other people might also be > interested in this kind information and maybe we can find someone to join the > porting efforts. > > Best regards, > Dom > > Am Dienstag 19 Januar 2010 schrieb Doug Ross: > >> Hello Dom, >> >> I'm not familliar in develloping such "large application". >> I'm more familiar with shell or perl script and I suppose that Kbarcode >> is devellopted using C/C++ (witch I don't know), but... if I can help, I >> could try. >> >> What is the way/method for migrating Kbarcode from KDE3 to KDE4 ? >> You could contact me directly thru mail if you want. >> >> ++ >> Nicolas >> >> Dominik Seichter a écrit : >> >>> Hi Nicolas, >>> >>> We started to port KBarcode to KDE4 in svn at: >>> https://kbarcode.svn.sf.net/svnroot/kbarcode/trunk >>> >>> Unfortunately we did not get very far and did not made any progress for >>> the last year, because no one seems to have time at the moment. If anyone >>> wants to continue the porting effort, I would love to help. Though I >>> cannot do any work for myself at the moment. >>> >>> Best regards, >>> Dom >>> >>> Am Dienstag 19 Januar 2010 schrieb Doug Ross: >>> >>>> Hello all, >>>> >>>> I'm looking for an application that allow to create barcode labels >>>> including additional comments so I think Kbarcode will fully match my >>>> needs. >>>> >>>> My issue is that I run Mandriva 2010 with KDE4 and... Kbarcode seems to >>>> not compile at all with KDE4. >>>> I tried to compile Kbarcode 2.0.7 and "configure" fail when reaching >>>> "KDE" phase with the following message : >>>> ---------- >>>> checking for KDE... configure: error: >>>> in the prefix you've chosen, are no KDE libraries installed. This will >>>> fail. So, check this please and use another prefix! >>>> ---------- >>>> >>>> Is there some way to compile Kbarcode with KDE4 ? >>>> >>>> ++ >>>> Nicolas >>>> >>>> >>>> ------------------------------------------------------------------------ >>>> --- --- Throughout its 18-year history, RSA Conference consistently >>>> attracts the world's best and brightest in the field, creating >>>> opportunities for Conference attendees to learn about information >>>> security's most important issues through interactions with peers, >>>> luminaries and emerging and established companies. >>>> http://p.sf.net/sfu/rsaconf-dev2dev >>>> _______________________________________________ >>>> Kbarcode-users mailing list >>>> Kba...@li... >>>> https://lists.sourceforge.net/lists/listinfo/kbarcode-users >>>> >> --------------------------------------------------------------------------- >> --- Throughout its 18-year history, RSA Conference consistently attracts >> the world's best and brightest in the field, creating opportunities for >> Conference attendees to learn about information security's most important >> issues through interactions with peers, luminaries and emerging and >> established companies. http://p.sf.net/sfu/rsaconf-dev2dev >> _______________________________________________ >> Kbarcode-users mailing list >> Kba...@li... >> https://lists.sourceforge.net/lists/listinfo/kbarcode-users >> >> > > > |
|
From: <ro...@zi...> - 2010-01-20 18:39:29
|
Hi, I would be interested in helping with this. I have had a look at it before but the sheer amount of code seems rather daunting. I have some experience with Qt4 and C/C++ although I am far from expert. I don't know how much help I would be able to give right at the moment because I have other projects on the go but please keep me informed of any developments you make and I will jump in when I can. Robin. http://www.zint.org.uk On 20 January 2010 at 07:48 Dominik Seichter <dom...@we...> wrote: > Hello Nicolas, > > I would be glad, if you could give porting KBarcode a try. > > The usual way to continue porting would be the following steps: > > 1. check out KBarcode from SVN: > svn co https://kbarcode.svn.sf.net/svnroot/kbarcode/trunk kbarcode > 2. create a build directory for KBarcode > make kbarcode-build > cd kbarcode-build > 3. create cmake build system > cmake ../kbarcode > 4. try to build KBarcode > make > > The build system for KDE4 should be working (just commited a fix for it) and > make will stop on the first error in the source code which needs porting. > The first errors for me are in the files barkode.h and barcodecombo.cpp > > Most problems should be due to porting issues from KDE3 to KDE4 or from Qt3 to > > Qt4. Useful information can be found here: > > http://techbase.kde.org/Welcome_to_KDE_TechBase > http://api.kde.org/ > http://techbase.kde.org/Development/Tutorials > http://techbase.kde.org/Development/Tutorials/KDE4_Porting_Guide > http://qt.nokia.com/doc/4.5/index.html > > Well, and maybe you should read a small C++ tutorial, but this should get you > started. If you have questions, feel free to ask on this list. I would prefer > to discuss porting on the mailing list, as other people might also be > interested in this kind information and maybe we can find someone to join the > porting efforts. > > Best regards, > Dom > > Am Dienstag 19 Januar 2010 schrieb Doug Ross: > > Hello Dom, > > > > I'm not familliar in develloping such "large application". > > I'm more familiar with shell or perl script and I suppose that Kbarcode > > is devellopted using C/C++ (witch I don't know), but... if I can help, I > > could try. > > > > What is the way/method for migrating Kbarcode from KDE3 to KDE4 ? > > You could contact me directly thru mail if you want. > > > > ++ > > Nicolas > > > > Dominik Seichter a écrit : > > > Hi Nicolas, > > > > > > We started to port KBarcode to KDE4 in svn at: > > > https://kbarcode.svn.sf.net/svnroot/kbarcode/trunk > > > > > > Unfortunately we did not get very far and did not made any progress for > > > the last year, because no one seems to have time at the moment. If anyone > > > wants to continue the porting effort, I would love to help. Though I > > > cannot do any work for myself at the moment. > > > > > > Best regards, > > > Dom > > > > > > Am Dienstag 19 Januar 2010 schrieb Doug Ross: > > >> Hello all, > > >> > > >> I'm looking for an application that allow to create barcode labels > > >> including additional comments so I think Kbarcode will fully match my > > >> needs. > > >> > > >> My issue is that I run Mandriva 2010 with KDE4 and... Kbarcode seems to > > >> not compile at all with KDE4. > > >> I tried to compile Kbarcode 2.0.7 and "configure" fail when reaching > > >> "KDE" phase with the following message : > > >> ---------- > > >> checking for KDE... configure: error: > > >> in the prefix you've chosen, are no KDE libraries installed. This will > > >> fail. So, check this please and use another prefix! > > >> ---------- > > >> > > >> Is there some way to compile Kbarcode with KDE4 ? > > >> > > >> ++ > > >> Nicolas > > >> > > >> > > >> ------------------------------------------------------------------------ > > >>--- --- Throughout its 18-year history, RSA Conference consistently > > >> attracts the world's best and brightest in the field, creating > > >> opportunities for Conference attendees to learn about information > > >> security's most important issues through interactions with peers, > > >> luminaries and emerging and established companies. > > >> http://p.sf.net/sfu/rsaconf-dev2dev > > >> _______________________________________________ > > >> Kbarcode-users mailing list > > >> Kba...@li... > > >> https://lists.sourceforge.net/lists/listinfo/kbarcode-users > > > > --------------------------------------------------------------------------- > > --- Throughout its 18-year history, RSA Conference consistently attracts > > the world's best and brightest in the field, creating opportunities for > > Conference attendees to learn about information security's most important > > issues through interactions with peers, luminaries and emerging and > > established companies. http://p.sf.net/sfu/rsaconf-dev2dev > > _______________________________________________ > > Kbarcode-users mailing list > > Kba...@li... > > https://lists.sourceforge.net/lists/listinfo/kbarcode-users > > > > > -- > ********************************************************************** > Dominik Seichter - dom...@we... > KRename - http://www.krename.net - Powerful batch renamer for KDE > KBarcode - http://www.kbarcode.net - Barcode and label printing > PoDoFo - http://podofo.sf.net - PDF generation and parsing library > SchafKopf - http://schafkopf.berlios.de - Schafkopf, a card game, for KDE > Alan - http://alan.sf.net - A Turing Machine in Java > ********************************************************************** |
|
From: Dominik S. <dom...@we...> - 2010-01-20 06:48:30
|
Hello Nicolas, I would be glad, if you could give porting KBarcode a try. The usual way to continue porting would be the following steps: 1. check out KBarcode from SVN: svn co https://kbarcode.svn.sf.net/svnroot/kbarcode/trunk kbarcode 2. create a build directory for KBarcode make kbarcode-build cd kbarcode-build 3. create cmake build system cmake ../kbarcode 4. try to build KBarcode make The build system for KDE4 should be working (just commited a fix for it) and make will stop on the first error in the source code which needs porting. The first errors for me are in the files barkode.h and barcodecombo.cpp Most problems should be due to porting issues from KDE3 to KDE4 or from Qt3 to Qt4. Useful information can be found here: http://techbase.kde.org/Welcome_to_KDE_TechBase http://api.kde.org/ http://techbase.kde.org/Development/Tutorials http://techbase.kde.org/Development/Tutorials/KDE4_Porting_Guide http://qt.nokia.com/doc/4.5/index.html Well, and maybe you should read a small C++ tutorial, but this should get you started. If you have questions, feel free to ask on this list. I would prefer to discuss porting on the mailing list, as other people might also be interested in this kind information and maybe we can find someone to join the porting efforts. Best regards, Dom Am Dienstag 19 Januar 2010 schrieb Doug Ross: > Hello Dom, > > I'm not familliar in develloping such "large application". > I'm more familiar with shell or perl script and I suppose that Kbarcode > is devellopted using C/C++ (witch I don't know), but... if I can help, I > could try. > > What is the way/method for migrating Kbarcode from KDE3 to KDE4 ? > You could contact me directly thru mail if you want. > > ++ > Nicolas > > Dominik Seichter a écrit : > > Hi Nicolas, > > > > We started to port KBarcode to KDE4 in svn at: > > https://kbarcode.svn.sf.net/svnroot/kbarcode/trunk > > > > Unfortunately we did not get very far and did not made any progress for > > the last year, because no one seems to have time at the moment. If anyone > > wants to continue the porting effort, I would love to help. Though I > > cannot do any work for myself at the moment. > > > > Best regards, > > Dom > > > > Am Dienstag 19 Januar 2010 schrieb Doug Ross: > >> Hello all, > >> > >> I'm looking for an application that allow to create barcode labels > >> including additional comments so I think Kbarcode will fully match my > >> needs. > >> > >> My issue is that I run Mandriva 2010 with KDE4 and... Kbarcode seems to > >> not compile at all with KDE4. > >> I tried to compile Kbarcode 2.0.7 and "configure" fail when reaching > >> "KDE" phase with the following message : > >> ---------- > >> checking for KDE... configure: error: > >> in the prefix you've chosen, are no KDE libraries installed. This will > >> fail. So, check this please and use another prefix! > >> ---------- > >> > >> Is there some way to compile Kbarcode with KDE4 ? > >> > >> ++ > >> Nicolas > >> > >> > >> ------------------------------------------------------------------------ > >>--- --- Throughout its 18-year history, RSA Conference consistently > >> attracts the world's best and brightest in the field, creating > >> opportunities for Conference attendees to learn about information > >> security's most important issues through interactions with peers, > >> luminaries and emerging and established companies. > >> http://p.sf.net/sfu/rsaconf-dev2dev > >> _______________________________________________ > >> Kbarcode-users mailing list > >> Kba...@li... > >> https://lists.sourceforge.net/lists/listinfo/kbarcode-users > > --------------------------------------------------------------------------- > --- Throughout its 18-year history, RSA Conference consistently attracts > the world's best and brightest in the field, creating opportunities for > Conference attendees to learn about information security's most important > issues through interactions with peers, luminaries and emerging and > established companies. http://p.sf.net/sfu/rsaconf-dev2dev > _______________________________________________ > Kbarcode-users mailing list > Kba...@li... > https://lists.sourceforge.net/lists/listinfo/kbarcode-users > -- ********************************************************************** Dominik Seichter - dom...@we... KRename - http://www.krename.net - Powerful batch renamer for KDE KBarcode - http://www.kbarcode.net - Barcode and label printing PoDoFo - http://podofo.sf.net - PDF generation and parsing library SchafKopf - http://schafkopf.berlios.de - Schafkopf, a card game, for KDE Alan - http://alan.sf.net - A Turing Machine in Java ********************************************************************** |
|
From: Doug R. <dou...@fr...> - 2010-01-19 21:27:29
|
Hello Dom, I'm not familliar in develloping such "large application". I'm more familiar with shell or perl script and I suppose that Kbarcode is devellopted using C/C++ (witch I don't know), but... if I can help, I could try. What is the way/method for migrating Kbarcode from KDE3 to KDE4 ? You could contact me directly thru mail if you want. ++ Nicolas Dominik Seichter a écrit : > Hi Nicolas, > > We started to port KBarcode to KDE4 in svn at: > https://kbarcode.svn.sf.net/svnroot/kbarcode/trunk > > Unfortunately we did not get very far and did not made any progress for the > last year, because no one seems to have time at the moment. If anyone wants to > continue the porting effort, I would love to help. Though I cannot do any work > for myself at the moment. > > Best regards, > Dom > > Am Dienstag 19 Januar 2010 schrieb Doug Ross: > >> Hello all, >> >> I'm looking for an application that allow to create barcode labels >> including additional comments so I think Kbarcode will fully match my >> needs. >> >> My issue is that I run Mandriva 2010 with KDE4 and... Kbarcode seems to >> not compile at all with KDE4. >> I tried to compile Kbarcode 2.0.7 and "configure" fail when reaching >> "KDE" phase with the following message : >> ---------- >> checking for KDE... configure: error: >> in the prefix you've chosen, are no KDE libraries installed. This will >> fail. So, check this please and use another prefix! >> ---------- >> >> Is there some way to compile Kbarcode with KDE4 ? >> >> ++ >> Nicolas >> >> >> --------------------------------------------------------------------------- >> --- Throughout its 18-year history, RSA Conference consistently attracts >> the world's best and brightest in the field, creating opportunities for >> Conference attendees to learn about information security's most important >> issues through interactions with peers, luminaries and emerging and >> established companies. http://p.sf.net/sfu/rsaconf-dev2dev >> _______________________________________________ >> Kbarcode-users mailing list >> Kba...@li... >> https://lists.sourceforge.net/lists/listinfo/kbarcode-users >> >> > > > |
|
From: Dominik S. <dom...@we...> - 2010-01-19 20:47:25
|
Hi Nicolas, We started to port KBarcode to KDE4 in svn at: https://kbarcode.svn.sf.net/svnroot/kbarcode/trunk Unfortunately we did not get very far and did not made any progress for the last year, because no one seems to have time at the moment. If anyone wants to continue the porting effort, I would love to help. Though I cannot do any work for myself at the moment. Best regards, Dom Am Dienstag 19 Januar 2010 schrieb Doug Ross: > Hello all, > > I'm looking for an application that allow to create barcode labels > including additional comments so I think Kbarcode will fully match my > needs. > > My issue is that I run Mandriva 2010 with KDE4 and... Kbarcode seems to > not compile at all with KDE4. > I tried to compile Kbarcode 2.0.7 and "configure" fail when reaching > "KDE" phase with the following message : > ---------- > checking for KDE... configure: error: > in the prefix you've chosen, are no KDE libraries installed. This will > fail. So, check this please and use another prefix! > ---------- > > Is there some way to compile Kbarcode with KDE4 ? > > ++ > Nicolas > > > --------------------------------------------------------------------------- > --- Throughout its 18-year history, RSA Conference consistently attracts > the world's best and brightest in the field, creating opportunities for > Conference attendees to learn about information security's most important > issues through interactions with peers, luminaries and emerging and > established companies. http://p.sf.net/sfu/rsaconf-dev2dev > _______________________________________________ > Kbarcode-users mailing list > Kba...@li... > https://lists.sourceforge.net/lists/listinfo/kbarcode-users > -- ********************************************************************** Dominik Seichter - dom...@we... KRename - http://www.krename.net - Powerful batch renamer for KDE KBarcode - http://www.kbarcode.net - Barcode and label printing PoDoFo - http://podofo.sf.net - PDF generation and parsing library SchafKopf - http://schafkopf.berlios.de - Schafkopf, a card game, for KDE Alan - http://alan.sf.net - A Turing Machine in Java ********************************************************************** |
|
From: Doug R. <dou...@fr...> - 2010-01-19 20:30:47
|
Hello all, I'm looking for an application that allow to create barcode labels including additional comments so I think Kbarcode will fully match my needs. My issue is that I run Mandriva 2010 with KDE4 and... Kbarcode seems to not compile at all with KDE4. I tried to compile Kbarcode 2.0.7 and "configure" fail when reaching "KDE" phase with the following message : ---------- checking for KDE... configure: error: in the prefix you've chosen, are no KDE libraries installed. This will fail. So, check this please and use another prefix! ---------- Is there some way to compile Kbarcode with KDE4 ? ++ Nicolas |
|
From: Adrian K. <ak...@co...> - 2009-09-25 01:00:03
|
On Thursday 24 September 2009 2:07:21 pm Chauncey Montgomery wrote:
> I am working on a simple barcode. It contains two variables, $ID and
> $Name. The $ID is a number value that gets inputed as a barcode. $Name
> is a text string that gets inputed into as text on the barcode. Names
> are inputed as last, first.
>
> A record in the CSV file I am importing would look something like this:
> 21000022; Smith, James
>
> Where 21000022 = $ID, and
> Smith, James = $Name
>
> Now, when I create the barcode, I have formated the text to be 10pt,
> bold, Arial. However, when I print the barcodes, the text is more like
> 4pt and there is an obnoxious space between the last and first name.
>
> I have attached a screen shot to show what I'm talking about (barcode.jpg).
>
> If I increase the text size, the result is larger text, but due to the
> space between the last and first name, it cuts off the first name. I've
> read through the kbarcode manual and it sounds like formatting text
> should be fairly simple; however, I've been working on this for quite
> some time and can not get the text to behave as I have formated it.
>
> I am using Kbarcode 2.0.6.
>
> Any suggestions are greatly appreciated.
>
> Thanks,
> CM
I believe you will have to upgrade to 2.0.7 per the ChangeLog below:
Version 2.0.7
Fixed building on systems with Automake 1.10 or later
-->Fixed text rendering on systems with Qt 3.3.8b
Dropped support for Qt 3.3.2 and earlier
Cleaned up Help menu
As to the space that may go away when you upgrade.
--
Adrian Klaver
ak...@co...
|
|
From: Chauncey M. <mon...@op...> - 2009-09-24 21:12:26
Attachments:
barcode.jpg
|
I am working on a simple barcode. It contains two variables, $ID and $Name. The $ID is a number value that gets inputed as a barcode. $Name is a text string that gets inputed into as text on the barcode. Names are inputed as last, first. A record in the CSV file I am importing would look something like this: 21000022; Smith, James Where 21000022 = $ID, and Smith, James = $Name Now, when I create the barcode, I have formated the text to be 10pt, bold, Arial. However, when I print the barcodes, the text is more like 4pt and there is an obnoxious space between the last and first name. I have attached a screen shot to show what I'm talking about (barcode.jpg). If I increase the text size, the result is larger text, but due to the space between the last and first name, it cuts off the first name. I've read through the kbarcode manual and it sounds like formatting text should be fairly simple; however, I've been working on this for quite some time and can not get the text to behave as I have formated it. I am using Kbarcode 2.0.6. Any suggestions are greatly appreciated. Thanks, CM |
|
From: Chauncey M. <mon...@op...> - 2009-09-24 15:38:51
|
Worked. Thank you so much. CM Adrian Klaver wrote: > On Thursday 24 September 2009 7:49:03 am Chauncey Montgomery wrote: >> I recently have migrated to a new machine and installed OpenSUSE 11.1 >> and installed Kbarcode 2.0.6. >> >> For some reason, I do not have the same options I had for barcode >> formats that I had on my old machine (I forget what version of Kbarcode >> I was using). For example, I used to have options like "Raw Code 128 >> [GNU Barcode]" and "Code 39 (no checksum) [GNU Barcode]". Now the only >> options I have for formats are "Barcode Writer in Pure Postscript". Is >> there any way to install the other formats, or is there something else I >> need to do? >> >> Any help is greatly appreciated. >> >> Thanks, >> CM > > See here for explanation: > > http://www.kbarcode.net/Barcode-Backends.26.0.html > > > Short answer is you probably need to install GNU Barcode. > |
|
From: Adrian K. <ak...@co...> - 2009-09-24 15:10:50
|
On Thursday 24 September 2009 7:49:03 am Chauncey Montgomery wrote: > I recently have migrated to a new machine and installed OpenSUSE 11.1 > and installed Kbarcode 2.0.6. > > For some reason, I do not have the same options I had for barcode > formats that I had on my old machine (I forget what version of Kbarcode > I was using). For example, I used to have options like "Raw Code 128 > [GNU Barcode]" and "Code 39 (no checksum) [GNU Barcode]". Now the only > options I have for formats are "Barcode Writer in Pure Postscript". Is > there any way to install the other formats, or is there something else I > need to do? > > Any help is greatly appreciated. > > Thanks, > CM See here for explanation: http://www.kbarcode.net/Barcode-Backends.26.0.html Short answer is you probably need to install GNU Barcode. -- Adrian Klaver ak...@co... |
|
From: Chauncey M. <mon...@op...> - 2009-09-24 14:54:04
|
I recently have migrated to a new machine and installed OpenSUSE 11.1 and installed Kbarcode 2.0.6. For some reason, I do not have the same options I had for barcode formats that I had on my old machine (I forget what version of Kbarcode I was using). For example, I used to have options like "Raw Code 128 [GNU Barcode]" and "Code 39 (no checksum) [GNU Barcode]". Now the only options I have for formats are "Barcode Writer in Pure Postscript". Is there any way to install the other formats, or is there something else I need to do? Any help is greatly appreciated. Thanks, CM |
|
From: Adrian K. <ak...@co...> - 2009-09-22 00:40:33
|
On Monday 21 September 2009 12:39:29 pm Chauncey Montgomery wrote: > I was wondering if there is a way to remove the asterisks that appear > before and after text using CODE 39[Barcode Writer in Pure Postscript]. > I'm using Kbarcode 2.0.6 with Opensuse 11.1. > Thanks, > CM > They are the stop/start symbol for Code39 so they are necessary. See below for more detail: http://en.wikipedia.org/wiki/Code_39 -- Adrian Klaver ak...@co... |
|
From: Chauncey M. <mon...@op...> - 2009-09-21 19:44:00
|
I was wondering if there is a way to remove the asterisks that appear before and after text using CODE 39[Barcode Writer in Pure Postscript]. I'm using Kbarcode 2.0.6 with Opensuse 11.1. Thanks, CM |
|
From: Chauncey M. <mon...@op...> - 2009-07-23 11:39:18
|
I had everything set up properly. After being extremely frustrated, I decided to uninstall kbarcode and reinstall it. After that, it worked fine. Thanks for all the help. CM Stefan Onken wrote: > Am Dienstag, 21. Juli 2009 schrieb Chauncey Montgomery: >> I created a label using custom variables that correspond with my >> csv file. I then went to Batch Processing and chose the filename >> of the barcode I created. I then move forward to Import >> Variables and Print and choose "Import from CSV file" and select >> my csv file. When I click "Next" none of my data has been >> imported. > > sure that you are using the function correctly ? You first have to > map the fields with the column headers... > > |
|
From: Stefan O. <su...@st...> - 2009-07-23 05:16:53
|
Am Dienstag, 21. Juli 2009 schrieb Chauncey Montgomery: > I created a label using custom variables that correspond with my > csv file. I then went to Batch Processing and chose the filename > of the barcode I created. I then move forward to Import > Variables and Print and choose "Import from CSV file" and select > my csv file. When I click "Next" none of my data has been > imported. sure that you are using the function correctly ? You first have to map the fields with the column headers... -- www.stonki.de www.proftpd.de www.kbarcode.net www.krename.net |
|
From: Adrian K. <ak...@co...> - 2009-07-21 23:17:46
|
On Tuesday 21 July 2009 9:12:58 am Chauncey Montgomery wrote: > Interesting. I tried your data and nothing happened. I made sure the > encoding matched. I really appreciate all your help. I'll keep playing > around and see what happens. > CM Did you enclose the variables in brackets? For instance [$vasarloID] -- Adrian Klaver ak...@co... |
|
From: Chauncey M. <mon...@op...> - 2009-07-21 16:13:08
|
Interesting. I tried your data and nothing happened. I made sure the encoding matched. I really appreciate all your help. I'll keep playing around and see what happens. CM Zsolt Váradi wrote: > On Tue, Jul 21, 2009 at 5:43 PM, Chauncey Montgomery<mon...@op...> wrote: >> I removed the quotes and still no luck. Thanks for the suggestion. >> CM > > This works for me: > > vasarloID;vasarlonev;vonalkod > 012.456.789;Alma Ata;7710003416724 > 123.456.890;Pistike Ver;7710003416823 > 123.456.789;Moricz Szabo;7710003408354 > > Where the variables in the label design are $vasarloID, $vasarlonev, > $vonalkod, respectively. Also, be sure to match the encoding with the > CSV file's! That can cause errors too. > > Zsolt > > ------------------------------------------------------------------------------ > _______________________________________________ > Kbarcode-users mailing list > Kba...@li... > https://lists.sourceforge.net/lists/listinfo/kbarcode-users |
|
From: Zsolt V. <kar...@gm...> - 2009-07-21 16:03:19
|
On Tue, Jul 21, 2009 at 5:43 PM, Chauncey Montgomery<mon...@op...> wrote: > I removed the quotes and still no luck. Thanks for the suggestion. > CM This works for me: vasarloID;vasarlonev;vonalkod 012.456.789;Alma Ata;7710003416724 123.456.890;Pistike Ver;7710003416823 123.456.789;Moricz Szabo;7710003408354 Where the variables in the label design are $vasarloID, $vasarlonev, $vonalkod, respectively. Also, be sure to match the encoding with the CSV file's! That can cause errors too. Zsolt |
|
From: Dominik S. <dom...@we...> - 2009-07-21 15:45:35
|
On Tuesday 21 July 2009 17:00:04 Zsolt Váradi wrote: > On Tue, Jul 21, 2009 at 4:47 PM, Chauncey Montgomery<mon...@op...> wrote: > > Why is the data not importing from my CSV file? I have double checked > > all spellings of my variables, etc. I cannot figure out what is going > > wrong. > > Any help is greatly appreciated. > > > > CM > > Hey, try removing the quotes from everywhere. That's most likely why > your variables aren't picked up. > > HTH and regards, > Zsolt Removing quotes from the first line should be enough, but to be sure try also to remove them everywhere. Regards, Dom > > --------------------------------------------------------------------------- >--- Enter the BlackBerry Developer Challenge > This is your chance to win up to $100,000 in prizes! For a limited time, > vendors submitting new applications to BlackBerry App World(TM) will have > the opportunity to enter the BlackBerry Developer Challenge. See full prize > details at: http://p.sf.net/sfu/Challenge > _______________________________________________ > Kbarcode-users mailing list > Kba...@li... > https://lists.sourceforge.net/lists/listinfo/kbarcode-users |
|
From: Chauncey M. <mon...@op...> - 2009-07-21 15:43:42
|
I removed the quotes and still no luck. Thanks for the suggestion. CM Zsolt Váradi wrote: > On Tue, Jul 21, 2009 at 4:47 PM, Chauncey Montgomery<mon...@op...> wrote: >> Why is the data not importing from my CSV file? I have double checked >> all spellings of my variables, etc. I cannot figure out what is going >> wrong. >> Any help is greatly appreciated. >> >> CM > > Hey, try removing the quotes from everywhere. That's most likely why > your variables aren't picked up. > > HTH and regards, > Zsolt > > ------------------------------------------------------------------------------ > Enter the BlackBerry Developer Challenge > This is your chance to win up to $100,000 in prizes! For a limited time, > vendors submitting new applications to BlackBerry App World(TM) will have > the opportunity to enter the BlackBerry Developer Challenge. See full prize > details at: http://p.sf.net/sfu/Challenge > _______________________________________________ > Kbarcode-users mailing list > Kba...@li... > https://lists.sourceforge.net/lists/listinfo/kbarcode-users |
|
From: Zsolt V. <kar...@gm...> - 2009-07-21 15:00:06
|
On Tue, Jul 21, 2009 at 4:47 PM, Chauncey Montgomery<mon...@op...> wrote: > Why is the data not importing from my CSV file? I have double checked > all spellings of my variables, etc. I cannot figure out what is going > wrong. > Any help is greatly appreciated. > > CM Hey, try removing the quotes from everywhere. That's most likely why your variables aren't picked up. HTH and regards, Zsolt |
|
From: Chauncey M. <mon...@op...> - 2009-07-21 14:47:41
|
I created a label using custom variables that correspond with my csv file. I then went to Batch Processing and chose the filename of the barcode I created. I then move forward to Import Variables and Print and choose "Import from CSV file" and select my csv file. When I click "Next" none of my data has been imported. Here is a sample from my CSV file: "Grade";"LegalName";"FirstName";"StuID"; 8;"Abdurehman";"Leymaan";85270; 8;"Adams";"Lindsey";31877; 8;"Adkins";"Michael";142250; 8;"Adkins";"Stephanie";32139; 8;"Ahmed";"Cameron";32173; 8;"Allen";"Sadie";32185; 8;"Ardrey";"Devin";32694; 8;"Balaz";"Emily";63180; 8;"Ball";"Corbin";32186; 8;"Barber";"Adam";56832; Why is the data not importing from my CSV file? I have double checked all spellings of my variables, etc. I cannot figure out what is going wrong. Any help is greatly appreciated. CM |