Search found 27 matches

by Kanati2
Fri Jan 19, 2007 3:42 am
Forum: Off Topic
Topic: somthing... else...
Replies: 1
Views: 804

somthing... else...

Graham has finally released cobra...

http://www.squeakyduck.co.uk

For those that care... those that don't... never mind. :)
by Kanati2
Thu Jul 07, 2005 5:14 am
Forum: Coding Questions
Topic: Event issue
Replies: 5
Views: 1594

Thanks. But it does look like I'm getting the info I need now. Thanks. :)
by Kanati2
Wed Jul 06, 2005 10:51 pm
Forum: Coding Questions
Topic: Event issue
Replies: 5
Views: 1594

Ok... I'm not sure if it was the initkeyboard() stuff that was stopping it from working or the examinekeyboard... or... but anyway I am recieving events now.

Now I just need to figure out how to interpret the keyboard events... Which seem to be 256,257,258... But what key? That's the question. :)
by Kanati2
Wed Jul 06, 2005 10:19 pm
Forum: Coding Questions
Topic: Event issue
Replies: 5
Views: 1594

hrm... Yes I do but I also have InitKeyboard() and InitSprite() prior to that call.

I'll do a bit of experimenting here... Thanks for your test.
by Kanati2
Wed Jul 06, 2005 8:55 pm
Forum: Coding Questions
Topic: Event issue
Replies: 5
Views: 1594

Event issue

If I have the following code... Where I create a windowed screen...

window = OpenWindow(#pb_any, 0,0, DesktopWidth(0), DesktopHeight(0), #PB_Window_BorderLess,"")

If window = 0
End
EndIf

screen = OpenWindowedScreen(WindowID(), 0, 0, DesktopWidth(0), DesktopHeight(0), 1, 0, 0)

If screen = 0 ...
by Kanati2
Wed Jul 06, 2005 3:34 am
Forum: Coding Questions
Topic: ExamineDirectory question
Replies: 1
Views: 922

ExamineDirectory question

I want to do a directory listing of multiple patterns at once... possible?

In vb you would normally ask in a file requester for "*.mpg|*.avi|*.mov" if I remember correctly. Is this possible in pb or do I need to roll my own handler for that?
by Kanati2
Fri Jul 01, 2005 5:35 pm
Forum: Coding Questions
Topic: How change value of field in access?
Replies: 8
Views: 3856

I found it... stupid mistake. I encapsulated the getcurrentdir_ call into a procedure and forgot to actually pass it back out of the procedure. So the MDB_Connect command never connected... THUS hMDB never got set and I never even dropped into the query.

Smack me a few times. I deserve it.

Also ...
by Kanati2
Thu Jun 30, 2005 11:32 pm
Forum: Coding Questions
Topic: How change value of field in access?
Replies: 8
Views: 3856

Maybe you can help me while you are at it... I'm using your library and have the following code...


MDB_Create(curdir+"SMP")
hMDB=MDB_Connect(curdir,"SMP","","")

If hMDB
qry$ = "CREATE TABLE Prefs([id] autoincrement, [GUIX1] long, [GUIX2] long, [GUIY1] long, [GUIY2] long,"
qry$ + "[VIDX1 ...
by Kanati2
Thu Jun 30, 2005 6:24 pm
Forum: Announcement
Topic: ExDatabase Library OpenSource
Replies: 18
Views: 7607

Guess it doesn't matter much... the download is broken.
by Kanati2
Thu Jun 30, 2005 6:23 pm
Forum: Announcement
Topic: ExDatabase Library OpenSource
Replies: 18
Views: 7607

Can I use DSNLess connections? I won't use a database command-pack where I have to configure a DSN. It's a useless waste. Absolutely nothing I create in VB/C++/.NET uses DSNs, nor should it.
by Kanati2
Mon Mar 21, 2005 11:32 pm
Forum: Announcement
Topic: Purebasic Linux IDE beta1 released
Replies: 94
Views: 30795

windows version........... when? :)
by Kanati2
Wed Jan 26, 2005 8:36 pm
Forum: Windows
Topic: PB4
Replies: 11
Views: 4373

PB4

Been a while since I've wandered in here and remembered hearing rumors of purebasic 4 a while back and wondered what the status was on that, what was being considered for additions, etc. Just curious...

Kanati
by Kanati2
Sat Oct 02, 2004 4:59 pm
Forum: Off Topic
Topic: Anyone used Bochs?
Replies: 5
Views: 2138

not to run linux... but I've used it to run dos for old games... But it don't work nearly as well as DoxBox does for that. Dosbox not only emulates a machine but you can speed up and slow down the cpu. I think it emulates a 386 to start with but you can make it go as fast as your cpu can handle ...
by Kanati2
Sat Oct 02, 2004 4:33 pm
Forum: Off Topic
Topic: Good ICO maker
Replies: 10
Views: 3402

I'm quite partial to iconcool myself. Don't know what everyone else suggested but that's my choice. :)
by Kanati2
Mon Aug 23, 2004 1:29 am
Forum: General Discussion
Topic: About DLL and other programming langage.
Replies: 10
Views: 3803

The wrapper thing means that you cannot simply wrap PBs commands, create a dll for use in (for example) blitzbasic and distribute it for use by other people in their programs.

If you want to wrap the entire language for your OWN use in a dll with blitzbasic that is alright. It's only when you ...