Re: [fpc-pascal] TSQLQuery UniDirectional and SaveToStream

2014-02-06 Thread LacaK
Dimitrios Chr. Ioannidis wrote / napísal(a): Hi, Στις 6/2/2014 9:10 πμ, ο/η LacaK έγραψε: Dimitrios Chr. Ioannidis wrote / napísal(a): Hi all, i will appreciate a little help / advice / anything for the following problem i'm having. I need to use the xmldatapacketreader to transfer datase

Re: [fpc-pascal] freepascal community and USB printing

2014-02-06 Thread waldo kitty
On 2/6/2014 2:45 PM, Philippe wrote: so ... sorry again (I didn´t know it could make a difference) ... thanks and no problem... frederic's explanation is accurate... one should also think about news groups and their readers... the Message-ID and References lines of each post are used to build

Re: [fpc-pascal] TSortedCollection dupes ordering

2014-02-06 Thread waldo kitty
On 2/6/2014 1:47 PM, Jim Leonard wrote: On 2/6/2014 11:04 AM, waldo kitty wrote: ahh... i see what you are doing... you are passing the pointer to the whole record instead of just the needed key... hummm... i'll have to think about that and how to do it in my app... right now i'm only passing th

Re: [fpc-pascal] freepascal community and USB printing

2014-02-06 Thread Philippe
thanks ... I´ll take care of it ... Em 06.02.2014 20:27, Frederic Da Vitoria escreveu: > It depends on the reader's mail client. Each mail has a unique ID. When you chose to answer to a mail, your answer contains the ID of the original mail too. If you change the subject, this ID chain remai

Re: [fpc-pascal] freepascal community and USB printing

2014-02-06 Thread Frederic Da Vitoria
It depends on the reader's mail client. Each mail has a unique ID. When you chose to answer to a mail, your answer contains the ID of the original mail too. If you change the subject, this ID chain remains. This allows some mail clients (for example Thunderbird) to show the mails in a tree structur

Re: [fpc-pascal] freepascal community and USB printing

2014-02-06 Thread Philippe
so ... sorry again (I didn´t know it could make a difference) ... Em 06.02.2014 15:59, waldo kitty escreveu: > On 2/6/2014 9:24 AM, Philippe wrote: > >> searching for raw printing to usb printer ... I found that some stuff has been posted in the community forum ... which looks to be out of

Re: [fpc-pascal] windows title

2014-02-06 Thread Philippe
sorry ... I´ll do it next time ... Em 06.02.2014 15:58, waldo kitty escreveu: > On 2/6/2014 9:16 AM, Philippe wrote: > >> compiling for targets win32 and win64, I´ld like to change the window title, the window opened by cmd.exe > > please do not hijack other people's topics to ask an unrel

Re: [fpc-pascal] TSortedCollection dupes ordering

2014-02-06 Thread Jim Leonard
On 2/6/2014 11:04 AM, waldo kitty wrote: ahh... i see what you are doing... you are passing the pointer to the whole record instead of just the needed key... hummm... i'll have to think about that and how to do it in my app... right now i'm only passing the necessary key because the record is 'la

Re: [fpc-pascal] windows title

2014-02-06 Thread waldo kitty
On 2/6/2014 9:16 AM, Philippe wrote: compiling for targets win32 and win64, I´ld like to change the window title, the window opened by cmd.exe please do not hijack other people's topics to ask an unrelated question... use your 'write' or 'new message' button instead of 'reply' to start a your

Re: [fpc-pascal] freepascal community and USB printing

2014-02-06 Thread waldo kitty
On 2/6/2014 9:24 AM, Philippe wrote: searching for raw printing to usb printer ... I found that some stuff has been posted in the community forum ... which looks to be out of order ... is there a way to get the informations posted ... and you did it (hijacked the same thread with another topic)

Re: [fpc-pascal] TSortedCollection dupes ordering

2014-02-06 Thread waldo kitty
On 2/6/2014 4:23 AM, Frederic Da Vitoria wrote: Then my trick does not work for you because it hides the fact that the records are identical. actually, the problem comes when referencing the IndexOf() the record... IndexOf(Item) is passed (unmodified) thru a couple of routines to finally end u

Re: [fpc-pascal] TSortedCollection dupes ordering

2014-02-06 Thread waldo kitty
On 2/5/2014 7:48 PM, Jim Leonard wrote: On 2/5/2014 5:24 PM, waldo kitty wrote: i'm unsure what to do or how to handle this so that there is a secondary (sub) sorting order so that the main key is the master sort and then a secondary ""key"" is used when duplicates are allowed... You put both

Re: [fpc-pascal] windows title

2014-02-06 Thread Philippe
just simple like that ... works perfectly as I need ... I had searched (but searching "freepascal") and found something ... more complicated ... thank´s a lot. Philippe Em 06.02.2014 12:29, Tomas Hajny escreveu: > On Thu, February 6, 2014 15:16, Philippe wrote: > >> compiling for targ

Re: [fpc-pascal] windows title

2014-02-06 Thread Tomas Hajny
On Thu, February 6, 2014 15:16, Philippe wrote: > compiling for targets win32 and win64, I´ld like to change the window > title, the window opened by cmd.exe > > program x; > uses ?; > begin > y( 'MY TITLE'); > end. > > I didn´t find anything in the windows unit Google suggests that Win

[fpc-pascal] freepascal community and USB printing

2014-02-06 Thread Philippe
searching for raw printing to usb printer ... I found that some stuff has been posted in the community forum ... which looks to be out of order ... is there a way to get the informations posted ... or may be someone could tell me how to raw print to usb (as for LPT1), for exemple to Epson LX 8

Re: [fpc-pascal] windows title

2014-02-06 Thread Frederic Da Vitoria
2014-02-06 Philippe : > compiling for targets win32 and win64, I´ld like to change the window > title, the window opened by cmd.exe > > program x; > uses ?; > begin > y( 'MY TITLE'); > end. > > I didn´t find anything in the windows unit > I don't understand the relation between cmd.exe

Re: [fpc-pascal] windows title

2014-02-06 Thread Philippe
compiling for targets win32 and win64, I´ld like to change the window title, the window opened by cmd.exe program x; uses ?; begin y( 'MY TITLE'); end. I didn´t find anything in the windows unit Thanks for help! Philippe ___ fpc-pascal mail

Re: [fpc-pascal] TSortedCollection dupes ordering

2014-02-06 Thread Frederic Da Vitoria
2014-02-06 waldo kitty : > On 2/5/2014 3:57 AM, Frederic Da Vitoria wrote: > [...] > > Once again I did not test this, but it seems to me that if Compare >> returned -1 >> instead of 0, any duplicate would be inserted after because it would >> never be >> considered as equal to any other. But sin

Re: [fpc-pascal] TSQLQuery UniDirectional and SaveToStream

2014-02-06 Thread Dimitrios Chr. Ioannidis
Hi, Στις 6/2/2014 9:10 πμ, ο/η LacaK έγραψε: Dimitrios Chr. Ioannidis wrote / napísal(a): Hi all, i will appreciate a little help / advice / anything for the following problem i'm having. I need to use the xmldatapacketreader to transfer datasets between free pascal and delphi. The probl

Re: [fpc-pascal] TSQLQuery UniDirectional and SaveToStream

2014-02-06 Thread Dimitrios Chr. Ioannidis
Hi, Στις 6/2/2014 9:10 πμ, ο/η LacaK έγραψε: Dimitrios Chr. Ioannidis wrote / napísal(a): The problem i'm having is that i can't use UniDirectional and SaveToStream at the same time ( getting DataBaseError(SUniDirectional) ) and for big datasets the memory goes . So, does anyone have an