Re: [fpc-pascal] TListBox, scroll horizontally

2012-10-04 Thread Graeme Geldenhuys
Wrong mailing list. Graeme. ___ fpc-pascal maillist - fpc-pascal@lists.freepascal.org http://lists.freepascal.org/mailman/listinfo/fpc-pascal

Re: [fpc-pascal] Getting a resource file in the proper FPC directory: makefiles etc?

2012-10-04 Thread Reinier Olislagers
On 3-10-2012 9:05, Reinier Olislagers wrote: > Developing my database listener for fpcunit, I see 2 locations where the > ppu files end up: > \packages\fcl-fpcunit\units\i386-win32\dbreporter.ppu > \units\i386-win32\fcl-fpcunit\dbreporter.ppu > > However, a dbreporter.res resource file only ends u

[fpc-pascal] TListBox, scroll horizontally

2012-10-04 Thread Jürgen Hestermann
Is there a way to let the user shift the content of a TListBox horizontally so that he can view the part of long strings that is clipped on the right? If the number of strings (information) exceeds the height of the TListBox there is a slider to shift vertically but when it exceeds the width ther

Re: [fpc-pascal] Using database-specific functionality with TSQLConnector

2012-10-04 Thread Reinier Olislagers
On 3-10-2012 9:05, michael.vancann...@wisa.be wrote: > On Tue, 2 Oct 2012, Reinier Olislagers wrote: > >> Hi list, >> >> >> IBConn:TIBConnection; >> ... >> IBConn:=TIBConnection(FConn.ProxyConnection); >> IBConn.UserName:=FConn.UserName; >> IBConn.Password:=FConn.Password; >> IBConn.DatabaseName:

Re: [fpc-pascal] Running FPC on a system that supports multiple architectures

2012-10-04 Thread Marco van de Voort
In our previous episode, Mark Morgan Lloyd said: > This is an "out of interest" question rather than being particularly > important. I've managed to get my hands on an Itanium-based system for > my collection, and find that it runs the x86 Linux variant of FPC fairly > happily. However, GNU as a

[fpc-pascal] Running FPC on a system that supports multiple architectures

2012-10-04 Thread Mark Morgan Lloyd
This is an "out of interest" question rather than being particularly important. I've managed to get my hands on an Itanium-based system for my collection, and find that it runs the x86 Linux variant of FPC fairly happily. However, GNU as and so on clearly don't know about x86 assembler: they ex

[fpc-pascal] Getting a resource file in the proper FPC directory: makefiles etc?

2012-10-04 Thread Reinier Olislagers
Developing my database listener for fpcunit, I see 2 locations where the ppu files end up: \packages\fcl-fpcunit\units\i386-win32\dbreporter.ppu \units\i386-win32\fcl-fpcunit\dbreporter.ppu However, a dbreporter.res resource file only ends up in the first location. Which makefile(s) do I have to

[fpc-pascal] Getting a resource file in the proper FPC directory: makefiles etc?

2012-10-04 Thread Reinier Olislagers
Developing my database listener for fpcunit, I see 2 locations where the ppu files end up: \packages\fcl-fpcunit\units\i386-win32\dbreporter.ppu \units\i386-win32\fcl-fpcunit\dbreporter.ppu However, a dbreporter.res resource file only ends up in the first location. Which makefile(s) do I have to

Re: [fpc-pascal] Using database-specific functionality with TSQLConnector

2012-10-04 Thread michael . vancanneyt
On Tue, 2 Oct 2012, Reinier Olislagers wrote: Hi list, IBConn:TIBConnection; ... IBConn:=TIBConnection(FConn.ProxyConnection); IBConn.UserName:=FConn.UserName; IBConn.Password:=FConn.Password; IBConn.DatabaseName:=FConn.DatabaseName; ... IBConn.CreateDB; Is that the best/easiest way? Would

Re: [fpc-pascal] Using database-specific functionality with TSQLConnector

2012-10-04 Thread LacaK
Hm, i see these ways: 1. Add CreateDB/DropDB methods to SQLConnector (like others methods, CreateDB is virtual at TSQLConnection level): procedure TSQLConnector.CreateDB; begin CheckProxy; FProxy.CreateDB; end; 2. Add getter for Proxy property: function TSQLConnector.GetProxy: TSQLConnection