Search found 11 matches

by funk.munich
Tue Dec 06, 2011 10:11 am
Forum: Mac OSX
Topic: Using ProgramParameter
Replies: 6
Views: 5655

Re: Using ProgramParameter

Hi Shardik,

many thanks ... you're right ... in this way it works as expected.
I tried to combine GUI with Console and add the wrong information into the code.

Thx for your help,
Daniel
by funk.munich
Sun Dec 04, 2011 11:49 am
Forum: Mac OSX
Topic: Using ProgramParameter
Replies: 6
Views: 5655

Re: Using ProgramParameter

Hi everybody,

thanks for your help however both suggestion from you does not help :-(
Did it work on your system (Mac OS)?

Thx,
Daniel
by funk.munich
Sat Dec 03, 2011 6:29 pm
Forum: Announcement
Topic: Cryptographic Hash Functions Collection (IncludeFile)
Replies: 30
Views: 19166

Re: Cryptographic Hash Functions Collection (IncludeFile)

Hi everybody,

do you know where I can download the sources?

Thx in advance,
Daniel
by funk.munich
Sat Dec 03, 2011 6:17 pm
Forum: Announcement
Topic: PureHash Library - Support 40+ hash algorithm
Replies: 2
Views: 3830

Re: PureHash Library - Support 40+ hash algorithm

Hi ward,

is it still possible to get this sources from you?

Thx in advance,
Daniel
by funk.munich
Sat Dec 03, 2011 3:44 pm
Forum: Mac OSX
Topic: Using ProgramParameter
Replies: 6
Views: 5655

Using ProgramParameter

Hi everybody,

do someone know how I can use ProgramParameter under Mac OS (10.7.2).
What I did:

(1) Create stupid program

For i = 0 To CountProgramParameters()
PrintN(ProgramParameter(i))
Next

(2) Compile Options
- Executable Format = Console

(3) PureBasic has created a "test.app"

drwx ...
by funk.munich
Sun Apr 30, 2006 4:46 pm
Forum: Coding Questions
Topic: Detect events in other apps?
Replies: 13
Views: 11745

Hi Sparkie,

it's long time ago that you have entered this code but only now I have read it
and maybe you can give me a short assist.

I would like to check buttons but I don't find any information about it.

Do you know if it is possible? And if yes, where I can find more information
about it ...
by funk.munich
Thu Apr 27, 2006 10:22 am
Forum: Coding Questions
Topic: Create PanelGadget about DLL
Replies: 13
Views: 2512

Hi srod,

now it works. Great! :lol:
I modify a little bit more the code and now I can create new Panel
and include new Gadgets on this panel, too.

Many thanks,
Daniel

EXE:

Procedure UpdateGadgetPointer(Library.l)
Shared MainPointer.l
!EXTRN _PB_Gadget_ObjectsArea
!MOV dword EAX, [_PB_Gadget ...
by funk.munich
Thu Apr 27, 2006 8:34 am
Forum: Coding Questions
Topic: Create PanelGadget about DLL
Replies: 13
Views: 2512

Hi,

if I am honest ... I don't understand it at the moment.
I should enter the WIN API call to exe:


#panel = 5
OpenWindow(0,0,0,600,260,#PB_Window_SystemMenu|#PB_Window_ScreenCentered,"")
CreateGadgetList(WindowID(0))

PanelGadget(#panel,8,8,306,203)
AddGadgetItem (#panel,-1,"Panel 0 ...
by funk.munich
Thu Apr 27, 2006 8:05 am
Forum: Coding Questions
Topic: Create PanelGadget about DLL
Replies: 13
Views: 2512

Hi srod,

do you mean that I must enter this code in the DLL?
If yes ... I tried it but without any success.

Thanks,
Daniel
by funk.munich
Thu Apr 27, 2006 7:25 am
Forum: Coding Questions
Topic: Create PanelGadget about DLL
Replies: 13
Views: 2512

Hi together,

many thanks for the fast response.

Dear srod,

can you tell me which WIN API function(s) I need?

Dear Konne,

what's wrong with the name? It's only a name and I had thought that's
the forum exist to get help from other people - or not?

Thanks everyone,
Daniel
by funk.munich
Wed Apr 26, 2006 9:34 pm
Forum: Coding Questions
Topic: Create PanelGadget about DLL
Replies: 13
Views: 2512

Create PanelGadget about DLL

Hi together,

with the following code I can create e.g. TextGadget from DLL to my
initialize window.

Code for EXE:

OpenWindow(0,0,0,600,260,#PB_Window_SystemMenu|#PB_Window_ScreenCentered,"")
CreateGadgetList(WindowID(0))

container = ContainerGadget(#PB_Any,0,0,295,170)
CloseGadgetList ...