Search found 14 matches

by boop64
Thu Mar 08, 2012 3:29 am
Forum: Coding Questions
Topic: Unmanaged DLL
Replies: 3
Views: 752

Re: Unmanaged DLL

While you are correct OpenLibrary works fine for most DLL's, some DLL's do not have an export table and are not able to be called or interrogated by the normal purebasic functions.

Thanks,

boop64

I can't see any problem with Openlibrary:
PrototypeC MultiplyByTen(numberToMultiply.i)
Global ...
by boop64
Thu Mar 08, 2012 3:02 am
Forum: Coding Questions
Topic: Unmanaged DLL
Replies: 3
Views: 752

Unmanaged DLL

Is there anyway to call functions from an unmanaged DLL inside of purebasic? OpenLibrary doesn't seem to quite be cutting it.

A good example in C++.

http://blogs.msdn.com/b/jonathanswift/a ... 80637.aspx

Edit.... I included the wrong link previously

Thanks,

boop64
by boop64
Wed Feb 17, 2010 12:30 am
Forum: Feature Requests and Wishlists
Topic: ReceiveHTTPFile - Redirect support
Replies: 1
Views: 947

Re: ReceiveHTTPFile - Redirect support

Result = ReceiveHTTPFile(URL$, Filename$)

example
http://nr3.coolverse.jp/_userdata/download/dlranklog.cgi?dl=nr3_beta2

Download Access counter, Redirect then send file. I want to use linux version.

Could you support redirect mode?

Hi oryaaaaa,

You can implement this your self using the tools ...
by boop64
Tue Mar 30, 2004 2:21 am
Forum: Feature Requests and Wishlists
Topic: Apple compiler...
Replies: 13
Views: 3047

Well Shannara... I did a quick search of the topics you were part of and it seems you ask more questions than you seem to help with, unlike some I like to do things for my self and don't apprciate flamers like you attacking others just to make your post total higher, why don't you try contributing ...
by boop64
Sat Mar 27, 2004 9:41 pm
Forum: Feature Requests and Wishlists
Topic: Apple compiler...
Replies: 13
Views: 3047

Search for your self

Well sir, if you had done any searching of your own you would see that I used the forums more before they switched to the myforums.net servers.

Boop64
by boop64
Sat Mar 27, 2004 2:08 am
Forum: Feature Requests and Wishlists
Topic: Apple compiler...
Replies: 13
Views: 3047

Apple compiler...

Hello Fred, I was just currious if it would be possible to compile purebasic for the freebsd based OSX on Machintosh computer or if it would be possible for you to compile purebasic to run on Linux for the Mac.

Again this is just a wish I have been coding with purebasic for about 2 years now and i ...
by boop64
Thu Jan 29, 2004 5:27 am
Forum: Tricks 'n' Tips
Topic: Updated Flexgrid
Replies: 5
Views: 2686

works fine

I comipled the code and recived the same error, but if you comment out the line:

LockColumnSize(a, #PB_LockAll )

:the code will still compile just fine. Nice code I like it.

Boop64
by boop64
Mon Jan 05, 2004 12:23 pm
Forum: Tricks 'n' Tips
Topic: PB/OGRE SetMeshData example
Replies: 21
Views: 10843

Dare2 wrote:Got a visualC++ runtime error under Win2k
Thats odd, I downloaded the dll and compiled the source and it works fine for me. Make sure you have the dll in the correct location.

Boop64
by boop64
Mon Jan 05, 2004 12:09 pm
Forum: Tricks 'n' Tips
Topic: PB/OGRE SetMeshData example
Replies: 21
Views: 10843

Wow, Nice example! Keep up the good work. This looks like it will be very helpfull when I start my next project.

Thanks,
Boop64
by boop64
Mon Jan 05, 2004 10:18 am
Forum: Tricks 'n' Tips
Topic: File Info ~ Created On, Modified On, Last Accessed
Replies: 0
Views: 1458

File Info ~ Created On, Modified On, Last Accessed

Here is some simple code to get simple file info like when the file was created, modified or accessed last. The code is pretty straight forward and uses the following windows API calls I will put them in purebasic terms.

GetFileTime_(FileID , A, B, C)
FileID = Result obtained from using OpenFile ...
by boop64
Sat Jan 03, 2004 4:54 am
Forum: Tricks 'n' Tips
Topic: Simple fullscreen movie
Replies: 4
Views: 2504

All the movie functions should work like normal. It's playing the movie on a windows just as if you created the window your self. So as far as I know movieseek should also work. Again I just did this because I was bored and I saw people were having problems getting fullscreen video. Anyway I hope ...
by boop64
Fri Jan 02, 2004 9:29 am
Forum: Tricks 'n' Tips
Topic: Tools Installer Source
Replies: 6
Views: 4424

Nice code, it's nice to see that someone was able to use my SFX example I posted on the PB resource site a long time ago.

Boop64
by boop64
Fri Jan 02, 2004 9:16 am
Forum: Tricks 'n' Tips
Topic: Simple fullscreen movie
Replies: 4
Views: 2504

Simple fullscreen movie

Code updated for 5.20+

Well, I got bored and was messing around with the playmovie() function to see what funny things i could do with it. I came up with an interesting little program.

There are two window id's you can use in this example to play a movie on. The first one is 'hDesk' this plays ...
by boop64
Fri Nov 21, 2003 3:41 am
Forum: Tricks 'n' Tips
Topic: RAW SOCKETS
Replies: 2
Views: 1912

RAW SOCKETS

Hello, It's been a while since I have posted to the purebasic forums. I notice that some things have changed a little, but anyway on with the questions! ^^

I was wondering if anyone knows of a way to use the raw sockets in windows xp or nt with purebasic... asm code is welcome I started learning ...