PocketC TaskBar Icon by Ralf Schieferdecker |
Features Example Download License Term Support |
Features |
Schiefersoft PocketC Tools is a little collection of any useful PocketC developer Tools
it consist on :
PCTBI is a PocketC TaskBar Icon -Launcher
The PCTBI-Setup Dialog:
Applet File: | Input or select the full path of your PocketC Applet File |
Title: | Input your applet-title (it must be exactly the same like the one you have set with the title("Your App"); function. |
Icon: | Select the icon of your choice |
Close Item: | the PCTBI shows (or does not show) a Close MenuItem |
Close Msg: | If you close the PCTBI, a message box with this text will be shown (or not) |
Apply Test | You can test your settings (PCTBI is launching and you can see it in the taskbar) |
Apply | saves the settings |
OK | OK (save and exit) |
PCTBI consist on the following Files:
\windows\pctbi.exe
the Launcher
\windows\pctbisetup.exe
the Setupdialog
\windows\pctbi.pctbi
the Configuration File
You can start PCTBI by launching pctbi.pctbi or by launching
pctbi.exe
if you launch pctbi.exe - the default Configurationfile will be using (pctbi.pctbi)
if you rename pctbi.pctbi in another *.pctbi file, you can also launch
this file.
You can use more than one PCTBI's if you use different *.pctbi files
example:
Watch.pctbi (shows a watch icon)
Cal.pctbi (shows a Calculator)
Download |
Launch the EXE File on your desktop PC, it will install all Files automatically. After Installation you can find all Icons of schiefersoft Tool on Start -> Programs -> Accessories Menu
License Term |
By
downloading and installing schiefersoft PocketC Tools, you agree to the
following terms concerning usability and liability. schiefersoft PocketC Tools is Copyright © 1998-1999 by Ralf Schieferdecker. We are not responsible for any damage to the user's computer system or data and in no event will Kevin Cao, Jeremy Dewey and Ralf Schieferdecker be responsible to the purchaser for any consequential, incidental, or indirect damages arising out of the use or inability to use schiefersoft PocketC Tools. Ralf Schieferdecker 01/10/2000 |
Example and Screen Capture |
in the TaskBar you can see a little Tree (this is the PCTBI - Icon) The App is the Demo App The Source You can below. | the following 13 Icons are available: |
#include "\\pocketc\\pcheader.h" eventhandler()//generated by PocketC Keypad {int e,g; while(1) { e=event(1); switch(e) { case PM_BUTTONDOWN: { g=guiid(); switch(g) { case 100: exec("open","\\windows\\sip_on.exe",""); break; case 101: exec("open","\\windows\\sip_off.exe",""); break; case 102: exec("open","\\windows\\pctbisetup.exe",""); quit(); break; } } } } } init() { createctrl("button","SIP-on",WS_VISIBLE,0,10,30,50,40,100); createctrl("button","SIP-off",WS_VISIBLE,0,10,80,50,40,101); createctrl("button","PCTBI-Setup",WS_VISIBLE,0,10,140,150,40,102); createctrl("STATIC","this app demonstrate the using of sip_on.exe, sip_off.exe and the PCTPI. for more infos please vlsit www.orbworks.com",WS_VISIBLE,0,102,21,124,133,700); title("SIP-Demo"); about( "Demo for sip_off.exe and sip_on.exe"); } main() { clearg(); menu_off(); exec("open","\\windows\\sip_off.exe",""); init(); eventhandler(); }