Search found 103 matches

by sirrab
Mon Feb 08, 2016 8:23 pm
Forum: Coding Questions
Topic: gadgetid of a child window
Replies: 2
Views: 1016

Re: gadgetid of a child window

Sorry for the delay in replying, thanks I will take a look :)
by sirrab
Sat Feb 06, 2016 11:19 pm
Forum: Coding Questions
Topic: gadgetid of a child window
Replies: 2
Views: 1016

gadgetid of a child window

hi,

can someone point me to a post or give me an example of getting the handle of a gadget in a child window of an another programs window please

thanks :)
by sirrab
Sun Aug 16, 2015 11:23 am
Forum: Game Programming
Topic: simple maze game
Replies: 4
Views: 4619

Re: simple maze game

Thanks for the example, something for me to play with and learn :D
by sirrab
Sun Aug 16, 2015 6:18 am
Forum: Game Programming
Topic: learning about sprites
Replies: 6
Views: 4503

Re: learning about sprites

HI,

At first I kept track of each sprite in a structured list but it was slow going though the list each time, I would be very thankful for some info on the better way of doing it.

Thank You.
by sirrab
Sun Aug 16, 2015 1:15 am
Forum: Game Programming
Topic: learning about sprites
Replies: 6
Views: 4503

learning about sprites

I have been playing around with sprites, but when ever i try and move the character sprite it always shows a collision even when its miles from the one sprite im trying to detect. Can anyone tell me what im doing wrong please :)

UseJPEGImageDecoder()

Structure mapdata
blocktype.s
blockx.i ...
by sirrab
Sat Aug 15, 2015 12:22 pm
Forum: Game Programming
Topic: simple maze game
Replies: 4
Views: 4619

simple maze game

d
by sirrab
Wed Jul 22, 2015 11:31 pm
Forum: Coding Questions
Topic: moving mouse pointer and entering text
Replies: 4
Views: 1972

Re: moving mouse pointer and entering text

Thanks Shardik !

will have a play :)
by sirrab
Wed Jul 22, 2015 10:49 am
Forum: Coding Questions
Topic: moving mouse pointer and entering text
Replies: 4
Views: 1972

Re: moving mouse pointer and entering text

HI,

I want to fill in a form on a website and then click to login.

Thanks :)
by sirrab
Tue Jul 21, 2015 8:41 am
Forum: Coding Questions
Topic: moving mouse pointer and entering text
Replies: 4
Views: 1972

moving mouse pointer and entering text

HI :)

question.

Is it possible to move the mouse pointer and enter text in a webgadget ?

Thanks :)
by sirrab
Fri Sep 26, 2014 9:34 am
Forum: Coding Questions
Topic: editing a tree gadget
Replies: 21
Views: 6891

Re: editing a tree gadget

Thanks everyone !!

Gad to see its not just me learning something :D

Craig
by sirrab
Thu Sep 25, 2014 1:27 pm
Forum: Coding Questions
Topic: editing a tree gadget
Replies: 21
Views: 6891

editing a tree gadget

Hi All,

Can anyone tell me if it is possible to edit tree gadget items? IE have a button to press to edit the selected tree gadget item :)

Thanks for reading :)

Craig
by sirrab
Sun Feb 09, 2014 10:20 am
Forum: Coding Questions
Topic: Networking question
Replies: 9
Views: 3165

Re: Networking question

Sorry about the delay in replying. No I haven't got it working. Been a bit busy of late. will have to try and have a play with it this week ! :)

Craig
by sirrab
Tue Jan 21, 2014 5:04 am
Forum: Coding Questions
Topic: Networking question
Replies: 9
Views: 3165

Re: Networking question

Hi Al, sorry about not replaying sooner.

Thanks for all the ideas, no luck with though :)

Craig
by sirrab
Fri Jan 17, 2014 5:51 am
Forum: Coding Questions
Topic: Networking question
Replies: 9
Views: 3165

Re: Networking question

Thanks for the reply netmaestro,

I tried that but no luck. Its like the enter key needs to be pressed. I have tried it with chr(13) added as well as chr(10) and combinations of both. Anyone know what pressing enter in telnet sends?

Thanks Craig
by sirrab
Thu Jan 16, 2014 9:07 pm
Forum: Coding Questions
Topic: Networking question
Replies: 9
Views: 3165

Re: Networking question

My code as requested :)




If InitNetwork() = 0
MessageRequester("Error", "Can't initialize the network !", 0)
End
EndIf

dccserver = OpenNetworkConnection("192.168.1.23",3246,#PB_Network_TCP)

Procedure receivedata(dccserver,waitfor$)
*Buffer = AllocateMemory(1000)
dsize = 100
If ...