Search found 34 matches

by Jose
Tue Oct 12, 2004 12:18 pm
Forum: Coding Questions
Topic: DLL created in PB has Paurebasic.DLL name
Replies: 3
Views: 1552

@moonshine, thanks for the pointers, I used resource hacker and modified the "purebasic.dll" and all still works.

@Fred, it would be good to be able to create the DLL with the right name imbeded, thus saving us having to hack the resulting file.

I look forward to your solution. :lol:
Thanks
by Jose
Wed Oct 06, 2004 6:38 pm
Forum: Coding Questions
Topic: DLL created in PB has Paurebasic.DLL name
Replies: 3
Views: 1552

DLL created in PB has Paurebasic.DLL name

Hi,

When you create a DLL, with editor or command line, the resulting DLL file will be called what you specify as the output file;

sampledll.pb -> sampledll.dll

Up to this point all is OK;

If you look inside the DLL file with a Hex editor, and search for "PureBasic.DLL" you will find this string ...
by Jose
Thu Jul 08, 2004 4:22 pm
Forum: Tricks 'n' Tips
Topic: permanent process remover (NT,W2k,XP)
Replies: 25
Views: 12129

Thanks Rings, good idea.
by Jose
Thu Jul 08, 2004 9:26 am
Forum: Off Topic
Topic: Where did you start programming?
Replies: 80
Views: 17716

ZX Sepctrum, way back :cry:
by Jose
Mon Jul 05, 2004 9:39 am
Forum: Announcement
Topic: PureBasic 3.91 for Windows released
Replies: 35
Views: 11763

Thank s Fred, all the hard work is always appreciated. :wink:
by Jose
Wed Jun 23, 2004 10:16 am
Forum: Feature Requests and Wishlists
Topic: if i=1 then b=5
Replies: 18
Views: 5984

on the question of "I miss this" IF

Code: Select all

iif(<exp>, true , false)
Yes, a simple function to write, but nice to have it coded and optimized in ASM.... :lol:
by Jose
Mon Jun 21, 2004 8:08 pm
Forum: Coding Questions
Topic: Using IHTMLDocument2
Replies: 16
Views: 4219

Well done Andrew, any chance a sample bit of code.. Sure others would like to solve this one too :lol:
by Jose
Tue May 18, 2004 6:15 pm
Forum: Coding Questions
Topic: WebGadget No TAB works
Replies: 20
Views: 10328

@Sparkie
Thanks for the pointer, do know how to do what the doc says in PB?

Would be cool to solve this problem and post it in tricks :lol:
by Jose
Mon May 10, 2004 3:16 pm
Forum: Coding Questions
Topic: Bandwidth Control
Replies: 10
Views: 2828

@luke101
Sounds like what you want is a proxy server, this you could create using PB, but a lot of knwledge and work to do it, its not just single network commands etc.

Search for FREE proxy servers on the Internet.

hope that helps
by Jose
Sun May 02, 2004 11:33 pm
Forum: Announcement
Topic: PureBasic 3.91 Beta 1
Replies: 52
Views: 19468

Thanks Fred, 8)
by Jose
Fri Apr 30, 2004 6:10 pm
Forum: Coding Questions
Topic: New source for unpack packed files in 3.90
Replies: 5
Views: 1772

Need to be using version PB 3.90
by Jose
Fri Apr 30, 2004 8:15 am
Forum: Off Topic
Topic: Getting Married?
Replies: 52
Views: 10676

@num3, ok you have to post that photo now :lol:
by Jose
Fri Apr 30, 2004 8:12 am
Forum: Feature Requests and Wishlists
Topic: [Implemented] Multi dimensional array support in structures!
Replies: 23
Views: 7600

@oldefoxx

I read with interest your posts.
you have a lot of time on your hands, or type realy fast :lol:

some code here of examples in difference between PB structure and what you see as VB type and why these are good, more code... :wink:

Just a thought, no offence intended.
by Jose
Fri Apr 30, 2004 7:50 am
Forum: Coding Questions
Topic: New source for unpack packed files in 3.90
Replies: 5
Views: 1772

Try this edit


Procedure UncompressFile(FileName$)
Protected lMemOne.l, lMemTwo.l
If ReadFile(0, FileName$)
FileLength = Lof()
FileSeek(FileLength-4)
OriginalLenght=ReadLong()
*lMemOne = AllocateMemory(FileLength)
If *lMemOne <> 0
*lMemTwo = AllocateMemory(OriginalLenght+4)
If *lMemTwo ...
by Jose
Mon Apr 26, 2004 6:01 pm
Forum: Coding Questions
Topic: How to find the height/width for gif or jpg file
Replies: 2
Views: 1278

Thanks einander, I figured that one out after doing some testing, but what I really wanted was a windows API way to tell the height/width of any image, I just want the info, dont need to use the image files.

Anyone know how to use API GetImageInfo() or something like it to get image file height ...