Re: [Gambas-user] Installing KDE on Cinnamon

2012-12-02 Thread Gregor Burck
Hi, qt4-qtconfig will help you. Bye Gregor -- Keep yourself connected to Go Parallel: DESIGN Expert tips on starting your parallel project right. http://goparallel.sourceforge.net/ _

Re: [Gambas-user] Printing - same code - two machines - two outputs

2012-11-15 Thread Gregor Burck
Hi, forgott it, the problem lay on OSI Layer 8,... In my own settings menu I set the wrong settings,... Bye Gregor -- -- Monitor your physical, virtual and cloud infrastructure from a single web console. Get in-dep

Re: [Gambas-user] R: Read image from stdin

2012-10-26 Thread Gregor Burck
Hi, thank you this nearly what I want. But is this possible without the long way over the file: Dim bild As Image Dim content As String Form1.Show Shell "zint --notext --directpng -b 3 -d 4600295071" To content File.Save(User.Home & "/path_of_new_file1.png", content) bild = image.Load(Us

[Gambas-user] Read image from stdin

2012-10-25 Thread Gregor Burck
Hi, I want to create an barcode with a shell tool which write to stdout. These should be read and displayed. How could I read the stream to an image? Is this possible? Bye Gregor -- -- Everyone hates slow websites.

[Gambas-user] Printing, don't see my mistake

2012-10-25 Thread Gregor Burck
Hi, I don't understand how to print in gambas3. Even when I look at the example I don't find my mistake, I got always a blank page: Public Sub AnsichtDrucken() If prt.Configure() Then Return Me.Enabled = False Inc Application.Busy prt.Print Dec Application.Busy Me.Enabled = True End

[Gambas-user] ValueBox - Strange behavior

2012-10-22 Thread Gregor Burck
Hi, I test ValueBox and there is a strange behavior: When the value is 0 the box doen't show anything. Only when got focus '0,00 €' is shown. The same when i set 0,00 to text or value. Is this a bug? Gregor -- -- ---

Re: [Gambas-user] Difrent usage from Val() in 2.x and 3.x?

2012-10-18 Thread Gregor Burck
Oh, I think ValueBox is the clue! I've to test it, but I think it is, what the author of the application want orginally. But then I'v another problem. How to change all the Textboxes to valueboxes in the Forms? Maybe there is atrick over the GUI or should I do it in the source-data per script)

Re: [Gambas-user] Difrent usage from Val() in 2.x and 3.x?

2012-10-18 Thread Gregor Burck
Hi, > Use it with only digits. OK, but how I could handle this: I overtook GamKuWa http://www.fishing-penguins.de/gamkuwa.html) for my use In the project , there are often Formated TextBoxValues like "0,00 €". Later the Value Is use to calculate. So the author took Val to generate the Value of t

[Gambas-user] gridView1.Rows[0].Height = 0 --> "Außerhalb der Array Grenzen"

2012-10-18 Thread Gregor Burck
Hi, In gambas3.3.3 (and earlier): maybe this is a bug?: Take a gridvie with one row. Define height to 0, then I get a error and the Application hang. In the 'stapelverfolgung' I see: GridView.ScrollArea_Draw.427 (Nativer Code) ScrollArea.DrawingArea_Draw.427 With a gridview with 2 rows there ar

Re: [Gambas-user] Display tiff with two sides

2012-10-12 Thread Gregor Burck
Hi, thank you for examination. It is not so important but a nice feature. To bind an external library is in the moment not the thing i would practis. Bye Gregor -- -- Don't let slow site performance ruin your busine

Re: [Gambas-user] Display tiff with two sides

2012-10-11 Thread Gregor Burck
Hi, I create an example tiff, Thank you for the help! Gregor -- <>-- Don't let slow site performance ruin your business. Deploy New Relic APM Deploy New Relic app performance management and know exactly what is happenin

Re: [Gambas-user] Display tiff with two sides

2012-10-10 Thread Gregor Burck
Hi, sorry I try to tell it more exactly. A tiff could contain multiple subfiles, see http://en.wikipedia.org/wiki/Tagged_Image_File_Format Some programms could handle with this, evince is one of that. I load a tiff with Image.Load("xyz.tiff") Afer that I draw it with Draw.Image() to a DrawingA

Re: [Gambas-user] Solaris?

2012-10-10 Thread Gregor Burck
? Solaris (système d'exploitation) http://fr.wikipedia.org/wiki/Solaris_(système_d'exploitation) -- -- Don't let slow site performance ruin your business. Deploy New Relic APM Deploy New Relic app performance manageme

[Gambas-user] Solaris?

2012-10-10 Thread Gregor Burck
Hi, did someone use or try gambas on solaris? Bye Gregor -- -- Don't let slow site performance ruin your business. Deploy New Relic APM Deploy New Relic app performance management and know exactly what is happening

[Gambas-user] Display tiff with two sides

2012-10-10 Thread Gregor Burck
Hi, I start from the example ImageViewer. I can open from the konsole with Args (thank so far), resize the displayed image. but I open an tiff with 2 pictures in it. How could I diplay the second? Bye Gregor -- --

Re: [Gambas-user] Start Programm from konsole, 2 Questions

2012-10-09 Thread Gregor Burck
Hi, > Are you sure of your path ? Yes, seem the 'ä' made problems. > >> ? >> >> The seccond question, could I do something like this: >> >> $ gbr3 Arbeitsfläche/ImageViewer.gambas sample.tiff >> >> How could I get the parameter? >> > http://www.gambasdoc.org/help/comp/gb/application/args?v3 OK af

[Gambas-user] Start Programm from konsole, 2 Questions

2012-10-09 Thread Gregor Burck
Hi, I try to start a gambas Programm from konsole (in KDE, later ove ssh -X,...), I get: $ gbr3 Arbeitsfläche/ImageViewer.gambas ERROR: #35: Cannot open file 'ImageViewer.gambas': No such file or directory ? The seccond question, could I do something like this: $ gbr3 Arbeitsfläche/ImageViewe

[Gambas-user] Difrent usage from Val() in 2.x and 3.x?

2012-10-08 Thread Gregor Burck
Hi, I've a problem. In an Projekt creae with gambas2 we use Val() to get the Value from a string like "0,00 €". We get 0. the same with gambas3 give me NULL. Is the idea of usage wrong? Ho should I use it? Bye, Gregor --

Re: [Gambas-user] Changing hierarchy later

2011-02-18 Thread Gregor Burck
or in words: After I create a Form I want to group some elements in a frame or Tab. I think the only way is to cut the elements and place them into the new container. I guess to take the hierarchy tree, but I only can move elements in the same hierarchy. By Gregor -- ---

Re: [Gambas-user] Changing hierarchy later

2011-02-18 Thread Gregor Burck
Hi Benoît, textbox1 frame1 to frame1 | ->textbox1 I hope it is understandable,... Gregor -- -- The ultimate all-in-one performance toolkit: Intel(R) Parallel Studio XE: Pinpoint memory and threading errors befor

[Gambas-user] Changing hierarchy later

2011-02-14 Thread Gregor Burck
Hi, is it possible in gambas2 to change the hierarchy to a later time? There is the hierarchy treeview, but I guess I can't move items to an other branch? Thank you Gregor -- -- The ultimate all-in-one performance

[Gambas-user] Print html direct?

2010-11-24 Thread Gregor Burck
Hi, I'm still experimenting with printing, the scale method was a good hint for me. But now a other question: Can I direct print html? The background: I try to improve a application, and I wonder if it is esyer to generate html instead of print direkt, cause there are elements for layout. In thi

[Gambas-user] Print, Resolution, Units

2010-11-09 Thread Gregor Burck
Hi, when I want to print the units for draw were dots, for the gui I want to use milimeter. So I create a function public function mmToDots(mm as integer, resolution as integer) as integer return Round(mm / 25.4 * resolution) end And draw e.g. a line with draw(mmToDots(X,draw.resolution),mmT