Search found 18 matches

by lnxque
Fri May 14, 2010 8:26 am
Forum: Linux
Topic: LostFocus- or Change-Event for DateGadget?
Replies: 5
Views: 2527

Re: LostFocus- or Change-Event for DateGadget?

Thank you again. this example works too. for some other purposes needful, in dead.

I would describe my problem as follow. if (after) the user change the date, some depending data records should be loaded/updated.
by lnxque
Wed May 12, 2010 1:27 pm
Forum: Linux
Topic: LostFocus- or Change-Event for DateGadget?
Replies: 5
Views: 2527

Re: LostFocus- or Change-Event for DateGadget?

Thank you, but the CalendarGadget is not what i am looking for. I use the DateGadget and there your example don't work.
by lnxque
Mon May 10, 2010 8:41 am
Forum: Linux
Topic: LostFocus- or Change-Event for DateGadget?
Replies: 5
Views: 2527

LostFocus- or Change-Event for DateGadget?

Hello.

how can i add (at least) the change-event to a DateGadget?
by lnxque
Thu Feb 11, 2010 10:38 am
Forum: Linux
Topic: LineXY on printer - single lines toooooooooooo fat
Replies: 4
Views: 2555

Re: LineXY on printer - single lines toooooooooooo fat

Yes, you are right, there are two different values. tested on a pos-printer. very strange and unexpected.

Windows: W:512, H:2104
Linux: W:204, H:842

The drivers in all OS configured to: width 80mm, height 297mm, resolution 180dpi

How can it happen, that i "loose" ~100dpi? printing a testpage via ...
by lnxque
Wed Feb 10, 2010 2:13 pm
Forum: Linux
Topic: LineXY on printer - single lines toooooooooooo fat
Replies: 4
Views: 2555

Re: LineXY on printer - single lines toooooooooooo fat

No dpi issue. tested on 2 printers, always the same (Windows OK, Linux not). using DefaultPrinter() should be use default settings...?

How could i set up the dpi resolution via code (if really necessary)?
by lnxque
Tue Feb 09, 2010 3:20 pm
Forum: Linux
Topic: LineXY on printer - single lines toooooooooooo fat
Replies: 4
Views: 2555

LineXY on printer - single lines toooooooooooo fat

Try this example under Linux and Windows. You will get different results.

If DefaultPrinter()
If StartPrinting("printtest")
If StartDrawing(PrinterOutput())
FrontColor(0)
BackColor(RGB($ff,$ff,$ff))
y.f=10
For i.w=1 To 3
DrawText(10,y,"This is a printingtest!")
LineXY(10,y+1.5,TextWidth ...
by lnxque
Mon Feb 01, 2010 5:51 pm
Forum: Linux
Topic: PrintRequester - strange icons
Replies: 1
Views: 1664

PrintRequester - strange icons

KDE or PB-problem?

Image
by lnxque
Sat Jan 30, 2010 9:14 am
Forum: Linux
Topic: Icons in default messagebox (via MessageRequester)?
Replies: 4
Views: 2048

Re: Icons in default messagebox (via MessageRequester)?

Found a solution in "Tricks 'n' Tips", but i can't display "Umlaute" like "äöüß".

Any ideas?
by lnxque
Fri Jan 29, 2010 4:46 pm
Forum: Linux
Topic: Icons in default messagebox (via MessageRequester)?
Replies: 4
Views: 2048

Icons in default messagebox (via MessageRequester)?

Hello.

My try.

MessageRequester("Info","Info",#GTK_BUTTONS_OK|#GTK_MESSAGE_INFO)
MessageRequester("Warn","Warn",#GTK_BUTTONS_OK|#GTK_MESSAGE_WARNING)
MessageRequester("Ques","Ques",#GTK_BUTTONS_OK|#GTK_MESSAGE_QUESTION)
MessageRequester("Erro","Erro",#GTK_BUTTONS_OK|#GTK_MESSAGE_ERROR)

Without ...
by lnxque
Fri Jan 29, 2010 9:47 am
Forum: Linux
Topic: ListIconGadget - Column alignment
Replies: 4
Views: 2979

Re: ListIconGadget - Column alignment

This was, what i am looking for. Thank you (für Tannenbäumchen ;-)
by lnxque
Thu Jan 28, 2010 5:09 pm
Forum: Linux
Topic: ListIconGadget - Column alignment
Replies: 4
Views: 2979

Re: ListIconGadget - Column alignment

The last one.

How can i align the text in columns in a ListIconGadget in the middle (center) and right (under Linux)?
by lnxque
Thu Jan 28, 2010 9:59 am
Forum: Linux
Topic: ListIconGadget - Column alignment
Replies: 4
Views: 2979

ListIconGadget - Column alignment

Is an example for the column alignment in ListIconGadget available?
by lnxque
Thu Jan 28, 2010 9:28 am
Forum: Linux
Topic: How to write/read INI-files on the "sunny" way?
Replies: 2
Views: 1747

Re: How to write/read INI-files on the "sunny" way?

Solved (in parts). Wrote (reading)/will write (writing) the functionality in PB.
by lnxque
Thu Jan 28, 2010 9:22 am
Forum: Linux
Topic: bug or feature?
Replies: 1
Views: 1113

bug or feature?

There is a "strange" behavior regarding the optiongadget. 1st (default), work as expected.


If OpenWindow(0, 100, 180, 200, 100, "Test")
OptionGadget(0, 10, 10, 80, 20, "option 1")
OptionGadget(1, 100, 10, 80, 20, "option 2")
ButtonGadget(2, 60, 50, 80, 20, "button")

Repeat
EvID ...