Search found 11 matches

by pickelrobert
Sat Dec 13, 2008 2:52 pm
Forum: Feature Requests and Wishlists
Topic: StringField enhancement like the code below ...
Replies: 0
Views: 709

StringField enhancement like the code below ...


Procedure.s StringFieldSet(Liste.s,Position.l,Trenner.s,Wert.s)
Protected a.l, i.l, tmp.s
a=CountString(Liste,Trenner)
If (a+1)<Position:ProcedureReturn Liste:EndIf
Dim dummy.s(a)
;Zerlegen
For i=1 To (a+1)
If i=Position
dummy(i-1)=Wert
Else
dummy(i-1)=StringField(Liste,i,Trenner)
EndIf ...
by pickelrobert
Fri Sep 08, 2006 6:42 pm
Forum: General Discussion
Topic: PureColor, PurePOP3, PureSMTP ... from GNOZAL
Replies: 3
Views: 970

PureColor, PurePOP3, PureSMTP ... from GNOZAL

... setup don't allow changing the destination of installation. the installers want always install to "c:\program files\purebasic". should be fixed soon. thanks.
by pickelrobert
Sun May 21, 2006 5:11 pm
Forum: General Discussion
Topic: SetGadgetColor for ComboBoxGadget ?
Replies: 0
Views: 794

SetGadgetColor for ComboBoxGadget ?

Forgotten ? No further hints in help file available ?
by pickelrobert
Tue Jan 17, 2006 4:08 pm
Forum: Coding Questions
Topic: How to change Column description in ListIconGadget ?
Replies: 13
Views: 1762

I tryed this out with a little bit modified code
Enumeration
#MyWindow
#MyGadget
#ReturnCatch
EndEnumeration

hscol0.s = "Columnheader 0"
hscol1.s = "Columnheader 1"
If OpenWindow(#MyWindow,0,0,430,300,#PB_Window_ScreenCentered|#PB_Window_SystemMenu,"Header Text demo")
If CreateGadgetList ...
by pickelrobert
Tue Jan 17, 2006 3:06 pm
Forum: Coding Questions
Topic: How to change Column description in ListIconGadget ?
Replies: 13
Views: 1762

Many thanks. I will try your code.
by pickelrobert
Mon Jan 16, 2006 8:49 pm
Forum: Coding Questions
Topic: How to change Column description in ListIconGadget ?
Replies: 13
Views: 1762

Yes and yes i know. My Gadget is always filled and i want change the column description for column 0 - defined on gadget creation with the "text" property...
by pickelrobert
Mon Jan 16, 2006 8:27 pm
Forum: Coding Questions
Topic: How to change Column description in ListIconGadget ?
Replies: 13
Views: 1762

I try to change the "TEXT" created with:

Code: Select all

ListIconGadget(0, 20, 90,470,290,"TEXT",225,#PB_ListIcon_GridLines)
with

Code: Select all

SetGadgetText(0,"NEW TEXT")
in my meaning this ist column 0. But this don't work.
by pickelrobert
Mon Jan 16, 2006 8:16 pm
Forum: Coding Questions
Topic: How to change Column description in ListIconGadget ?
Replies: 13
Views: 1762

... and how look's this with column 0 - it will be defined on gadget creation ...
by pickelrobert
Mon Jan 16, 2006 7:57 pm
Forum: Coding Questions
Topic: How to change Column description in ListIconGadget ?
Replies: 13
Views: 1762

How to change Column description in ListIconGadget ?

Hello,

how can i change the column description in ListIconGadgets (not during creation) ? What's wrong ? Always testet (and not working) variants:

Code: Select all

SetGadgetItemText(0,0,"column0",0)
;or
SetGadgetText(0,"column0")
Thanks
by pickelrobert
Fri Apr 29, 2005 3:21 pm
Forum: Coding Questions
Topic: How to place text on image
Replies: 3
Views: 1050

Thank you, but this is not really that what i want. I mean more something the using of imagegadget as container (like the Picturecontrol in Visual Basic), because i'd not found an ability the set an image as background for the main window.
by pickelrobert
Fri Apr 29, 2005 12:50 am
Forum: Coding Questions
Topic: How to place text on image
Replies: 3
Views: 1050

How to place text on image

Hi,

how can i place a TextGadget on top of an ImageGadget ?

Cheers