topbanner_forum
  *

avatar image

Welcome, Guest. Please login or register.
Did you miss your activation email?

Login with username, password and session length
  • Tuesday March 19, 2024, 3:27 am
  • Proudly celebrating 15+ years online.
  • Donate now to become a lifetime supporting member of the site and get a non-expiring license key for all of our programs.
  • donate

Last post Author Topic: BBCeditor 1.1.35  (Read 260581 times)

fenixproductions

  • Honorary Member
  • Joined in 2006
  • **
  • Posts: 1,186
    • View Profile
    • Donate to Member
Re: BBCeditor 1.0.13
« Reply #50 on: June 01, 2009, 06:38 PM »
Link to very simple WWW page added to first post :)

superboyac

  • Charter Member
  • Joined in 2005
  • ***
  • Posts: 6,347
    • View Profile
    • Donate to Member
Re: BBCeditor 1.0.13
« Reply #51 on: June 01, 2009, 06:56 PM »
That's a beautiful page.

fenixproductions

  • Honorary Member
  • Joined in 2006
  • **
  • Posts: 1,186
    • View Profile
    • Donate to Member
Re: BBCeditor 1.0.13
« Reply #52 on: June 01, 2009, 07:03 PM »
2superboyac

Thank you.

J-Mac

  • Supporting Member
  • Joined in 2007
  • **
  • Posts: 2,918
    • View Profile
    • Donate to Member
Re: BBCeditor 1.0.13
« Reply #53 on: June 04, 2009, 01:58 AM »
fenix,

Nice app! Wow, I have to check this darn subforum more often!

Thanks!

Jim

gladtobegrey

  • Participant
  • Joined in 2009
  • *
  • default avatar
  • Posts: 2
    • View Profile
    • Donate to Member
Re: BBCeditor 1.0.13
« Reply #54 on: June 04, 2009, 09:43 AM »
ctrl-i seems to insert unwanted blanks after the tags, whereas hitting the 'I' button doesn't?
See attached screenshot.  Neat little app, BTW.



fenixproductions

  • Honorary Member
  • Joined in 2006
  • **
  • Posts: 1,186
    • View Profile
    • Donate to Member
Re: BBCeditor 1.0.13
« Reply #55 on: June 04, 2009, 10:51 AM »
2gladtobegrey

Thank you for your report.

This bug is strange because there is the same part of code responsible for adding tags via buttons and shortcuts (at least for the simplest ones like b, i, tt). It looks like RichTextBox control error with Ctrl+I shortcut: it always inserts additional \t (tab) character!

I will try to find solution :)

Edit:

I will post fixed version later today.

Solution
And for people who might be interested in fix:
Code: C# [Select]
  1. private void codeTB_KeyDown( object sender, KeyEventArgs e )
  2. {
  3.         ...
  4.         if (e.Control)
  5.         {
  6.                 ...
  7.                 if (e.KeyCode == Keys.I)
  8.                 {
  9.                         e.Handled = true;
  10.                         e.SuppressKeyPress = true;
  11.                         //do what you want here
  12.                 }
  13.         }
  14.         ...
  15. }

« Last Edit: June 04, 2009, 11:01 AM by fenixproductions »

fenixproductions

  • Honorary Member
  • Joined in 2006
  • **
  • Posts: 1,186
    • View Profile
    • Donate to Member
Re: BBCeditor 1.0.14
« Reply #56 on: June 05, 2009, 12:07 PM »
New version 1.0.14 is ready!

I've fixed Ctrl+I problem described in posts above and added Find and Replace dialogues.

cranioscopical

  • Friend of the Site
  • Supporting Member
  • Joined in 2006
  • **
  • Posts: 4,776
    • View Profile
    • Donate to Member
Re: BBCeditor 1.0.14
« Reply #57 on: June 05, 2009, 03:39 PM »
New version 1.0.14 is ready!
-fenixproductions (June 05, 2009, 12:07 PM)
:Thmbsup: Thanks!

gladtobegrey

  • Participant
  • Joined in 2009
  • *
  • default avatar
  • Posts: 2
    • View Profile
    • Donate to Member
Re: BBCeditor 1.0.14
« Reply #58 on: June 05, 2009, 04:16 PM »
New version 1.0.14 is ready!

I've fixed Ctrl+I problem ...
-fenixproductions (June 05, 2009, 12:07 PM)
:up: Thanks!

cranioscopical

  • Friend of the Site
  • Supporting Member
  • Joined in 2006
  • **
  • Posts: 4,776
    • View Profile
    • Donate to Member
Re: BBCeditor 1.0.14
« Reply #59 on: June 05, 2009, 04:30 PM »
Hi fenixproductions.
I think I know the answer but have you any way to make text in the spelling checker a larger size?


fenixproductions

  • Honorary Member
  • Joined in 2006
  • **
  • Posts: 1,186
    • View Profile
    • Donate to Member
Re: BBCeditor 1.0.14
« Reply #60 on: June 05, 2009, 05:21 PM »
2cranioscopical

Which control do you have in mind? "Text being checked"?
Would following font set for editor be enough for you?

If yes, I'll see what can I do.

cranioscopical

  • Friend of the Site
  • Supporting Member
  • Joined in 2006
  • **
  • Posts: 4,776
    • View Profile
    • Donate to Member
Re: BBCeditor 1.0.14
« Reply #61 on: June 05, 2009, 06:14 PM »
2cranioscopical

Which control do you have in mind? "Text being checked"?
Would following font set for editor be enough for you?

If yes, I'll see what can I do.
-fenixproductions (June 05, 2009, 05:21 PM)

Indeed, "Text being checked". That's the most difficult part for me to read at my screen res. I can pretty much work out "Suggestions" by word shapes, without having to read those carefully. Anything you can do would be much appreciated  :up:

fenixproductions

  • Honorary Member
  • Joined in 2006
  • **
  • Posts: 1,186
    • View Profile
    • Donate to Member
Re: BBCeditor 1.0.14
« Reply #62 on: June 05, 2009, 06:38 PM »
1.0.15 is out.

SpellChecker preview font now follows code editor.

I have also added simple status bar :)

cranioscopical

  • Friend of the Site
  • Supporting Member
  • Joined in 2006
  • **
  • Posts: 4,776
    • View Profile
    • Donate to Member
Re: BBCeditor 1.0.14
« Reply #63 on: June 05, 2009, 07:11 PM »
1.0.15 is out.

SpellChecker preview font now follows code editor.

I have also added simple status bar :)
-fenixproductions (June 05, 2009, 06:38 PM)

Brilliant, thanks!
Some d-credits are heading your way!

fenixproductions

  • Honorary Member
  • Joined in 2006
  • **
  • Posts: 1,186
    • View Profile
    • Donate to Member
Re: BBCeditor 1.0.16
« Reply #64 on: June 06, 2009, 12:52 PM »
New version (1.0.16) is out!

I've fixed small bugs with lists in Settings window.

I have also added "Snippets" feature (activated on Ctrl+Space).

snippet.pngBBCeditor 1.1.35

Please remember: if you want to have mullti-line snippet, you can jump to new line using Ctrl+Enter. Simple Enter closes Settings window!

cranioscopical

  • Friend of the Site
  • Supporting Member
  • Joined in 2006
  • **
  • Posts: 4,776
    • View Profile
    • Donate to Member
Re: BBCeditor 1.0.16
« Reply #65 on: June 06, 2009, 04:08 PM »
Nice addition, fenixp.
Two things.
Either snippets don't work for me or I don't understand them.
I have two snippets set up.
The snippets window pops up on Ctrl-space.
I can select either one of my two test snippets but can't  see how to get the snippet content into the message body.

Also, can we have something other than Ctrl-Space, which launches FARR on my system?
Please?

fenixproductions

  • Honorary Member
  • Joined in 2006
  • **
  • Posts: 1,186
    • View Profile
    • Donate to Member
Re: BBCeditor 1.0.16
« Reply #66 on: June 06, 2009, 04:28 PM »
2cranioscopical
Which shortcut do you propose?

BTW Try this use case:
1. Ctrl+Space to show list,
2. choose proper item using arrows,
3. hit Enter key.

Currently, it works with keyboard only but I plan to add mouse clicks handling later.

I think you could misunderstood "Ctrl+Enter" case which applies for Settings window only.
« Last Edit: June 06, 2009, 04:31 PM by fenixproductions »

cranioscopical

  • Friend of the Site
  • Supporting Member
  • Joined in 2006
  • **
  • Posts: 4,776
    • View Profile
    • Donate to Member
Re: BBCeditor 1.0.16
« Reply #67 on: June 06, 2009, 05:08 PM »
2cranioscopical
Which shortcut do you propose?

BTW Try this use case:
1. Ctrl+Space to show list,
2. choose proper item using arrows,
3. hit Enter key.

Currently, it works with keyboard only but I plan to add mouse clicks handling later.
-fenixproductions (June 06, 2009, 04:28 PM)

The shortcut: I discovered that CRTL+ALT+SPACE works just fine as things are now, so please ignore my request for an alternative.
Usage "3. hit Enter key": works perfectly!  My mortification is complete :-[   :)

Thanks for the help!


fenixproductions

  • Honorary Member
  • Joined in 2006
  • **
  • Posts: 1,186
    • View Profile
    • Donate to Member
Re: BBCeditor 1.0.16
« Reply #68 on: June 06, 2009, 05:31 PM »
The shortcut: I discovered that CRTL+ALT+SPACE works just fine as things are now
-cranioscopical (June 06, 2009, 05:08 PM)

I am glad it works but I was not aware it can work this way  :o

It works because I am checking for Ctrl+Space without disabling other special keys (like Alt or Shift). Since it suits your need I can leave it as it is.

Do you have any wishes for variables support? I thought about adding dates in similar way as file name pattern (though it might need some fixes).

I've implemented dates support and it will be released with next version.
« Last Edit: June 06, 2009, 08:08 PM by fenixproductions »

cranioscopical

  • Friend of the Site
  • Supporting Member
  • Joined in 2006
  • **
  • Posts: 4,776
    • View Profile
    • Donate to Member
Re: BBCeditor 1.0.16
« Reply #69 on: June 06, 2009, 06:23 PM »
Speaking purely for myself, I think the current state covers all that I want.
That said, I seem to find uses for your innovations whenever they arrive.  :)

If it causes no conflicts elsewhere, please leave the CTRL+[other]+space enabled.

fenixproductions

  • Honorary Member
  • Joined in 2006
  • **
  • Posts: 1,186
    • View Profile
    • Donate to Member
Re: BBCeditor 1.0.17
« Reply #70 on: June 06, 2009, 07:02 PM »
1.0.17 is out!

I've added date variables support for snippets :)

There is also "Match simple URLs" option added for showing URL addresses as clickable links in preview even if there is no matching tag (url or email) written. I did it because some BB engines do not need tags for them at all!

cranioscopical

  • Friend of the Site
  • Supporting Member
  • Joined in 2006
  • **
  • Posts: 4,776
    • View Profile
    • Donate to Member
Re: BBCeditor 1.0.17
« Reply #71 on: June 06, 2009, 08:00 PM »
Nice one!

This is a snippet
over 3 lines with a date
June 6, 2009

fenixproductions

  • Honorary Member
  • Joined in 2006
  • **
  • Posts: 1,186
    • View Profile
    • Donate to Member
Re: BBCeditor 1.0.17
« Reply #72 on: June 06, 2009, 08:24 PM »
Nice one!

This is a snippet
over 3 lines with a date
June 6, 2009
-cranioscopical (June 06, 2009, 08:00 PM)

 ;D

cranioscopical

  • Friend of the Site
  • Supporting Member
  • Joined in 2006
  • **
  • Posts: 4,776
    • View Profile
    • Donate to Member
Re: BBCeditor 1.0.17
« Reply #73 on: June 06, 2009, 09:12 PM »
So, snippets are good. They can also do what I mention below, but without an icon.
How about a custom button type that allows for simple text?
So that one could set up, say, a button showing :Thmbsup: that would insert the appropriate string.

fenixproductions

  • Honorary Member
  • Joined in 2006
  • **
  • Posts: 1,186
    • View Profile
    • Donate to Member
Re: BBCeditor 1.0.17
« Reply #74 on: June 06, 2009, 09:28 PM »
2cranioscopical

I think it's almost possible now:
1. add custom button
2. set it as: Single
3. set BBcode as: ;)
4. set HTML code: img src="D:\txt_garbage\thumbsup.png"
5. set picture path: D:\txt_garbage\thumbsup.png

Do I understand correctly that the only difference would be to not have [] added and/or allow skipping HTML code for it at all?

If yes, I could do it in next version :)