Tagged Questions

ICSharpCode.TextEditor is a syntax highlighting control for .NET program. It comes from the open source IDE SharpDevelop. It's available under LGPL license.

learn more… | top users | synonyms

7
votes
1answer
212 views

Lisp syntax highlighting for ICSharpCode.TextEditor

Is there a Common Lisp syntax highlighting .xshd file for use with ICSharpCode.TextEditor? I haven't been able to find one on google, and the format for writing syntax highlighting specification files ...
6
votes
3answers
544 views

ICSharpCode.SharpZipLib.Zip.FastZip not zipping files having special characters in their file names

I am using ICSharpCode.SharpZipLib.Zip.FastZip to zip files but I'm stuck on a problem. When I try to zip a file with special characters in its file name, it does not work. It works when there is no ...
3
votes
1answer
251 views

What's wrong with my application -— Size was 0, but I expected 46806 !

I'm a C# programmer. Now, I'm using the ICSharpCode.SharpZipLib.dll to create a zip file in my current project. But it occurs to me that when I click the button at the SECOND TIME to execute a ...
3
votes
1answer
446 views

Using AvalonEdit in Sharpdevelop 3.x

I am very curious to know if it is possible to replace the normal ICSharpCode.TextEditor with AvalonEdit in Sharpdevelop 3.x. Frankly speaking AvalonEdit is way too better than ICSharpCode.TextEditor, ...
3
votes
2answers
199 views

ICSharpCode Under Mono?

Has anyone tried getting the ICSharpCode.TextEditor library to work in Ubuntu under Mono? I know it uses quite a few P/Invoke methods, If anyone found a way to get around these it would be good help ...
2
votes
1answer
52 views

ICSharp text editor for Mono

I know there is a text-editing control which was built for MonoDevelop, but where exactly is it? In the AddIns and bin folder of MonoDevelop in Program Files after installation, there a bunch of DLL ...
2
votes
2answers
369 views

ICSharpCode.SharpZipLib.Zip crc32 problem

I am using ICSharpCode.SharpZipLib.Zip to compress the files and folders and pass it as memorystream using response.Binary write. Here is my code: MemoryStream df= new MemoryStream(); ...
2
votes
0answers
100 views

ICSharpCode.TextEditor Veritical Scrolling

Is it possible to configure vertical scrolling in ICSharpCode.TextEditor such that by default no vertical scrollbar is visible. And that only when someone types a lot of lines (beyond current height ...
2
votes
2answers
588 views

ICSharpCode.TextEditor - KeyDown problem

I'm trying to create an auto-complete function for the ICSharpCode.TextEditor. But the fileTabs_KeyDown doesn't recognize Enter/Backspace/Tab/... I tried to add a new KeyEventHandler to the active ...
1
vote
1answer
105 views

What ever happened to #WT?

What ever happed to #WT (SharpWT) by ICSharpCode, a port of SWT from JVM to .NET? I can't find it anywhere. Thanks. I've tried looking forward it on the net, but cant find it. It would be especially ...
1
vote
2answers
698 views

Configuring Intellisense in ICSharpCode.TextEditor

I can't understand how to let Intellisense work in ICSharpCode.TextEditor. As of today, replies are incomplete. On the web, there are no samples... I need to display a completion box with my custom ...
1
vote
1answer
1k views

Using ICSharpCode.TextEditor on VB.NET

I've integrated ICSharpCode.TextEditor into VB.NET and it run smoothly without error. But, I cannot find in properties window the property to enable or select the syntax highlighting features as well ...
1
vote
3answers
1k views

Word Wrap in ICSharpcode TextEditor

I'm using the ICSharpcode text editor, and I am looking for a way to do Word Wrap in it. Is there any documentation for this other than the source code? My only documentation so far has been the ...
0
votes
6answers
117 views

Convert ArrayList into string array(string[]) in c#

How can I convert ArrayList into string[] in C#?
0
votes
0answers
150 views

ICSharpCode.SharpZipLib FastZip Programm Crash

I am using ICSharpCode.SharpZipLib.dll for unpacking a ZIP. Because I am lazy I use the FastZip just like FastZip zip = new FastZip(); zip.ExtractZip("myzip.dazip", @"c:\users\me\desktop", ...
0
votes
1answer
90 views

How do I highlight syntax errors using ICSharpCode.TextEditor.TextEditorControl?

I'm using ICSharpCode.TextEditor.TextEditorControl as my DSL editor. When I get DSL compilation errors, I would like to highlight the offending text to provide a better user experience. However, I'm ...
0
votes
1answer
71 views

ICSharpCode.TextEditor undo/redo state

I'm trying to implement undo/redo feature in my custom application that displays code using ICSharpCode.TextEditor. TextEditor fully supports undo and redo. But unfortunately, the control is poorly ...
0
votes
1answer
178 views

How to generate C# code from ICompilationUnit (ICSharpCode)

I'm trying to update an existing C# code. The code is parsed using ICSharpCode.NRefactory.IParser. My system is using widely ICompilationUnit to explore existing code. Now, I want to add a method to ...
0
votes
0answers
49 views

Make text Bold in iCSharpcode.Texteditor

How do I make a line of text bold in iCSharpcode.Texteditor
0
votes
1answer
362 views

what is ICSharpCode.SharpZipLib.ZipEntry.Flag?

Will any one please give an example, I googled but not found any suitable result. I want to give flag so that it compress the file with its original name in case of file name with special ...
0
votes
2answers
257 views

Most used DRM systems for ebooks

i want to create ebook reader application in c#. I want to know which DRM systems exists for using with ebooks. Thanks.
0
votes
0answers
212 views

ICSharpCode zipfile creation error!

The following code works on my machine but not in server: using (ZipFile zipFile = ZipFile.Create(outPath)) { if (!includeFolders) { zipFile.NameTransform = new ...
0
votes
1answer
1k views

ICSharpCode.TextEditor - Change Syntax Colors

I'm using the ICSharpCode.TextEditor and want to change the syntax colors... in the namespace ICSharpCode.TextEditor.Document there is the public class HighlightColor but I don't know how to ...
-13
votes
3answers
178 views

C# to Java conversion? [closed]

How can convert the following C# code to Java? int bgDelta = Convert.ToInt32((bg.getRed() * 0.299) + (bg.getGreen() * 0.587) + (bg.getBlue() * 0.114));