Search found 10 matches

by Angelo
Wed Jul 05, 2017 11:57 am
Forum: Coding Questions
Topic: Strange behaviour of combobox-gadget
Replies: 5
Views: 1994

Re: Strange behaviour of combobox-gadget

I assume. It seems that the combobox gadget doesn't work correctly anymore starting with PB 5.50.
by Angelo
Wed Jun 28, 2017 6:35 pm
Forum: Coding Questions
Topic: Strange behaviour of combobox-gadget
Replies: 5
Views: 1994

Re: Strange bevaviour of combobox-gadget

Hi KPeters, I should mention the following:
The combobox dropdown functionality is not broken, it is intentionally turned off by the code.
When you type 'An', then 'Andrew' is displayed and highlighted. So, I would expect the highlighted 'Andrew' to be replaced by C (the same procedure as in text ...
by Angelo
Wed Jun 28, 2017 3:16 pm
Forum: Coding Questions
Topic: Strange behaviour of combobox-gadget
Replies: 5
Views: 1994

Strange behaviour of combobox-gadget

Using PB 5.40 the attached code is working fine.
For example:
1. When I type 'An', then 'Andrew' is displayed.
2. The following cursor down action leads to 'Anna'.
3. Finally, typing of the letter 'c' results in 'Carol'.
Great - everything is okay!

But using PB 5.50 or PB 5.60 instead produces a ...
by Angelo
Fri Mar 13, 2015 10:21 am
Forum: Coding Questions
Topic: Word selection
Replies: 0
Views: 1204

Word selection

To select a word in a document (i. e. doc, pdf, txt) you can use the combination (ctrl | shift | left arrow). So far, I used the following code, which I compiled to an exe-file and assigned a shortcut to it.

XIncludeFile "COMatePLUS.pbi"
oScript.COMateObject
oScript = COMate_CreateObject("WScript ...
by Angelo
Thu Jul 11, 2013 8:05 am
Forum: Tricks 'n' Tips
Topic: LibZPlay wrapper (updated)
Replies: 18
Views: 6633

Re: LibZPlay wrapper (updated)

Hi, Erion! :D :D Now all zplay-functions work without error!!!! You had the right suspicion: it was the libzplay.lib which caused trouble. Many thanks for the improved version!!

Now I can start to work on a recorder. By the way, do you have some experience in using libzplay for creating a recording ...
by Angelo
Wed Jul 10, 2013 10:08 pm
Forum: Tricks 'n' Tips
Topic: LibZPlay wrapper (updated)
Replies: 18
Views: 6633

Re: LibZPlay wrapper (updated)

Hi, Erion, I'm very grateful for your support. I appreciate it very much. I'll try tomorrow due to the fact that it's one hour to midnight (I live in Berlin), but certainly I will give you a feedback. I have the strong feeling that a solution for my problem is near. Good night und til tomorrow ...
by Angelo
Wed Jul 10, 2013 8:14 pm
Forum: Tricks 'n' Tips
Topic: LibZPlay wrapper (updated)
Replies: 18
Views: 6633

Re: LibZPlay wrapper (updated)

Hi Erion,

I coded a mp3-player with many, many libzplay-functions (thanks again to you guys who made this wonderful include). For example, I implemented: setting of tempo, setting of volume, seek position, display of vu-data, determination of the audio length. It all works perfect.

Then I tried ...
by Angelo
Wed Jul 10, 2013 5:15 pm
Forum: Tricks 'n' Tips
Topic: LibZPlay wrapper (updated)
Replies: 18
Views: 6633

Re: LibZPlay wrapper (updated)

I'm using x86-Version of PB 5.11 under Windows XP. Could it make the difference?
by Angelo
Wed Jul 10, 2013 3:26 pm
Forum: Tricks 'n' Tips
Topic: LibZPlay wrapper (updated)
Replies: 18
Views: 6633

Re: LibZPlay wrapper (updated)

Erion, thanks for your reply. But this is not the reason, because I use the x86-Version of PB. What is rather interesting is the fact, that all the functions you added to the include produce this linker error.

By the way, I just posted the following in the german forum: There's a little typo in TS ...
by Angelo
Tue Jul 09, 2013 10:31 am
Forum: Tricks 'n' Tips
Topic: LibZPlay wrapper (updated)
Replies: 18
Views: 6633

Re: LibZPlay wrapper (updated)

Great work from Erion and TS-Soft. Unfortunately, I got one problem. The following code produces two linker errors of the type "unresolved external symbol":

XIncludeFile "libzplay.pbi"

hZPlay = CreateZPlay()

zplay_SetWaveInDevice(hZPlay, 0)
num = zplay_EnumerateWaveIn(hZPlay)

I cannot see the ...