Web Studio Ideas

Input on a Web Site Design Studio

  • (7 Pages)
  • +
  • « First
  • 4
  • 5
  • 6
  • 7

96 Replies - 15151 Views - Last Post: 02 January 2010 - 07:00 PM

#64 dom96   User is offline

  • D.I.C Regular

Reputation: 4
  • View blog
  • Posts: 256
  • Joined: 29-December 08

Re: Web Studio Ideas

Posted 15 April 2009 - 12:34 PM

View Postmrmcpott, on 15 Apr, 2009 - 09:27 AM, said:

Quote

Want me to tell you how i made mine ?


That'd be helpfull, if you didn't mind.

Well here i made a control which is basically a richtextbox with syntax highlighting capabilities it should give you a basic idea on how to add syntax highlighting to your apps.
The bad thing is that for html and css(and other languages) Syntax highlighting you should learn regex for matching of tags etc(it took me a while to figure out what regex patterns i should use)
Attached File  SyntaxRTB.zip (1.58K)
Number of downloads: 73
After you add it to your form you can use this code at the Load event to add Regex patterns(or just what to replace(Using String.Replace))
SyntaxRTB1.Add("<!--.*-->", Color.Green, True)


Hope this helps

This post has been edited by dom96: 15 April 2009 - 12:37 PM

Was This Post Helpful? 0
  • +
  • -

#65 sbell1099   User is offline

  • Inspiring StoryTeller
  • member icon

Reputation: 16
  • View blog
  • Posts: 685
  • Joined: 28-October 08

Re: Web Studio Ideas

Posted 15 April 2009 - 06:17 PM

just a offer you can host the software on one of my servers and I'll give you full ftp access an put what ever cms or some system on there to host this.all for free no ads on page aswell
Was This Post Helpful? 0
  • +
  • -

#66 mrmcpott   User is offline

  • D.I.C Head
  • member icon

Reputation: 5
  • View blog
  • Posts: 95
  • Joined: 24-November 08

Re: Web Studio Ideas

Posted 15 April 2009 - 10:14 PM

View Postdom96, on 15 Apr, 2009 - 11:34 AM, said:

View Postmrmcpott, on 15 Apr, 2009 - 09:27 AM, said:

Quote

Want me to tell you how i made mine ?


That'd be helpfull, if you didn't mind.

Well here i made a control which is basically a richtextbox with syntax highlighting capabilities it should give you a basic idea on how to add syntax highlighting to your apps.
The bad thing is that for html and css(and other languages) Syntax highlighting you should learn regex for matching of tags etc(it took me a while to figure out what regex patterns i should use)
Attachment attachment
After you add it to your form you can use this code at the Load event to add Regex patterns(or just what to replace(Using String.Replace))
SyntaxRTB1.Add("<!--.*-->", Color.Green, True)


Hope this helps


Thanks, I'll take a look at your example. From the .Add thing it reminds me of a project from CodeProject, something along the lines of a RTB Wrapper.
Was This Post Helpful? 0
  • +
  • -

#67 dom96   User is offline

  • D.I.C Regular

Reputation: 4
  • View blog
  • Posts: 256
  • Joined: 29-December 08

Re: Web Studio Ideas

Posted 16 April 2009 - 05:11 AM

View Postmrmcpott, on 15 Apr, 2009 - 09:14 PM, said:

View Postdom96, on 15 Apr, 2009 - 11:34 AM, said:

View Postmrmcpott, on 15 Apr, 2009 - 09:27 AM, said:

Quote

Want me to tell you how i made mine ?


That'd be helpfull, if you didn't mind.

Well here i made a control which is basically a richtextbox with syntax highlighting capabilities it should give you a basic idea on how to add syntax highlighting to your apps.
The bad thing is that for html and css(and other languages) Syntax highlighting you should learn regex for matching of tags etc(it took me a while to figure out what regex patterns i should use)
Attachment attachment
After you add it to your form you can use this code at the Load event to add Regex patterns(or just what to replace(Using String.Replace))
SyntaxRTB1.Add("<!--.*-->", Color.Green, True)


Hope this helps


Thanks, I'll take a look at your example. From the .Add thing it reminds me of a project from CodeProject, something along the lines of a RTB Wrapper.

Yeah it is similar, but my version works much faster then any that i found on codeproject, i might actually add some more features like font changing, background color changing to my SyntaxRTB and Post it on codeproject

This post has been edited by dom96: 16 April 2009 - 05:12 AM

Was This Post Helpful? 0
  • +
  • -

#68 mrmcpott   User is offline

  • D.I.C Head
  • member icon

Reputation: 5
  • View blog
  • Posts: 95
  • Joined: 24-November 08

Re: Web Studio Ideas

Posted 16 April 2009 - 06:39 AM

View Postdom96, on 16 Apr, 2009 - 04:11 AM, said:

View Postmrmcpott, on 15 Apr, 2009 - 09:14 PM, said:

View Postdom96, on 15 Apr, 2009 - 11:34 AM, said:

View Postmrmcpott, on 15 Apr, 2009 - 09:27 AM, said:

Quote

Want me to tell you how i made mine ?


That'd be helpfull, if you didn't mind.

Well here i made a control which is basically a richtextbox with syntax highlighting capabilities it should give you a basic idea on how to add syntax highlighting to your apps.
The bad thing is that for html and css(and other languages) Syntax highlighting you should learn regex for matching of tags etc(it took me a while to figure out what regex patterns i should use)
Attachment attachment
After you add it to your form you can use this code at the Load event to add Regex patterns(or just what to replace(Using String.Replace))
SyntaxRTB1.Add("<!--.*-->", Color.Green, True)


Hope this helps


Thanks, I'll take a look at your example. From the .Add thing it reminds me of a project from CodeProject, something along the lines of a RTB Wrapper.

Yeah it is similar, but my version works much faster then any that i found on codeproject, i might actually add some more features like font changing, background color changing to my SyntaxRTB and Post it on codeproject


Yes, your control is much faster than that RTB Wrapper (that thing freezes up horribly). I'm glad that you were willing to share your syntax highlihgter. Since I really do not have time for tutorials, the docking toolbars and menus can be located here. If you have any questions about getting it to work, feel free to ask me.
Was This Post Helpful? 0
  • +
  • -

#69 dom96   User is offline

  • D.I.C Regular

Reputation: 4
  • View blog
  • Posts: 256
  • Joined: 29-December 08

Re: Web Studio Ideas

Posted 16 April 2009 - 06:59 AM

View Postmrmcpott, on 16 Apr, 2009 - 05:39 AM, said:

View Postdom96, on 16 Apr, 2009 - 04:11 AM, said:

View Postmrmcpott, on 15 Apr, 2009 - 09:14 PM, said:

View Postdom96, on 15 Apr, 2009 - 11:34 AM, said:

View Postmrmcpott, on 15 Apr, 2009 - 09:27 AM, said:

Quote

Want me to tell you how i made mine ?


That'd be helpfull, if you didn't mind.

Well here i made a control which is basically a richtextbox with syntax highlighting capabilities it should give you a basic idea on how to add syntax highlighting to your apps.
The bad thing is that for html and css(and other languages) Syntax highlighting you should learn regex for matching of tags etc(it took me a while to figure out what regex patterns i should use)
Attachment attachment
After you add it to your form you can use this code at the Load event to add Regex patterns(or just what to replace(Using String.Replace))
SyntaxRTB1.Add("<!--.*-->", Color.Green, True)


Hope this helps


Thanks, I'll take a look at your example. From the .Add thing it reminds me of a project from CodeProject, something along the lines of a RTB Wrapper.

Yeah it is similar, but my version works much faster then any that i found on codeproject, i might actually add some more features like font changing, background color changing to my SyntaxRTB and Post it on codeproject


Yes, your control is much faster than that RTB Wrapper (that thing freezes up horribly). I'm glad that you were willing to share your syntax highlihgter. Since I really do not have time for tutorials, the docking toolbars and menus can be located here. If you have any questions about getting it to work, feel free to ask me.

Thanks a lot, i'll check it out
Was This Post Helpful? 0
  • +
  • -

#70 mrmcpott   User is offline

  • D.I.C Head
  • member icon

Reputation: 5
  • View blog
  • Posts: 95
  • Joined: 24-November 08

Re: Web Studio Ideas

Posted 16 April 2009 - 07:00 AM

View Postdom96, on 16 Apr, 2009 - 05:59 AM, said:

View Postmrmcpott, on 16 Apr, 2009 - 05:39 AM, said:

View Postdom96, on 16 Apr, 2009 - 04:11 AM, said:

View Postmrmcpott, on 15 Apr, 2009 - 09:14 PM, said:

View Postdom96, on 15 Apr, 2009 - 11:34 AM, said:

View Postmrmcpott, on 15 Apr, 2009 - 09:27 AM, said:

Quote

Want me to tell you how i made mine ?


That'd be helpfull, if you didn't mind.

Well here i made a control which is basically a richtextbox with syntax highlighting capabilities it should give you a basic idea on how to add syntax highlighting to your apps.
The bad thing is that for html and css(and other languages) Syntax highlighting you should learn regex for matching of tags etc(it took me a while to figure out what regex patterns i should use)
Attachment attachment
After you add it to your form you can use this code at the Load event to add Regex patterns(or just what to replace(Using String.Replace))
SyntaxRTB1.Add("<!--.*-->", Color.Green, True)


Hope this helps


Thanks, I'll take a look at your example. From the .Add thing it reminds me of a project from CodeProject, something along the lines of a RTB Wrapper.

Yeah it is similar, but my version works much faster then any that i found on codeproject, i might actually add some more features like font changing, background color changing to my SyntaxRTB and Post it on codeproject


Yes, your control is much faster than that RTB Wrapper (that thing freezes up horribly). I'm glad that you were willing to share your syntax highlihgter. Since I really do not have time for tutorials, the docking toolbars and menus can be located here. If you have any questions about getting it to work, feel free to ask me.

Thanks a lot, i'll check it out


No problem.
Was This Post Helpful? 0
  • +
  • -

#71 mrmcpott   User is offline

  • D.I.C Head
  • member icon

Reputation: 5
  • View blog
  • Posts: 95
  • Joined: 24-November 08

Re: Web Studio Ideas

Posted 17 April 2009 - 07:31 AM

I have made the drastic decision to restart the development of Skylight from scratch. The redesign is necessary to allow for greater functionality and expansion in the future.
Was This Post Helpful? 0
  • +
  • -

#72 dom96   User is offline

  • D.I.C Regular

Reputation: 4
  • View blog
  • Posts: 256
  • Joined: 29-December 08

Re: Web Studio Ideas

Posted 17 April 2009 - 08:44 AM

View Postmrmcpott, on 17 Apr, 2009 - 06:31 AM, said:

I have made the drastic decision to restart the development of Skylight from scratch. The redesign is necessary to allow for greater functionality and expansion in the future.

What ?!? :blink: :crazy: why ?
Was This Post Helpful? 0
  • +
  • -

#73 mrmcpott   User is offline

  • D.I.C Head
  • member icon

Reputation: 5
  • View blog
  • Posts: 95
  • Joined: 24-November 08

Re: Web Studio Ideas

Posted 17 April 2009 - 09:20 AM

View Postdom96, on 17 Apr, 2009 - 07:44 AM, said:

View Postmrmcpott, on 17 Apr, 2009 - 06:31 AM, said:

I have made the drastic decision to restart the development of Skylight from scratch. The redesign is necessary to allow for greater functionality and expansion in the future.

What ?!? :blink: :crazy: why ?


I'm overhauling the IDE. It won't take that long to do. The new IDE update will make using skylight much easier. And, it's probably going to be open source...
Was This Post Helpful? 0
  • +
  • -

#74 dom96   User is offline

  • D.I.C Regular

Reputation: 4
  • View blog
  • Posts: 256
  • Joined: 29-December 08

Re: Web Studio Ideas

Posted 17 April 2009 - 10:07 AM

View Postmrmcpott, on 17 Apr, 2009 - 08:20 AM, said:

View Postdom96, on 17 Apr, 2009 - 07:44 AM, said:

View Postmrmcpott, on 17 Apr, 2009 - 06:31 AM, said:

I have made the drastic decision to restart the development of Skylight from scratch. The redesign is necessary to allow for greater functionality and expansion in the future.

What ?!? :blink: :crazy: why ?


I'm overhauling the IDE. It won't take that long to do. The new IDE update will make using skylight much easier. And, it's probably going to be open source...

Oh, well just remember you have competition lol
Was This Post Helpful? 0
  • +
  • -

#75 mrmcpott   User is offline

  • D.I.C Head
  • member icon

Reputation: 5
  • View blog
  • Posts: 95
  • Joined: 24-November 08

Re: Web Studio Ideas

Posted 17 April 2009 - 10:10 AM

lol, i am aware of that :P i like your HTML editor, im curious what you will do with it in the future. And open studio seems to be sprouting up now too, i wonder if they will have web support. Who knows, lol.

Let the competition begin!
Was This Post Helpful? 0
  • +
  • -

#76 dom96   User is offline

  • D.I.C Regular

Reputation: 4
  • View blog
  • Posts: 256
  • Joined: 29-December 08

Re: Web Studio Ideas

Posted 17 April 2009 - 10:25 AM

View Postmrmcpott, on 17 Apr, 2009 - 09:10 AM, said:

lol, i am aware of that :P i like your HTML editor, im curious what you will do with it in the future. And open studio seems to be sprouting up now too, i wonder if they will have web support. Who knows, lol.

Let the competition begin!

lol, i still have quite a bit of features planned and a lot of bugs to fix lol :P, but i'm working on the validator now

This post has been edited by dom96: 17 April 2009 - 10:25 AM

Was This Post Helpful? 0
  • +
  • -

#77 mrmcpott   User is offline

  • D.I.C Head
  • member icon

Reputation: 5
  • View blog
  • Posts: 95
  • Joined: 24-November 08

Re: Web Studio Ideas

Posted 17 April 2009 - 11:30 AM

View Postdom96, on 17 Apr, 2009 - 09:25 AM, said:

View Postmrmcpott, on 17 Apr, 2009 - 09:10 AM, said:

lol, i am aware of that :P i like your HTML editor, im curious what you will do with it in the future. And open studio seems to be sprouting up now too, i wonder if they will have web support. Who knows, lol.

Let the competition begin!

lol, i still have quite a bit of features planned and a lot of bugs to fix lol :P, but i'm working on the validator now


I have tons upon tons of features planned and a very nasty bug when closing the application. lol. who knows, maybe we could collaborate? :)
Was This Post Helpful? 0
  • +
  • -

#78 dom96   User is offline

  • D.I.C Regular

Reputation: 4
  • View blog
  • Posts: 256
  • Joined: 29-December 08

Re: Web Studio Ideas

Posted 17 April 2009 - 12:11 PM

View Postmrmcpott, on 17 Apr, 2009 - 10:30 AM, said:

View Postdom96, on 17 Apr, 2009 - 09:25 AM, said:

View Postmrmcpott, on 17 Apr, 2009 - 09:10 AM, said:

lol, i am aware of that :P i like your HTML editor, im curious what you will do with it in the future. And open studio seems to be sprouting up now too, i wonder if they will have web support. Who knows, lol.

Let the competition begin!

lol, i still have quite a bit of features planned and a lot of bugs to fix lol :P, but i'm working on the validator now


I have tons upon tons of features planned and a very nasty bug when closing the application. lol. who knows, maybe we could collaborate? :)

I don't mind, do you have MSN ?
Was This Post Helpful? 0
  • +
  • -

  • (7 Pages)
  • +
  • « First
  • 4
  • 5
  • 6
  • 7