Search found 257 matches

by sverson
Fri May 17, 2024 9:46 pm
Forum: Windows
Topic: How to display coloured emoticons embedded in text in Purebasic Gadgets?
Replies: 3
Views: 1800

Re: How to display coloured emoticons embedded in text in Purebasic Gadgets?

Thx idle.

So scintilla is the only way to handle this issue?
If so, I would have to create some kind of ListIconGadget from ScintillaGadgets.
That's going to be a pretty big deal when you have to process 11 columns and thousands of rows. 🤔

I assume this solution will be pretty slow. The " DB ...
by sverson
Fri May 17, 2024 12:21 am
Forum: Windows
Topic: How to display coloured emoticons embedded in text in Purebasic Gadgets?
Replies: 3
Views: 1800

How to display coloured emoticons embedded in text in Purebasic Gadgets?

How can I display coloured emoticons embedded in the text in Purebasic?
For me it only works in black and white in all gadgets.

https://sverson.de/pic/ClrEmoticon.jpg

I have hundreds of comments with emoticons in a database and want to display them correctly (in colour!).
This should also work ...
by sverson
Fri Feb 25, 2011 9:28 pm
Forum: Mac OSX
Topic: StringGadget CursorPos question
Replies: 3
Views: 4302

Re: StringGadget CursorPos question

@Shardik
Can't test it right now - thanks anyway.

:wink: sverson
by sverson
Tue Feb 08, 2011 12:11 pm
Forum: Off Topic
Topic: PB 4.5x, Windows 7 and F-Secure Client Security
Replies: 12
Views: 2341

Re: PB 4.5x, Windows 7 and F-Secure Client Security

Hi,

This is what F-Secure said to me:
Hello,

With growing number of threats in the wild, we have to be strict in our detection which eventually causes some false alarms. This is also true with many of Antivirus vendors. However, in F-Secure, we are constantly working on reducing the FAs and at ...
by sverson
Fri Feb 04, 2011 7:21 pm
Forum: Off Topic
Topic: PB 4.5x, Windows 7 and F-Secure Client Security
Replies: 12
Views: 2341

Re: PB 4.5x, Windows 7 and F-Secure Client Security

... (login is not necessary even though the page is called login.html)... I have been talking to the F-Secure people today.
They said if you want to receive their response you need to create a user account.
As soon as you are logged in you can describe your problem, tell them you want some response ...
by sverson
Mon Jan 24, 2011 11:50 pm
Forum: Linux
Topic: enable/disable minimize/maxinize window buttons
Replies: 3
Views: 2139

Re: enable/disable minimize/maxinize window buttons

Update: Sorry, but my statements above seem only to be valid for my
andLinux/Kubuntu 9.04 distribution. The toggling of window resizing does
only work in that distribution, which is a special case because it uses a
modified kernel that runs as a task in Windows. And the displayed window
is an ...
by sverson
Sat Jan 22, 2011 12:57 am
Forum: Linux
Topic: enable/disable minimize/maxinize window buttons
Replies: 3
Views: 2139

enable/disable minimize/maxinize window buttons

Does anybody know how to solve this on Linux?

It works fine on Windows... Procedure pi_DisableWindowMaximize(WindowNo.i, Disable.i = #True) ; Platform independent DisableWindowMaximize
Protected WindowID.i
If IsWindow(WindowNo)
WindowID = WindowID(WindowNo)
CompilerSelect #PB_Compiler_OS ...
by sverson
Sat Dec 11, 2010 1:18 am
Forum: Linux
Topic: ContainerGadget issue
Replies: 6
Views: 3038

Re: ContainerGadget issue

Hello Vera,

Thanks for your help.

I already read the german thread.
And I already use the 'dirty trick': Gadget = ContainerGadget(#PB_Any, -2, -2, 204, 204, #PB_Container_BorderLess)

What I am looking for is a function to get the value '-2' at runtime . I don't want to 'hard code' it because it ...
by sverson
Fri Dec 10, 2010 8:53 pm
Forum: Linux
Topic: ContainerGadget issue
Replies: 6
Views: 3038

ContainerGadget issue

If I create a borderless ContainerGadget inside a ContainerGadget with the same size at 0/0.
On Windows it will completely cover the parent container which is what I need.
On Linux (Ubutu) there seems to be a inner frame so it appears at 1/1 or 2/2 instead of 0/0.

How can I set this frame to '0' or ...
by sverson
Thu Nov 25, 2010 1:26 am
Forum: Coding Questions
Topic: GetDiskFreeSpace & GetVolumeInformation on Linux & Mac ?
Replies: 3
Views: 2127

Re: GetDiskFreeSpace & GetVolumeInformation on Linux & Mac ?

Thanks IdeasVacuum,
Thanks LuCiFeR[SD]

remi_meier actually wrote a statvfs example:
PureBoard (german)

:wink:
by sverson
Wed Nov 24, 2010 12:29 am
Forum: Coding Questions
Topic: GetDiskFreeSpace & GetVolumeInformation on Linux & Mac ?
Replies: 3
Views: 2127

GetDiskFreeSpace & GetVolumeInformation on Linux & Mac ?

Hi Linux & Mac experts,

I am looking for functions similar to the Win API functions GetDiskFreeSpaceEx_ & GetVolumeInformation_.

Thanks.
by sverson
Sun Nov 14, 2010 12:41 pm
Forum: Coding Questions
Topic: Simple question on FreeGadget()
Replies: 5
Views: 1367

Re: Simple question on FreeGadget()

Trond wrote:Remember that images in imagegadgets and image buttons won't be freed, though.
Thanks Trond.
by sverson
Sun Nov 14, 2010 12:46 am
Forum: Coding Questions
Topic: Simple question on FreeGadget()
Replies: 5
Views: 1367

Re: Simple question on FreeGadget()

@netmaestro: Thanks - proof positive!
@c4s: no problem here - all removed.

Procedure.i TestGadgets()
With MyGadgets
ResetList(\GadgetList())
While NextElement(\GadgetList())
If IsGadget(\GadgetList()\Number)
ProcedureReturn #False
EndIf
Wend
EndWith
ProcedureReturn #True
EndProcedure ...
by sverson
Sat Nov 13, 2010 11:23 pm
Forum: Coding Questions
Topic: Simple question on FreeGadget()
Replies: 5
Views: 1367

Simple question on FreeGadget()

Hi there.

May be already answered somewhere in this forum - but did not find it yet.

:?: Does FreeGadget on a ContainerGadget definitely free all gadgets inside the container - even containers in containers in containers etc...?
:?: If there is a complex structure of hundreds of gadgets in a ...
by sverson
Sat Oct 16, 2010 10:35 am
Forum: Coding Questions
Topic: ReadData: LengthToRead limit? [Resolved]
Replies: 6
Views: 1171

Re: ReadData: LengthToRead limit?

This seems to be the 1st severe VirtualBox issue I discovered since I'm running all PB environments inside VirtualBoxes.

The code works fine on the host system but not in the box.