forum.vdsworld.com Forum Index forum.vdsworld.com
Visit VDSWORLD.com
 
 FAQFAQ   SearchSearch   MemberlistMemberlist   UsergroupsUsergroups   RegisterRegister 
 ProfileProfile   Log in to check your private messagesLog in to check your private messages   Log inLog in 


checkbox element and help file

 
Post new topic   Reply to topic    forum.vdsworld.com Forum Index -> General Help
View previous topic :: View next topic  
Author Message
Serge
Professional Member
Professional Member


Joined: 04 Mar 2002
Posts: 1480
Location: Australia

PostPosted: Tue Sep 26, 2006 3:37 am    Post subject: checkbox element and help file Reply with quote

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
View user's profile Send private message Visit poster's website MSN Messenger
uvedese
Contributor
Contributor


Joined: 21 Jan 2006
Posts: 169
Location: Spain

PostPosted: Tue Sep 26, 2006 2:47 pm    Post subject: Reply with quote

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
View user's profile Send private message Visit poster's website
Serge
Professional Member
Professional Member


Joined: 04 Mar 2002
Posts: 1480
Location: Australia

PostPosted: Wed Sep 27, 2006 3:46 am    Post subject: Reply with quote

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
View user's profile Send private message Visit poster's website MSN Messenger
Dr. Dread
Professional Member
Professional Member


Joined: 03 Aug 2001
Posts: 1065
Location: Copenhagen, Denmark

PostPosted: Wed Sep 27, 2006 6:06 am    Post subject: Reply with quote

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
View user's profile Send private message
JRoza
Contributor
Contributor


Joined: 17 Aug 2003
Posts: 182
Location: Netherlands

PostPosted: Wed Sep 27, 2006 6:23 am    Post subject: Reply with quote

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.

Very Happy

Jan
Back to top
View user's profile Send private message Visit poster's website
uvedese
Contributor
Contributor


Joined: 21 Jan 2006
Posts: 169
Location: Spain

PostPosted: Wed Sep 27, 2006 10:23 am    Post subject: Reply with quote

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
View user's profile Send private message Visit poster's website
Serge
Professional Member
Professional Member


Joined: 04 Mar 2002
Posts: 1480
Location: Australia

PostPosted: Thu Sep 28, 2006 3:57 am    Post subject: Reply with quote

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
View user's profile Send private message Visit poster's website MSN Messenger
PGWARE
Web Host


Joined: 29 Dec 2001
Posts: 1566

PostPosted: Thu Sep 28, 2006 2:51 pm    Post subject: Reply with quote

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
View user's profile Send private message
WidgetCoder
Contributor
Contributor


Joined: 28 May 2002
Posts: 126
Location: CO, USA

PostPosted: Fri Sep 29, 2006 4:54 pm    Post subject: Reply with quote

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
View user's profile Send private message Send e-mail
Serge
Professional Member
Professional Member


Joined: 04 Mar 2002
Posts: 1480
Location: Australia

PostPosted: Sat Sep 30, 2006 3:32 am    Post subject: Reply with quote

thanks pgware and widgetcoder ... will check them out Smile

serge

_________________
Back to top
View user's profile Send private message Visit poster's website MSN Messenger
stewcam
Newbie


Joined: 30 Sep 2006
Posts: 21

PostPosted: Sat Sep 30, 2006 4:50 pm    Post subject: Easy help file creation Reply with quote

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
View user's profile Send private message
Serge
Professional Member
Professional Member


Joined: 04 Mar 2002
Posts: 1480
Location: Australia

PostPosted: Sun Oct 01, 2006 3:29 am    Post subject: Reply with quote

that is a great HELP creator program, thanks for that widgetcoder and stewcam

it looks like it's exactly what i am after Smile

thanks again

serge

_________________
Back to top
View user's profile Send private message Visit poster's website MSN Messenger
webdaddy
Contributor
Contributor


Joined: 14 Nov 2004
Posts: 151
Location: Raleigh NC

PostPosted: Fri Oct 06, 2006 4:16 pm    Post subject: Help Files Reply with quote

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
View user's profile Send private message Visit poster's website AIM Address Yahoo Messenger MSN Messenger
Serge
Professional Member
Professional Member


Joined: 04 Mar 2002
Posts: 1480
Location: Australia

PostPosted: Sat Oct 07, 2006 4:39 am    Post subject: Reply with quote

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
View user's profile Send private message Visit poster's website MSN Messenger
Display posts from previous:   
Post new topic   Reply to topic    forum.vdsworld.com Forum Index -> General Help All times are GMT
Page 1 of 1

 
Jump to:  
You cannot post new topics in this forum
You cannot reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum
You cannot vote in polls in this forum
You can attach files in this forum
You can download files in this forum

Twitter@vdsworld       RSS

Powered by phpBB © 2001, 2005 phpBB Group