| View previous topic :: View next topic |
| Author |
Message |
Serge Professional Member


Joined: 04 Mar 2002 Posts: 1480 Location: Australia
|
Posted: Tue Sep 26, 2006 3:37 am Post subject: checkbox element and help file |
|
|
i have 2 questions:
1. how do i put a carriage return in a checkbox element? i need the text displayed on 2 lines rather than 1
2. anyone found a quick and easy way to put together good help files for your programs? i need a quick way to put one together and to edit when i make changes to my programs ... putting together help files for my programs is not my favourite activity, so i need a quick way to put together something nice and easy to update/edit, any ideas?
thanks in advance
serge _________________
|
|
| Back to top |
|
 |
uvedese Contributor


Joined: 21 Jan 2006 Posts: 169 Location: Spain
|
Posted: Tue Sep 26, 2006 2:47 pm Post subject: |
|
|
Hi Serge:
About put a carriage return in a checkbox element, watch this item:
http://forum.vdsworld.com/viewtopic.php?t=3945
You can adapt the code to include @cr() in the text of checkbox... it's a possible solution.
______
uVeDeSe
_______
visit: http://www.uvedese.es
Last edited by uvedese on Wed Apr 02, 2008 8:43 pm; edited 1 time in total |
|
| Back to top |
|
 |
Serge Professional Member


Joined: 04 Mar 2002 Posts: 1480 Location: Australia
|
Posted: Wed Sep 27, 2006 3:46 am Post subject: |
|
|
thanks for the reply but @cr() does not work ... neither does @chr(10)@chr(13) which creates new lines
the link is an idea but i wanted to be able to use the one checkbox on its own
i might have to resort to the idea in the link ... ggrr!!
thanks again
serge _________________
|
|
| Back to top |
|
 |
Dr. Dread Professional Member


Joined: 03 Aug 2001 Posts: 1065 Location: Copenhagen, Denmark
|
Posted: Wed Sep 27, 2006 6:06 am Post subject: |
|
|
You could also leave the checkbox without a caption and then put in a text element designed to your needs next to
the naked checkbox.
Greetz
Dread _________________ ~~ Alcohol and calculus don't mix... Don't drink and derive! ~~
String.DLL * advanced string processing |
|
| Back to top |
|
 |
JRoza Contributor


Joined: 17 Aug 2003 Posts: 182 Location: Netherlands
|
Posted: Wed Sep 27, 2006 6:23 am Post subject: |
|
|
Concerning the making/editing of helpfiles, I use HelpNDoc which is a very fine and easy to use program.
You can find it at www.ibe-software.com.
Unregistered every helpfile page will have an extra footer but otherwise the product functions as the registered version.
It was such a joy to use that I registered it after 3 days of use since it worked so much easier than other products I'd used.
Jan |
|
| Back to top |
|
 |
uvedese Contributor


Joined: 21 Jan 2006 Posts: 169 Location: Spain
|
Posted: Wed Sep 27, 2006 10:23 am Post subject: |
|
|
About check box:
try this code, based on an idea of GregLand:
| Code: |
DIALOG CREATE,Title,-1,0,230,79
DIALOG ADD,CHECK,CHECK1,8,8,16,16
DIALOG ADD,TEXT,TEXT1,8,24,,,Hello
DIALOG ADD,BUTTON,BUTTON1,40,16,64,24,BUTTON1
DIALOG ADD,BUTTON,BUTTON2,40,88,64,24,BUTTON2
DIALOG ADD,BUTTON,BUTTON3,40,160,64,24,BUTTON3
DIALOG SHOW
:evloop
wait event
goto @event()
:BUTTON1BUTTON
dialog set,text1,Hy !@cr()Baby!
goto evloop
:BUTTON2BUTTON
dialog set,text1,Very Good !@cr()Baby!
goto evloop
:BUTTON3BUTTON
dialog set,text1,I Love VDS ! @cr()And you?
goto evloop
:close
exit
|
__________
uVeDeSe |
|
| Back to top |
|
 |
Serge Professional Member


Joined: 04 Mar 2002 Posts: 1480 Location: Australia
|
Posted: Thu Sep 28, 2006 3:57 am Post subject: |
|
|
thanks dr dread and uvedese ... i had no choice but to resort to that idea
jan, that looks like a great program but given that i want to use for commercial products and the price they charge, i have to try something else
thanks again guys
serge _________________
|
|
| Back to top |
|
 |
PGWARE Web Host

Joined: 29 Dec 2001 Posts: 1566
|
Posted: Thu Sep 28, 2006 2:51 pm Post subject: |
|
|
| I use Microsofts HTML Help Workshop. It's free and it outputs .chm compiled html help that is standard. The tool is not WYSIWYG but it's pretty easy to figure out once you make 1-2 help files. The pages themselves are standard html, no special tags or anything really needed. |
|
| Back to top |
|
 |
WidgetCoder Contributor


Joined: 28 May 2002 Posts: 126 Location: CO, USA
|
Posted: Fri Sep 29, 2006 4:54 pm Post subject: |
|
|
For creating help files I use HelpMaker by Vizacc it's a freeware WYSIWYG RTF and HTML (.hlp/.chm) authoring tool that's extremely well designed and easy to use.
http://www.vizacc.com/ |
|
| Back to top |
|
 |
Serge Professional Member


Joined: 04 Mar 2002 Posts: 1480 Location: Australia
|
Posted: Sat Sep 30, 2006 3:32 am Post subject: |
|
|
thanks pgware and widgetcoder ... will check them out
serge _________________
|
|
| Back to top |
|
 |
stewcam Newbie
Joined: 30 Sep 2006 Posts: 21
|
Posted: Sat Sep 30, 2006 4:50 pm Post subject: Easy help file creation |
|
|
| A remarkably good freeware tool for helpfile creation is HelpMaker from http://www.vizacc.com. Better than most shareware programs in the range up to $100 or so. |
|
| Back to top |
|
 |
Serge Professional Member


Joined: 04 Mar 2002 Posts: 1480 Location: Australia
|
Posted: Sun Oct 01, 2006 3:29 am Post subject: |
|
|
that is a great HELP creator program, thanks for that widgetcoder and stewcam
it looks like it's exactly what i am after
thanks again
serge _________________
|
|
| Back to top |
|
 |
webdaddy Contributor


Joined: 14 Nov 2004 Posts: 151 Location: Raleigh NC
|
Posted: Fri Oct 06, 2006 4:16 pm Post subject: Help Files |
|
|
For creating help files I use Shalom Help File Maker. It's free, no ads or banners and is quick and easy to learn.
Here is a link to it. I dont know what the actual site is but I use the for help files and Inno Setup for my setup packages. Works like a champ.
http://www.snapfiles.com/get/shalom.html
ISP Toolz _________________ K Wetzel
Programming - Technology - Communications
"The Home of the SLC Security Console"
SLC now available for Linux... |
|
| Back to top |
|
 |
Serge Professional Member


Joined: 04 Mar 2002 Posts: 1480 Location: Australia
|
Posted: Sat Oct 07, 2006 4:39 am Post subject: |
|
|
thanks for that ... i used to use it but stopped for reasons i can't remember ... i think it wasn't quite working properly on my pc or something like that
serge _________________
|
|
| Back to top |
|
 |
|