Search found 40 matches

by Heis Spiter
Sat Sep 20, 2008 6:02 pm
Forum: Announcement
Topic: PureBasic 4.30 Beta1 released!
Replies: 107
Views: 68639

Hi!
Good job, this release looks really promising :). Except for OnError lib. IMO it looks more like a regression than like a progress. Especially not being able to resume execution after an exception.
by Heis Spiter
Tue Apr 15, 2008 11:16 pm
Forum: Linux
Topic: uname_()
Replies: 2
Views: 1782

Thanks! It works perfectly.
by Heis Spiter
Tue Apr 15, 2008 7:41 pm
Forum: Linux
Topic: uname_()
Replies: 2
Views: 1782

uname_()

Hi!
I need some help about the use of the API uname_(). I tried to use that source code, without success (Invalid memory access on the first field debug).
Structure utsname
sysname.s
nodename.s
release.s
version.s
machine.s
domainname.s
EndStructure
name.utsname

Debug uname_(@name)
Debug ...
by Heis Spiter
Tue Jul 24, 2007 6:30 am
Forum: Coding Questions
Topic: EditorGadget scroll bar bug
Replies: 5
Views: 1514

tinman wrote:That happens in WordPad under XP so it doesn't look like a PureBasic only issue. You need to change the options to not wrap to see it.
That's strange :?. Before doing my bug report, I've tried with Notepad, and it didn't do that. Scrolling was blocked when there wasn't text anymore to display...
by Heis Spiter
Fri Jun 29, 2007 9:34 am
Forum: Coding Questions
Topic: EditorGadget scroll bar bug
Replies: 5
Views: 1514

EditorGadget scroll bar bug

Hi there,

Here is a small, present in each PureBasic release. When you use a text that is too long, in an EditorGadget, an horizontal scroll bar is displayed. And we can "browse" the text using it in two ways. Move bar, or click arrow. And the bug happens when using right arrow. Scroll bar is ...
by Heis Spiter
Sat Feb 25, 2006 11:50 pm
Forum: Coding Questions
Topic: [PB4 Beta 4] test values.d failed
Replies: 1
Views: 984

[PB4 Beta 4] test values.d failed

I was trying to do a program who tests Intel's processor (Bugs found by Tim Coe (and co :lol:)).
I've done it with float like that and it works. OpenConsole()
res.f = 4195835/3145727
PrintN(StrF(res))
If res.f <> 1.3338204491362411
PrintN("First test failed.")
EndIf
Repeat
Delay(1)
Until Inkey()
B ...
by Heis Spiter
Sat Oct 29, 2005 10:58 am
Forum: Announcement
Topic: COM Programming - List of IID and CLSID values
Replies: 7
Views: 6631

It's a nice tool, but a class is absent (CLSID) : IOleObject.
Moreover this class isn't in PureBasic. For people who wants to use it Interface IOleObject
QueryInterface(a,b)
AddRef()
Release()
SetClientSite(a)
GetClientSite(a)
SetHostNames(a,b)
Close(a)
SetMoniker(a,b)
GetMoniker(a,b,c ...
by Heis Spiter
Wed Oct 26, 2005 1:04 pm
Forum: Applications - Feedback and Discussion
Topic: PBOSL - A OpenSource Library-Collection for PureBasic
Replies: 233
Views: 407739

GeoTrail wrote:I'd also like to be able to add a service, but not as automatic , but to run manually when needed.
When you install your service, use this constant

Code: Select all

#SERVICE_DEMAND_START   = $00000003
instead this constant

Code: Select all

#SERVICE_AUTO_START     = $00000002
by Heis Spiter
Wed Oct 26, 2005 11:54 am
Forum: Applications - Feedback and Discussion
Topic: PBOSL - A OpenSource Library-Collection for PureBasic
Replies: 233
Views: 407739

Ok. When you have created a service with the lib, your service has four options : Start, Pause, Resume, Stop. My programme can't support Pause and Resume. And I've seen that Avast! has only two options : Start, Stop. So, I would like to know how I can do to have only Start and Stop.
by Heis Spiter
Wed Oct 26, 2005 11:03 am
Forum: Applications - Feedback and Discussion
Topic: PBOSL - A OpenSource Library-Collection for PureBasic
Replies: 233
Views: 407739

No :lol:. That explains all ;). I'm a bit absent-minded :?.
I've too a suggestion to do. My program doesn't support Pause/Resume. And I've seen that Avast service doesn't purpose those options. How can I do to delete those options to my service ? (After install, or during install)
by Heis Spiter
Wed Oct 26, 2005 9:56 am
Forum: Applications - Feedback and Discussion
Topic: PBOSL - A OpenSource Library-Collection for PureBasic
Replies: 233
Views: 407739

You're right. I've some problems with mathematics words in English :oops:. If someone can correct it in PBOSL ;).

About bugs, I think I've found a bug in NTService. The function removeservice doesn't work. It's strange ! I would delete a service, so I use this function that didn't work. To see ...
by Heis Spiter
Sat Jul 09, 2005 11:47 am
Forum: Off Topic
Topic: Favorite firewall and antivirus?
Replies: 57
Views: 10952

Oh ! I'm happy ! I use the same Firewall and Anti-virus as GeoTrail. I've no problems with them. By the way, I've decided to use Sygate because it was the last Firewall that I've tested. The previous one don't work, or don't make that I want. And, Kerio crashed my computer (seems not to love Apache2 ...
by Heis Spiter
Fri Jul 08, 2005 1:02 pm
Forum: Announcement
Topic: PureWinLin - Linux emulated on Windows via QEMU
Replies: 70
Views: 24381

I've tested it. It works fine ! It's the first Linux emulator that works on my computer ! :D. I've also tested PureBasic :wink:. It seems to work... Now, I'll try to port my programs under Linux :).
Good Job (007 :lol: )
by Heis Spiter
Tue Jun 28, 2005 8:27 am
Forum: Announcement
Topic: Bird Chat
Replies: 3
Views: 3591

Bird Chad looks real interesting, but I can't get the latest version of the client to compile right. I get an error about Writestringtoregistry(), so I took out the section that writes to the registry. Now, it compiles, but when I run the EXE, it just quickly exits. I'm using the latest of all ...
by Heis Spiter
Sun Jan 30, 2005 2:08 pm
Forum: Coding Questions
Topic: Window hooking?
Replies: 21
Views: 10634

I'll try to convert Listing 1. But, I'm not sure I'll managed to... :?