Thank youwilbert wrote:It works on OS X x86. It won't work on OS X PPC
I haven't tested it on Linux but I see no reason why it wouldn't work on Linux.
Search found 35 matches
- Sun Jul 31, 2011 4:32 pm
- Forum: Coding Questions
- Topic: Question about asm code...
- Replies: 2
- Views: 748
Re: Question about asm code...
- Sun Jul 31, 2011 3:07 pm
- Forum: Coding Questions
- Topic: Question about asm code...
- Replies: 2
- Views: 748
Question about asm code...
Hi guys.
I have that code in asm:
Procedure.s H(String$)
Global Hash.s
Hash = MD5Fingerprint(@String$, Len(String$))
!mov esi,[v_Hash]
!xor ecx,ecx
!next:
!mov ax,word[esi+ecx]
!cmp ah,0x39
!jbe n2
!sub ah,0x57
!jmp n3
!n2:
!sub ah,0x30
!n3:
!cmp al,0x39
!jbe n4
!sub al,0x57
!jmp ...
I have that code in asm:
Procedure.s H(String$)
Global Hash.s
Hash = MD5Fingerprint(@String$, Len(String$))
!mov esi,[v_Hash]
!xor ecx,ecx
!next:
!mov ax,word[esi+ecx]
!cmp ah,0x39
!jbe n2
!sub ah,0x57
!jmp n3
!n2:
!sub ah,0x30
!n3:
!cmp al,0x39
!jbe n4
!sub al,0x57
!jmp ...
- Sun Apr 17, 2011 4:07 pm
- Forum: Coding Questions
- Topic: WebGadget analog?
- Replies: 6
- Views: 1395
Re: WebGadget analog?
Thanks! It is work 
- Sun Apr 17, 2011 3:57 pm
- Forum: Coding Questions
- Topic: WebGadget analog?
- Replies: 6
- Views: 1395
Re: WebGadget analog?
I do not think this translated into english good. Can you try again with more simple words and adjectives to describe what you want?
OK. I want to block windows with JavaScript errors in WebGadget. How I can do that?
And what you think about that (change IE version for WebGadget. Will it work on ...
OK. I want to block windows with JavaScript errors in WebGadget. How I can do that?
And what you think about that (change IE version for WebGadget. Will it work on ...
- Sun Apr 17, 2011 3:32 pm
- Forum: Coding Questions
- Topic: WebGadget analog?
- Replies: 6
- Views: 1395
WebGadget analog?
Hello! WebGadget use IE5. It is not good, because I see many JS error-windows and other...
Where can I get an analog of WebGadget??? Or how I can configure that?
Thanks.
Where can I get an analog of WebGadget??? Or how I can configure that?
Thanks.
- Sat Mar 12, 2011 11:27 am
- Forum: Coding Questions
- Topic: Image background in ContainerGadget()
- Replies: 1
- Views: 704
Re: Image background in ContainerGadget()
I found source!
Enumeration
#Window_0
EndEnumeration
Enumeration
#Container_0
#Button_2
EndEnumeration
;
Enumeration
#Image_Image_1
EndEnumeration
UseJPEGImageDecoder()
Global bgimage = LoadImage(#PB_Any,"d:\VTcam-1.jpg")
Procedure OpenWindow_Window_0()
If OpenWindow(#Window_0, 502, 56, 400 ...
Enumeration
#Window_0
EndEnumeration
Enumeration
#Container_0
#Button_2
EndEnumeration
;
Enumeration
#Image_Image_1
EndEnumeration
UseJPEGImageDecoder()
Global bgimage = LoadImage(#PB_Any,"d:\VTcam-1.jpg")
Procedure OpenWindow_Window_0()
If OpenWindow(#Window_0, 502, 56, 400 ...
- Sat Mar 12, 2011 9:27 am
- Forum: Coding Questions
- Topic: Image background in ContainerGadget()
- Replies: 1
- Views: 704
Image background in ContainerGadget()
Hello! How I can do image background in ContainerGadget()?
I try use DisableGadget() for ImageGadget (as background), but when I minimize window and maximize it again, gadgets hid...
I try use DisableGadget() for ImageGadget (as background), but when I minimize window and maximize it again, gadgets hid...
- Mon Mar 07, 2011 10:58 am
- Forum: Coding Questions
- Topic: Windows Explorer Style
- Replies: 4
- Views: 1494
Re: Windows Explorer Style
I found that (http://www.purebasic.fr/english/viewtop ... 14&t=22869), but unfortunately, there is not some code ("ERROR 404") 
- Sat Mar 05, 2011 7:15 pm
- Forum: Coding Questions
- Topic: Windows Explorer Style
- Replies: 4
- Views: 1494
Re: Windows Explorer Style
Oh, thanks
I found Pure ExplorerBar BETA. Has anybody source or UserLib?
I found Pure ExplorerBar BETA. Has anybody source or UserLib?
- Fri Mar 04, 2011 6:49 pm
- Forum: Coding Questions
- Topic: Windows Explorer Style
- Replies: 4
- Views: 1494
Windows Explorer Style
Hello! Can anybody help me to create window like that:
http://www.terryscomputertips.com/images/newsletters/windows-explorer-write-cd1.jpg
1) Left panel with gradient.
2) This panel has some lists with functions.
3) Lists have animation.
For example, Bytessence InstallMaker ( http://www.bytessence ...
http://www.terryscomputertips.com/images/newsletters/windows-explorer-write-cd1.jpg
1) Left panel with gradient.
2) This panel has some lists with functions.
3) Lists have animation.
For example, Bytessence InstallMaker ( http://www.bytessence ...
- Tue Dec 07, 2010 11:08 am
- Forum: Coding Questions
- Topic: Is it bug?
- Replies: 4
- Views: 1014
Re: Is it bug?
:shock: exactly the same was asked a few hours ago: http://www.purebasic.fr/english/viewtopic.php?f=4&t=44520
He doesn't seems to remember Verry Verry Well about his own questions than. :wink:
It is question of my friend :D
He asked me - I asked you and he asked you too :D :D
perfect.... thanks ...
He doesn't seems to remember Verry Verry Well about his own questions than. :wink:
It is question of my friend :D
He asked me - I asked you and he asked you too :D :D
perfect.... thanks ...
- Mon Dec 06, 2010 7:18 pm
- Forum: Coding Questions
- Topic: Is it bug?
- Replies: 4
- Views: 1014
Is it bug?
Hello!
source code:
l=100
Debug (l>192)
Debug (100>192)
Result:
192
Is it a bug?
How it can be used in expressions?
For example:
a=a+(b>100)*30
This expression doesn't work.
source code:
l=100
Debug (l>192)
Debug (100>192)
Result:
192
Is it a bug?
How it can be used in expressions?
For example:
a=a+(b>100)*30
This expression doesn't work.
- Tue Nov 09, 2010 11:53 am
- Forum: Game Programming
- Topic: My StringGadget2D() and TextGadget2D()
- Replies: 0
- Views: 1150
My StringGadget2D() and TextGadget2D()
From Russia with love! :D
My GUI-library with 2 gadgets. Without 3D!
Some procedures for working with that gadgets (FreeGadget2D(), HideGadget2D(), SetGadgetText2D, GetGadgetText2D).
In future I will add EventGadget2D() :D
File TextLibrary.pbi
Structure Gadgets
Gadget.l
x.l
y.l
Width.l ...
My GUI-library with 2 gadgets. Without 3D!
Some procedures for working with that gadgets (FreeGadget2D(), HideGadget2D(), SetGadgetText2D, GetGadgetText2D).
In future I will add EventGadget2D() :D
File TextLibrary.pbi
Structure Gadgets
Gadget.l
x.l
y.l
Width.l ...
- Sun Nov 07, 2010 6:54 pm
- Forum: Game Programming
- Topic: Gadget without InitEngine3D()?
- Replies: 6
- Views: 2344
Re: Gadget without InitEngine3D()?
PureLust, #NULL, thanks! I could not find this topic here 
- Sun Nov 07, 2010 3:00 pm
- Forum: Game Programming
- Topic: Gadget without InitEngine3D()?
- Replies: 6
- Views: 2344
Re: Gadget without InitEngine3D()?
Cool! I had been found!
http://www.purebasic.fr/german/viewtopi ... 0&start=20
http://www.purebasic.fr/german/viewtopi ... 0&start=20