IonicWind Software

IWBasic => IWB 2.5 Beta => The BoneYard => IWB 2.5 beta Development => Topic started by: LarryMc on November 17, 2012, 09:50:08 PM

Title: Update 11-17-2012
Post by: LarryMc on November 17, 2012, 09:50:08 PM
Completed the Code Editor section of the Help file.
Fix a problem with the AutoTip feature and a few other odds and ends.
Updated Demo download.
Download Demo from here (http://www.ionicwind.com/forums/index.php?topic=5074.msg38439#msg38439)
Title: Re: Update 11-17-2012
Post by: Brian on November 18, 2012, 05:50:26 AM
Larry,

Just created a dialog form in the new editor, and it appears that the constants SS_LEFT and
SS_SIMPLE don't work in the current IWB. There may be others, but they are only ones
it reported

I got round it easily enough by creating the CONSTS that I needed

Also, will it be possible to create a menu while designing a form, or will that always
be a separate item, ie, to be added on after creation?

Brian
Title: Re: Update 11-17-2012
Post by: LarryMc on November 18, 2012, 07:56:36 AM
There were actually 4 that the current IWBasic doesn't have - SS_LEFT, SS_CENTER, SS_RIGHT, SS_SIMPLE

I modified the Form Editor so that those constants will be defined if a STATIC control is used.
Fix will appear in next update.

No, I don't plan on having the Menu Editor nested inside the Form Editor which is already nested inside the IDE.
It gives me too many headaches. :D
The form properties dialog has a Menu checkbox.  
If you are going to have a menu in the form checking this box will allow for the space the menu will ultimately take up so that all your positioning will come out correctly.

UPDATE: There were actually 5 constants - the 5th was LEFTTEXT for Radiobuttons and Checkboxes
Title: Re: Update 11-17-2012
Post by: Bill-Bo on November 18, 2012, 08:27:48 AM
LarryMc,

Your download from the link at
the top of the page directs you
to a download that is dated
10/19/2012.

Kind of old for an update. ;D

Bill
Title: Re: Update 11-17-2012
Post by: LarryMc on November 18, 2012, 08:30:47 AM
where are you seing that date?
Title: Re: Update 11-17-2012
Post by: Bill-Bo on November 18, 2012, 08:39:32 AM
LarryMc,

When I click the llink 'Download Demo from here'
at the top of this page, it goes to
'Update 08-31-2012 - New Demo Link'.
I downloaded the file, and the file
in the zip is dated 10/19/2012.

The useguide from yesterday's link
is dated 11/17/2012.

What am I missing about updates?

Bill
Title: Re: Update 11-17-2012
Post by: LarryMc on November 18, 2012, 08:49:32 AM
Your missing my screw-up  ;D
For some reason my automated program I wrote to move all the files, compile the installer, and put the installer in a zip put an old installer in the zip.
I just reran and it did what it was suppose to do.
I have no idea why it did what it did before, it's a real simple program.
Anyway, you should see a new date there now.

Thanks for the catch and letting me know.
Title: Re: Update 11-17-2012
Post by: Bill-Bo on November 18, 2012, 08:55:56 AM
LarryMc,

Works okay, now. Ta-ta.

Hope I'll be able to afford the new
version when it comes out.

Thanks,

Bill
Title: Re: Update 11-17-2012
Post by: LarryMc on November 18, 2012, 11:46:20 AM
Quote from: Bill-Bo on November 18, 2012, 08:55:56 AM
LarryMc,

Works okay, now. Ta-ta.

Hope I'll be able to afford the new
version when it comes out.

Thanks,

Bill
I believe LarryS has said that the 2.x version of the new IDE (the one you are playing with) is going to be a free upgrade.
It is my understanding that the 3.x version (64 bit) will have a cost associated with it.
Title: Re: Update 11-17-2012
Post by: Doc on November 18, 2012, 01:14:59 PM
Hey LarryMc,

It's been awhile since I took the demo version for  a test spin...
...I can only say; very impressive, sir!

I particularly like the nice, clean and simple code that the form editor generates, along with the addition of the entire "tools" interface. I jump for joy at the addition of the "File Cleanup" tool, which has always been a pet peeve of mine, concerning previous versions. (I've traditionally built the majority of my projects right on the desktop, so cleaning up that mess was always bothersome after each compile.)

The whole thing, including the additional work on the help file looks good!

-Doc-
Title: Re: Update 11-17-2012
Post by: LarryMc on November 18, 2012, 03:08:38 PM
Thanks for the kind words Doc!
Title: Re: Update 11-17-2012
Post by: RitchieF on November 19, 2012, 01:10:01 AM
Hi Larry,

' Jump to Line ' works only with bookmarked lines, right ?

Clicking the + sign while the cursor is in a bookmarked line adds the linenumber again as often as I click the sign, no check if the line already exists.

Great work anyway ;D.

Thanks

Richard
Title: Re: Update 11-17-2012
Post by: LarryMc on November 19, 2012, 04:24:20 AM
Quote from: RitchieF on November 19, 2012, 01:10:01 AM
' Jump to Line ' works only with bookmarked lines, right ?
Correct

Quote from: RitchieF on November 19, 2012, 01:10:01 AM
Clicking the + sign while the cursor is in a bookmarked line adds the linenumber again as often as I click the sign, no check if the line already exists.
Fixed - no more duplicates while adding bookmarks

While working on that fix I discovered that I hadn't made the bookmark combobox auto adjust for the addition/deletion of lines occuring before a bookmarked line.
Now, if line 10 is bookmarked and you add five lines at line 3 (which makes the bookmarked line #15) the combobox will reflect that properly.

These changes will be in the next update.

Thanks for the feedback!