Search found 15 matches

by zekitez@lycos.com
Sat Dec 11, 2010 3:45 pm
Forum: Coding Questions
Topic: TreeGadget - Drag'n'Drop - scroll automatically
Replies: 3
Views: 1372

Re: TreeGadget - Drag'n'Drop - scroll automatically

Thanks srod :D , that's a great start for me, I should be able to adapt it :) .

Thank you again. :D
Just what I needed to get started and so simple (when you know how to ... ).
I only removed some parts from the example which, I assume, were 'crude parts'.

Declare.i DragCallBack(Action ...
by zekitez@lycos.com
Sun Nov 14, 2010 7:37 pm
Forum: Tricks 'n' Tips
Topic: Capturing Audio [COMPLETE SOURCE]
Replies: 67
Views: 58853

Re: Capturing Audio [COMPLETE SOURCE]

Here is the code for PB 4.50
I don't have sndvol32 in Windows7...
It just needs some clamping of yy between + and - (height / 2).
by zekitez@lycos.com
Wed Oct 27, 2010 7:06 pm
Forum: Announcement
Topic: Screenshots for WebSite + Box
Replies: 102
Views: 171898

Re: Screenshots for WebSite + Box

http://zekitez.tweakdsl.nl/
Image

Translate KingofSat html pages into XML
Image
by zekitez@lycos.com
Sun Mar 07, 2010 11:21 am
Forum: Coding Questions
Topic: XML example
Replies: 4
Views: 2241

Re: XML example

The example seems to work just fine until you try to save the XML with SaveXML.
CreateXML(#PB_Any) doesn't return a pointer. At least not with version 4.41 .


Global xml = 0
Structure Book
title.s
publisher.s
pages.l
binding.s
price.s
rating.s
genre.s
series.s
EndStructure

Procedure ...
by zekitez@lycos.com
Thu May 17, 2007 7:08 am
Forum: The PureBasic Form Designer
Topic: [FIXED] Visual Designer doesn't work under Vista?
Replies: 18
Views: 15820

Re: Visual Designer doesn't work under Vista?


Visual Designer (Alpha 15 build 651) just doesn't want to play under windows Vista (Premium).

It opens OK, let's you set the size of the page, but once you select a gadget and try and draw it on the empty document it freezes for several minutes before allowing you to add another gadget.


I ...
by zekitez@lycos.com
Sun Oct 29, 2006 8:28 am
Forum: General Discussion
Topic: XIncludeFile limitations or ...
Replies: 4
Views: 1774

Not a bug.
....
No matter how you xinclude your files, some procedures will come out in front of the other procedures, and you can't expect all procedures to be available from the first one.

:oops: You are right. :lol: It is kind of chicken and egg problem ( http://en.wikipedia.org/wiki/Chicken ...
by zekitez@lycos.com
Sat Oct 28, 2006 6:02 pm
Forum: General Discussion
Topic: XIncludeFile limitations or ...
Replies: 4
Views: 1774

Don't xinclude a.pb if this is your main file. Since it was not included before (after all it's the main file) it will be included once at the first xinclude of it.

:oops: My post was not complete. I have updated it.
There is one main.pb. None of the procedures in main.pb is called from a.pb ...
by zekitez@lycos.com
Fri Oct 27, 2006 7:15 pm
Forum: General Discussion
Topic: XIncludeFile limitations or ...
Replies: 4
Views: 1774

XIncludeFile limitations or ...

I have some code split up in several files. The structure of each file looks like the example.
Each file includes all other files using "XIncludeFile" except itsself.
The code is not split in a tree-structure but split into parts that group the code together that belongs together like the code for ...
by zekitez@lycos.com
Wed May 10, 2006 6:25 pm
Forum: Coding Questions
Topic: how to change a submenu title in PB4 ?
Replies: 3
Views: 1128

about how to change the submenu text

No it did not, whatever I tried it did not change anything.

What did help was simply use
FreeMenu(#Menu)
and then build the whole menu again starting with
CreateMenu(#Menu,....)

Thanks anyway.
by zekitez@lycos.com
Mon May 08, 2006 7:35 pm
Forum: Coding Questions
Topic: how to change a submenu title in PB4 ?
Replies: 3
Views: 1128

how to change a submenu title in PB4 ?

I want to change the text of a menu. PB4 has:

- SetMenuTitleText to change the text of a menu title and
- SetMenuItemText to change the text of a menu item but

how do you change the text of the submenu ?
A submenu has no ID.
by zekitez@lycos.com
Sat Apr 08, 2006 2:11 pm
Forum: Coding Questions
Topic: SendNetworkString then delay then SendNetworkFile problem
Replies: 2
Views: 1569

Re: SendNetworkString then delay then SendNetworkFile proble

I managed to get it working in PB4.

1st I added a header and 2nd some kind of receiver tell back.
Found some code of LARS which added #PB_NetworkEvent_Disconnect to the NetworkClientEvent.

Anybody who wants to have a look:
http://home.wanadoo.nl/f.nijhuis/clientserver.zip
by zekitez@lycos.com
Sat Feb 04, 2006 1:56 pm
Forum: Coding Questions
Topic: SendNetworkString then delay then SendNetworkFile problem
Replies: 2
Views: 1569

SendNetworkString then delay then SendNetworkFile problem

SendNetworkString and SendNetworkFile
ReceiveNetworkData and ReceiveNetworkFile

I am trying to set up a client/server exchange file protocol using
SendNetworkString SendNetworkFile, ReceiveNetworkData and ReceiveNetworkFile.

First I send a string containing the file name using SendNetworkString ...
by zekitez@lycos.com
Thu Dec 08, 2005 2:27 pm
Forum: PureFORM & JaPBe
Topic: PureBUILD - Editor plugin [Build & Backup support]
Replies: 22
Views: 48980

Purebuild adds 16 extra lines

Ehh.. since I only want a buildnumber per project (exe) and not per file I just made my own version to add a buildnumber. I make dayly backups of the project. At least errors have now no offset.



; This works fine if you devellop each program (exe) in a seperate directory
;
; Put in the main file ...
by zekitez@lycos.com
Thu Dec 08, 2005 11:03 am
Forum: PureFORM & JaPBe
Topic: PureBUILD - Editor plugin [Build & Backup support]
Replies: 22
Views: 48980

Purebuild causes a 16 line offset on every compile error

I use purebasic 3.94 and SmartUpdate weekly thus Purebasic is up to date.

When I use Purebuild I get a 16 line offset on every error reported by the Compiler. The error is in line 13 but the compiler reports line 29.

Doesn't matter if I register Purebuild automatically or manually.

Unregistering ...
by zekitez@lycos.com
Fri Nov 11, 2005 6:51 pm
Forum: General Discussion
Topic: Forum administrator & moderator not reachable
Replies: 7
Views: 1895

Forum administrator & moderator not reachable

:evil:
I have tried to register to this forum several times.
I have registered as member zekitez and IKKE.
For some reason the activation messages don't arrive
in my mailbox at @home.nl.
Probably the spam filter at @HOME stops it or ...?
Administrator and moderator of this forum cann't be ...