topbanner_forum
  *

avatar image

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

Login with username, password and session length
  • Thursday March 28, 2024, 3:07 pm
  • 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 261555 times)

fenixproductions

  • Honorary Member
  • Joined in 2006
  • **
  • Posts: 1,186
    • View Profile
    • Donate to Member
Re: BBCeditor 1.0.30
« Reply #175 on: July 07, 2012, 04:10 PM »
Check your BIOS boot settings. "PXE" means the laptop thinks it is supposed to boot from LAN (thus the mention of "Cable").
I've already checked all three available booting options from Temporary Boot Menu, checked few possibilities for boot order from BIOS, re-inserted SSD couple of times (Lenovo support forum answer). I still need to check this drive from some LiveCD.
Strange thing is: Temporary Boot Menu shows drive name but when I try to boot from it screen goes black and returns to menu. I would say something happened with MBR but dunno if SSD has it.

But all of this this is for other topic or… company tech support. It is corporate device and I shouldn't temper with it after all ;)

@paulhypno
1.0.30 has none of mentioned two features.

tomos

  • Charter Member
  • Joined in 2006
  • ***
  • Posts: 11,959
    • View Profile
    • Donate to Member
Re: BBCeditor 1.1.0.0
« Reply #176 on: July 07, 2012, 04:29 PM »
good luck with the laptop fenix!

FWIW - for whenever you do get back to it:
it (1.1.0.0) works here no problem Win 7 64 bit - I just put it in my portable folder (on the C partition).
Tom

fenixproductions

  • Honorary Member
  • Joined in 2006
  • **
  • Posts: 1,186
    • View Profile
    • Donate to Member
Re: BBCeditor 1.0.30
« Reply #177 on: July 07, 2012, 04:46 PM »
@tomos
Just a thought: maybe user/admin rights have something to do with BBC error?

@David.P
Last words about laptop:
Ubuntu Live saw only 8MB of unallocated space (GParted Live - the same).

Edited:
Exactly same issue:
http://communities.intel.com/thread/7514
« Last Edit: July 07, 2012, 05:58 PM by fenixproductions »

tomos

  • Charter Member
  • Joined in 2006
  • ***
  • Posts: 11,959
    • View Profile
    • Donate to Member
Re: BBCeditor 1.0.30
« Reply #178 on: July 07, 2012, 06:02 PM »
@tomos
Just a thought: maybe user/admin rights have something to do with BBC error?
-fenixproductions (July 07, 2012, 04:46 PM)

for the record:
my settings are Admin account with UAC at highest level.
Tom

ioncube

  • Participant
  • Joined in 2012
  • *
  • Posts: 6
    • View Profile
    • Donate to Member
Re: BBCeditor 1.0.30
« Reply #179 on: July 15, 2012, 11:43 PM »
I have a problem regarding the addition of a custom bbcode.
In my forum we use a custom bbcode like [docis][/docis] in between these is a unique documentId which is used to embed ISSUU streaming documents.
So for instance the user input is  [docis]documentId=120712003955-e4ff9f62ad7b4c62a48dd45527080c3e[/docis] the code parser will convert it into following HTML:

Code: HTML [Select]
  1. <center><object style="width:420px;height:272px" classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000"><param "="" value="http://static.issuu.com/webembed/viewers/style1/v2/IssuuReader.swf?mode=mini&amp;backgroundColor=%23222222&amp;documentId=120712003955-e4ff9f62ad7b4c62a48dd45527080c3e" name="movie"><param value="true" name="allowfullscreen"><param value="false" name="menu"><param value="transparent" name="wmode"><embed flashvars="mode=mini&amp;backgroundColor=%23222222&amp;documentId=120712003955-e4ff9f62ad7b4c62a48dd45527080c3e" style="width:420px;height:272px" wmode="transparent" menu="false" allowfullscreen="true" type="application/x-shockwave-flash" src="http://static.issuu.com/webembed/viewers/style1/v2/IssuuReader.swf"></object></center>

So you see the documentId is inserted twice so how can I achieve this using custom button option in BBCeditor

fenixproductions

  • Honorary Member
  • Joined in 2006
  • **
  • Posts: 1,186
    • View Profile
    • Donate to Member
Re: BBCeditor 1.0.30
« Reply #180 on: July 17, 2012, 04:23 PM »
@ioncube
Currently it is not possible to do that but I will try to add it over the weekend.

ioncube

  • Participant
  • Joined in 2012
  • *
  • Posts: 6
    • View Profile
    • Donate to Member
Re: BBCeditor 1.0.30
« Reply #181 on: July 18, 2012, 06:34 AM »
thnx for replying,
My machine can't compile the src of bbceditor but I think following changes in the Parser file will result what I seek

#endregion
#region issuu document

//[docis]documentId[/docis]
while (txt.Contains( "[docis]" ))
{
String qtmp = "[docis]";

int st_poz = txt.IndexOf( qtmp, StringComparison.Ordinal );

if (st_poz >= 0)
{
st_poz = st_poz + qtmp.Length;

int end_poz = txt.IndexOf( "[/docis]", st_poz, StringComparison.Ordinal );

if (end_poz > 0)
{
String tmp = txt.Substring( st_poz, end_poz - st_poz );

//txt = txt.Replace( "[docis]" + tmp + "[/docis]", "<docis src=\"" + tmp + "\" />" );
txt = txt.Replace( "[docis]" + tmp + "[/docis]", "<center><object style=\"width:420px;height:272px\" classid=\"clsid:D27CDB6E-AE6D-11cf-96B8-444553540000\"><param value=\"http://static.issuu.com/webembed/viewers/style1/v2/IssuuReader.swf?mode=mini&amp;backgroundColor=%23222222&amp;"+tmp+" name=\"movie\"><param value=\"true\" name=\"allowfullscreen\"><param value=\"false\" name=\"menu\"><param value=\"transparent\" name=\"wmode\"><embed flashvars=\"mode=mini&amp;backgroundColor=%23222222&amp;"+tmp+" style=\"width:420px;height:272px\" wmode=\"transparent\" menu=\"false\" allowfullscreen=\"true\" type=\"application/x-shockwave-flash\" src=\"http://static.issuu.com/webembed/viewers/style1/v2/IssuuReader.swf\"></object></center>" );
}
else
{
break;
}
}
}

Also justifying text can be achieve via following addition:
txt = txt.Replace( "[justify]", "<p align=\"justify\">" );
txt = txt.Replace( "[/justify]", "</p>" );

if you get some time plz compile your editor with the following Parser.cs file. I will be very grateful to you
http://www.mediafire...com/?h7wg4a29bkuk9c7
« Last Edit: July 18, 2012, 06:41 AM by ioncube »

fenixproductions

  • Honorary Member
  • Joined in 2006
  • **
  • Posts: 1,186
    • View Profile
    • Donate to Member
Re: BBCeditor 1.0.30
« Reply #182 on: July 18, 2012, 11:50 AM »
@ioncube
Thank you for your help but I will make it in different way: by adding Regexp type custom tag.
You will have the possibility to define any bbc string which will be replaced with custom HTML.
This way it should be more flexible and will not require new versions for each new/strange tag.

BTW I would suggest using CSS classes for rendered HTML - thanks to that you'll have more preview skinning options.

cranioscopical

  • Friend of the Site
  • Supporting Member
  • Joined in 2006
  • **
  • Posts: 4,776
    • View Profile
    • Donate to Member
Re: BBCeditor 1.0.30
« Reply #183 on: July 18, 2012, 12:21 PM »
You will have the possibility to define any bbc string which will be replaced with custom HTML.
-fenixproductions (July 18, 2012, 11:50 AM)
Sounds good  :Thmbsup: :Thmbsup:
I wish I knew why the latest version won't run on my system  :(

ioncube

  • Participant
  • Joined in 2012
  • *
  • Posts: 6
    • View Profile
    • Donate to Member
Re: BBCeditor 1.0.30
« Reply #184 on: July 18, 2012, 03:01 PM »
@ioncube
Thank you for your help but I will make it in different way: by adding Regexp type custom tag.
You will have the possibility to define any bbc string which will be replaced with custom HTML.
This way it should be more flexible and will not require new versions for each new/strange tag.

BTW I would suggest using CSS classes for rendered HTML - thanks to that you'll have more preview skinning options.
-fenixproductions (July 18, 2012, 11:50 AM)

Something like this http://www.phpbb.com...ewtopic.php?t=579376 will be a dream come true  :Thmbsup:

paulhypno

  • Participant
  • Joined in 2012
  • *
  • default avatar
  • Posts: 8
    • View Profile
    • Donate to Member
Re: BBCeditor 1.0.30
« Reply #185 on: July 19, 2012, 01:28 AM »
I wish I knew why the latest version won't run on my system  :(
-cranioscopical (July 18, 2012, 12:21 PM)

(x2) So would I  :tellme:

fenixproductions

  • Honorary Member
  • Joined in 2006
  • **
  • Posts: 1,186
    • View Profile
    • Donate to Member
Re: BBCeditor 1.0.30
« Reply #186 on: July 21, 2012, 01:08 PM »
New version with Regexp tags added - please test:
http://fenixproducti...bc/BBCeditor1133.zip

paulhypno

  • Participant
  • Joined in 2012
  • *
  • default avatar
  • Posts: 8
    • View Profile
    • Donate to Member
Re: BBCeditor 1.0.30
« Reply #187 on: July 21, 2012, 01:19 PM »
New version with Regexp tags added - please test:
http://fenixproducti...bc/BBCeditor1133.zip
-fenixproductions (July 21, 2012, 01:08 PM)

 :( Sadly there is no change.  I get the same as before:

Description:
  Stopped working

Problem signature:
  Problem Event Name:   CLR20r3
  Problem Signature 01:   bbceditor.exe
  Problem Signature 02:   1.1.33.0
  Problem Signature 03:   500aee54
  Problem Signature 04:   BBCeditor
  Problem Signature 05:   1.1.33.0
  Problem Signature 06:   500aee54
  Problem Signature 07:   da
  Problem Signature 08:   26
  Problem Signature 09:   System.NullReferenceException
  OS Version:   6.1.7601.2.1.0.768.3
  Locale ID:   2057

fenixproductions

  • Honorary Member
  • Joined in 2006
  • **
  • Posts: 1,186
    • View Profile
    • Donate to Member
Re: BBCeditor 1.0.30
« Reply #188 on: July 21, 2012, 02:12 PM »
@paulhypno
Please download again and check:
http://fenixproducti...c/BBCeditor1133b.zip

I have added system logging and disabled one option.
In case of problems, please check System Events log (Applications part) and paste error message here in spoiler tag.

paulhypno

  • Participant
  • Joined in 2012
  • *
  • default avatar
  • Posts: 8
    • View Profile
    • Donate to Member
Re: BBCeditor 1.0.30
« Reply #189 on: July 21, 2012, 03:18 PM »
@paulhypno
Please download again and check:
http://fenixproducti...c/BBCeditor1133b.zip

I have added system logging and disabled one option.
In case of problems, please check System Events log (Applications part) and paste error message here in spoiler tag.

-fenixproductions (July 21, 2012, 02:12 PM)

Thanks for your hard work! Is this what you mean? (It's from the report.wer file)

Spoiler
Version=1
EventType=CLR20r3
EventTime=129873747030632834
ReportType=2
Consent=1
ReportIdentifier=5b12ebf2-d36f-11e1-bdf7-d4bed9cb6475
Response.type=4
Sig[0].Name=Problem Signature 01
Sig[0].Value=bbceditor.exe
Sig[1].Name=Problem Signature 02
Sig[1].Value=1.1.33.0
Sig[2].Name=Problem Signature 03
Sig[2].Value=500b070f
Sig[3].Name=Problem Signature 04
Sig[3].Value=System
Sig[4].Name=Problem Signature 05
Sig[4].Value=2.0.0.0
Sig[5].Name=Problem Signature 06
Sig[5].Value=4ef6caea
Sig[6].Name=Problem Signature 07
Sig[6].Value=38bf
Sig[7].Name=Problem Signature 08
Sig[7].Value=116
Sig[8].Name=Problem Signature 09
Sig[8].Value=System.Security.Security
DynamicSig[1].Name=OS Version
DynamicSig[1].Value=6.1.7601.2.1.0.768.3
DynamicSig[2].Name=Locale ID
DynamicSig[2].Value=2057
UI[2]=C:\Users\Paul\Downloads\BBCeditor1133b\BBCeditor1133\BBCeditor.exe
UI[3]=BBCeditor has stopped working
UI[4]=Windows can check online for a solution to the problem.
UI[5]=Check online for a solution and close the program
UI[6]=Check online for a solution later and close the program
UI[7]=Close the program
LoadedModule[0]=C:\Users\Paul\Downloads\BBCeditor1133b\BBCeditor1133\BBCeditor.exe
LoadedModule[1]=C:\Windows\SYSTEM32\ntdll.dll
LoadedModule[2]=C:\Windows\SYSTEM32\MSCOREE.DLL
LoadedModule[3]=C:\Windows\system32\KERNEL32.dll
LoadedModule[4]=C:\Windows\system32\KERNELBASE.dll
LoadedModule[5]=C:\Windows\system32\ADVAPI32.dll
LoadedModule[6]=C:\Windows\system32\msvcrt.dll
LoadedModule[7]=C:\Windows\SYSTEM32\sechost.dll
LoadedModule[8]=C:\Windows\system32\RPCRT4.dll
LoadedModule[9]=C:\Windows\Microsoft.NET\Framework64\v4.0.30319\mscoreei.dll
LoadedModule[10]=C:\Windows\system32\SHLWAPI.dll
LoadedModule[11]=C:\Windows\system32\GDI32.dll
LoadedModule[12]=C:\Windows\system32\USER32.dll
LoadedModule[13]=C:\Windows\system32\LPK.dll
LoadedModule[14]=C:\Windows\system32\USP10.dll
LoadedModule[15]=C:\Windows\system32\IMM32.DLL
LoadedModule[16]=C:\Windows\system32\MSCTF.dll
LoadedModule[17]=C:\Windows\Microsoft.NET\Framework64\v2.0.50727\mscorwks.dll
LoadedModule[18]=C:\Windows\WinSxS\amd64_microsoft.vc80.crt_1fc8b3b9a1e18e3b_8.0.50727.4940_none_88df89932faf0bf6\MSVCR80.dll
LoadedModule[19]=C:\Windows\system32\shell32.dll
LoadedModule[20]=C:\Windows\system32\ole32.dll
LoadedModule[21]=C:\Windows\system32\profapi.dll
LoadedModule[22]=C:\Windows\assembly\NativeImages_v2.0.50727_64\mscorlib\f73f0a9c9a83dcd3ff428be509a7992f\mscorlib.ni.dll
LoadedModule[23]=C:\Windows\system32\CRYPTBASE.dll
LoadedModule[24]=C:\Windows\system32\uxtheme.dll
LoadedModule[25]=C:\Program Files (x86)\Ad Muncher\AM64-32562.dll
LoadedModule[26]=C:\Windows\system32\ws2_32.dll
LoadedModule[27]=C:\Windows\system32\NSI.dll
LoadedModule[28]=C:\Program Files (x86)\Direct Folders\dfh64.dll
LoadedModule[29]=C:\Windows\Microsoft.NET\Framework64\v2.0.50727\mscorjit.dll
LoadedModule[30]=C:\Windows\assembly\NativeImages_v2.0.50727_64\System\c40ec0f4cd203c880298f94c0427dd54\System.ni.dll
LoadedModule[31]=C:\Windows\assembly\NativeImages_v2.0.50727_64\System.Drawing\222eb8aa336953a6b0216db2b0c4770d\System.Drawing.ni.dll
LoadedModule[32]=C:\Windows\assembly\NativeImages_v2.0.50727_64\System.Windows.Forms\dc5bb74eefdbf954cdfb70dd534d5564\System.Windows.Forms.ni.dll
LoadedModule[33]=C:\Windows\system32\dwmapi.dll
LoadedModule[34]=C:\Windows\system32\CRYPTSP.dll
LoadedModule[35]=C:\Windows\system32\rsaenh.dll
LoadedModule[36]=C:\Windows\system32\RpcRtRemote.dll
LoadedModule[37]=C:\Users\Paul\Downloads\BBCeditor1133b\BBCeditor1133\NetSpell.SpellChecker.dll
LoadedModule[38]=C:\Windows\WinSxS\amd64_microsoft.windows.gdiplus_6595b64144ccf1df_1.1.7601.17825_none_2b253c8271ec7765\gdiplus.dll
LoadedModule[39]=C:\Windows\system32\RichEd20.DLL
LoadedModule[40]=C:\Windows\system32\version.dll
LoadedModule[41]=C:\Windows\system32\CLBCatQ.DLL
LoadedModule[42]=C:\Windows\system32\OLEAUT32.dll
LoadedModule[43]=C:\Windows\System32\ieframe.dll
LoadedModule[44]=C:\Windows\system32\PSAPI.DLL
LoadedModule[45]=C:\Windows\System32\OLEACC.dll
LoadedModule[46]=C:\Windows\system32\iertutil.dll
LoadedModule[47]=C:\Windows\WinSxS\amd64_microsoft.windows.common-controls_6595b64144ccf1df_6.0.7601.17514_none_fa396087175ac9ac\comctl32.dll
LoadedModule[48]=C:\Windows\system32\SXS.DLL
LoadedModule[49]=C:\Windows\system32\WindowsCodecs.dll
LoadedModule[50]=C:\Windows\system32\apphelp.dll
FriendlyEventName=Stopped working
ConsentKey=CLR20r3
AppName=BBCeditor
AppPath=C:\Users\Paul\Downloads\BBCeditor1133b\BBCeditor1133\BBCeditor.exe
ReportDescription=Stopped working


fenixproductions

  • Honorary Member
  • Joined in 2006
  • **
  • Posts: 1,186
    • View Profile
    • Donate to Member
Re: BBCeditor 1.0.30
« Reply #190 on: July 21, 2012, 03:28 PM »
@paulhypno
I rather meant to look here:
http://www.techrepub...ower-boot-times/3253

cranioscopical

  • Friend of the Site
  • Supporting Member
  • Joined in 2006
  • **
  • Posts: 4,776
    • View Profile
    • Donate to Member
Re: BBCeditor 1.0.30
« Reply #191 on: July 21, 2012, 03:35 PM »
Hi fenix!

This one (1133b) is different. Instead of refusing to start at all it runs but appears to do nothing more (see log).
Thanks for working on this  :Thmbsup:

1133b
Exception: Object reference not set to an instance of an object.

Stack:    at BBCeditor.Form1.Form1_Resize(Object sender, EventArgs e) in D:\code\Projects2010\BBCeditor\BBCeditor\Form1.cs:line 56
   at System.Windows.Forms.Control.OnResize(EventArgs e)
   at System.Windows.Forms.Form.OnResize(EventArgs e)
   at System.Windows.Forms.Control.OnSizeChanged(EventArgs e)
   at System.Windows.Forms.Control.UpdateBounds(Int32 x, Int32 y, Int32 width, Int32 height, Int32 clientWidth, Int32 clientHeight)
   at System.Windows.Forms.Control.UpdateBounds(Int32 x, Int32 y, Int32 width, Int32 height)
   at System.Windows.Forms.Control.SetBoundsCore(Int32 x, Int32 y, Int32 width, Int32 height, BoundsSpecified specified)
   at System.Windows.Forms.Form.SetBoundsCore(Int32 x, Int32 y, Int32 width, Int32 height, BoundsSpecified specified)
   at System.Windows.Forms.Control.ScaleControl(SizeF factor, BoundsSpecified specified)
   at System.Windows.Forms.ScrollableControl.ScaleControl(SizeF factor, BoundsSpecified specified)
   at System.Windows.Forms.Form.ScaleControl(SizeF factor, BoundsSpecified specified)
   at System.Windows.Forms.Control.ScaleControl(SizeF includedFactor, SizeF excludedFactor, Control requestingControl)
   at System.Windows.Forms.ContainerControl.Scale(SizeF includedFactor, SizeF excludedFactor, Control requestingControl)
   at System.Windows.Forms.ContainerControl.PerformAutoScale(Boolean includedBounds, Boolean excludedBounds)
   at System.Windows.Forms.ContainerControl.OnLayoutResuming(Boolean performLayout)
   at System.Windows.Forms.Control.ResumeLayout(Boolean performLayout)
   at BBCeditor.Form1.InitializeComponent() in D:\code\Projects2010\BBCeditor\BBCeditor\Form1.Designer.cs:line 1595
   at BBCeditor.Form1..ctor() in D:\code\Projects2010\BBCeditor\BBCeditor\Form1.cs:line 43
   at BBCeditor.Program.Main() in D:\code\Projects2010\BBCeditor\BBCeditor\Program.cs:line 21


fenixproductions

  • Honorary Member
  • Joined in 2006
  • **
  • Posts: 1,186
    • View Profile
    • Donate to Member
Re: BBCeditor 1.0.30
« Reply #192 on: July 21, 2012, 03:57 PM »
@cranioscopical
Please re-download little update:
http://fenixproducti...c/BBCeditor1133c.zip

Except standard error message please take a look at system event log too.

cranioscopical

  • Friend of the Site
  • Supporting Member
  • Joined in 2006
  • **
  • Posts: 4,776
    • View Profile
    • Donate to Member
Re: BBCeditor 1.0.30
« Reply #193 on: July 21, 2012, 07:23 PM »
@cranioscopical
Please re-download little update:
http://fenixproducti...c/BBCeditor1133c.zip

Except standard error message please take a look at system event log too.
-fenixproductions (July 21, 2012, 03:57 PM)

                     

Hooray, hooray!

This reply is written with 1133c!!!

Well done, and thank you.

                     



paulhypno

  • Participant
  • Joined in 2012
  • *
  • default avatar
  • Posts: 8
    • View Profile
    • Donate to Member
Re: BBCeditor 1.0.30
« Reply #194 on: July 22, 2012, 01:05 AM »



                     

Hooray, hooray!
...

Well done, and thank you.

                     



-cranioscopical (July 21, 2012, 07:23 PM)

I second that!!  :beerchug: All working, Brilliant  :Thmbsup:

fenixproductions

  • Honorary Member
  • Joined in 2006
  • **
  • Posts: 1,186
    • View Profile
    • Donate to Member
Re: BBCeditor 1.0.30
« Reply #195 on: July 22, 2012, 04:30 AM »
It appears this was not my bug at all.

Little more info:
http://bytes.com/top...t-set-resizing-panel

ioncube

  • Participant
  • Joined in 2012
  • *
  • Posts: 6
    • View Profile
    • Donate to Member
Re: BBCeditor 1.0.30
« Reply #196 on: August 01, 2012, 12:24 PM »
@fenixproductions
sir, can you provide a simple example of how to use your new regexp tags.

e,g plz show me what I have to write in 'Expression' & 'Replacement' such that I achieve following BBCode replacement

BBcode: [yell]{sometext}[/yell]
HTML:<div style="background:yellow">{sometext}</div>

thanx

Target

  • Honorary Member
  • Joined in 2006
  • **
  • Posts: 1,832
    • View Profile
    • Donate to Member
Re: BBCeditor 1.0.30
« Reply #197 on: August 01, 2012, 03:38 PM »
a feature request

I'll admit to not following this thread closely so this may have already been requested, but here goes anyway

I would like the option to add a link (toolbar button?) to an external application, eg mobysaurus and/or wordweb. 

no biggy, but these kind of go hand in hand for me


fenixproductions

  • Honorary Member
  • Joined in 2006
  • **
  • Posts: 1,186
    • View Profile
    • Donate to Member
Re: BBCeditor 1.0.30
« Reply #198 on: August 02, 2012, 01:40 PM »
@ioncube
Expression: \[yell](.*?)\[/yell]
Replacement: <div style="background:yellow">$1</div>

I will try to sit down on weekend and provide package with some buttons preconfigured for this feature.

@Target
I will check what I can do.
The problem here is: I am always overthinking things, so now I have not only an idea for starting external application with some parameters BUT to also have WM_MESSAGES support. Darn me ;)

cranioscopical

  • Friend of the Site
  • Supporting Member
  • Joined in 2006
  • **
  • Posts: 4,776
    • View Profile
    • Donate to Member
Re: BBCeditor 1.0.30
« Reply #199 on: August 02, 2012, 03:24 PM »
Hey fenix — never do things by halves (when you can do them by quarters).  :Thmbsup: