Search found 67 matches

by funnyguy
Sat Jan 16, 2010 7:54 am
Forum: Announcement
Topic: Remote Controlled Music!
Replies: 1
Views: 1730

Remote Controlled Music!

If you ever wanted a 100% free Remote Controllable Music Player you came to the right place. ChiranthaSoft Remote Music is a Remote Control music player that implements Remote Control music at virtually no cost*! Unlike many other software's that require you to have a special devices that cost ...
by funnyguy
Fri Dec 18, 2009 2:26 am
Forum: Coding Questions
Topic: Copying JPEG information
Replies: 1
Views: 573

Copying JPEG information

I'm working on a image processing program. The program IS working BUT I want the JPEG images information (camera name, time taken) to be copied to processed file.
by funnyguy
Fri Apr 24, 2009 2:06 am
Forum: Coding Questions
Topic: Does End Stop all threads?
Replies: 2
Views: 1175

Does End Stop all threads?

I've been having some issues with my program... Some threads don't end when End is called... the program just hangs without closing. Is this normal? if not is there a obvious reason?
by funnyguy
Tue Apr 21, 2009 5:33 am
Forum: Coding Questions
Topic: functionname(void) or functionname(*void)
Replies: 5
Views: 1804

functionname(void) or functionname(*void)

When writing a function for a thread which one is correct? functionname(void) or functionname(*void)?
by funnyguy
Mon Apr 20, 2009 11:33 pm
Forum: Coding Questions
Topic: Execute another program and End
Replies: 1
Views: 682

Execute another program and End

How to I run another program and end my program? when I use RunProgram() and end my program the lauched program also exits for some reason :(
by funnyguy
Wed Mar 25, 2009 10:57 pm
Forum: Coding Questions
Topic: Constant connection to HTTP server
Replies: 3
Views: 1347

It seems I was correct. Here is the code

InitNetwork()
time=ElapsedMilliseconds()
con=OpenNetworkConnection("localhost",80)
text$="GET /index.php HTTP/1.1"+Chr(13)+Chr(10)
text$+"Host: localhost"+Chr(13)+Chr(10)
text$+"Connection: Keep-Alive"+Chr(13)+Chr(10)
text$+"User-Agent: ChiranthaSoft ...
by funnyguy
Wed Mar 25, 2009 9:33 pm
Forum: Coding Questions
Topic: Constant connection to HTTP server
Replies: 3
Views: 1347

Constant connection to HTTP server

Hello,

My program contently connects to (like every second) to the web server. On each request the server responds with a header of 4 bytes. But the problem is there is a lag between the time the request is sent and the time the server responds.

Is there any solution to lower this? I read about ...
by funnyguy
Wed Mar 25, 2009 6:29 pm
Forum: Applications - Feedback and Discussion
Topic: ChiranthaSoft Talking Clock 1.2.1
Replies: 0
Views: 1760

ChiranthaSoft Talking Clock 1.2.1

Hello :D

My ChiranthaSoft Talking Clock Version 1.2.1 is out everyone. The Software has made it to various software download sites including Softpedia (and some other sites in different languages :shock: ).

On avarage my software is download 70 times a day from Softpedia. And to my shock, actually ...
by funnyguy
Wed Mar 25, 2009 5:18 pm
Forum: Coding Questions
Topic: Getting the systems default font
Replies: 3
Views: 964

Getting the systems default font

I need to get the font name, size, style of the Window Style. So I can create the gadgets with the correct size
by funnyguy
Fri Mar 13, 2009 11:35 am
Forum: Coding Questions
Topic: WM_QUERYENDSESSION how?
Replies: 15
Views: 5977

srod wrote:You're probably better off with #WM_ENDSESSION in your case.

Use a Window callback and trap #WM_ENDSESSION. Process it in the same you do when receiving a #PB_Event_CloseWindow etc.
Exactly! How do I do it? :(
by funnyguy
Fri Mar 13, 2009 11:18 am
Forum: Coding Questions
Topic: WM_QUERYENDSESSION how?
Replies: 15
Views: 5977

WM_QUERYENDSESSION how?

Hi

My app users have complained that my app is not saving the settings when they shut down the computer when the apps running (a clock). The CloseWindow triggers the saving but it seems the close window message is not sent when windows is shutting down. So I went on the internet and found that the ...
by funnyguy
Mon Mar 09, 2009 3:06 am
Forum: Coding Questions
Topic: Checking if a there is a Full Screen app running?
Replies: 16
Views: 2880

What do you mean? :shock:
Mistrel are you like off focus or something?

I need the code for my Clock...
by funnyguy
Sun Mar 08, 2009 9:55 pm
Forum: Coding Questions
Topic: Checking if a there is a Full Screen app running?
Replies: 16
Views: 2880

As in hide my always on top window when the user starts a game
by funnyguy
Sun Mar 08, 2009 9:34 pm
Forum: Coding Questions
Topic: Setting Program's Priority
Replies: 1
Views: 1026

Setting Program's Priority

How do you set the programs priority? Not thread priority!
by funnyguy
Sun Mar 08, 2009 9:08 pm
Forum: Coding Questions
Topic: Checking if a there is a Full Screen app running?
Replies: 16
Views: 2880

Checking if a there is a Full Screen app running?

I want to hide my app's window if a full screen app (a game) is running. How do I check if there is a full screen app running?