Thanks for the quick reply! I suspected it might be a case of having to build it from the ground up.
Thanks,
Peter
User Profile
Collapse
-
How To Make Review / Comment Balloons in C#
Hi there,
In later versions of Microsoft Word, you can make 'comments' on what someone has written... and a line comes out to a neat little bubble which you can write some text in. I'd like to incorporate this kind of feature into an app I'm writing.
Does anyone know how you'd go about this? I looked at the ToolTip class, but it seems limited - and the 'bubble' needs to be:
-multiline
-able to... -
Hey thanks so much for that. The secondary field idea would work well - and seeing as the verse databases are static it would be a once-only operation. I've never really had a lot of luck with regex expressions so I'll give the first idea a try i reckon.
Cheers,
PeterLeave a comment:
-
Punctuation mucking up DataView RowFilter and LIKE statement
Hi,
The Background
I'm working on a Bible searching application, and I have a DataTable with a whole lot of verses in it that I'm wanting to search. So I'm using a DataView with a RowFilter to search through the text to return rows with a particular word. A sample of the code is as follows:
Code:public int SearchVerses(string searchtext) { searchtext = searchtext.Replace("'","\\'");
-
Regex Expression - HELP!
Hi there,
I'm having trouble using the C# regex function and any help would be appreciated!
Here's a snippet of the code I'm using:
Code:matches = regex.Matches(txtInput.Text,@txtRegEx.Text,RegexOptions.IgnoreCase); foreach (Match NextMatch in matches) { rtbOutput.Text += "Match Found\n"; }
-
Got it working now... the trouble wasn't with IsolatedStorage - rather it was that the SaveModuleSetti ngs function was being called multiple times....Leave a comment:
-
Oops - the two filenames above are not the same - I changed the filename for the purpose of posting this question. However, they are the same in the actual file I'm using... sorry....Leave a comment:
-
Having trouble with IsolatedStorage persistence in .NET
Hi there,
I'm working on a Windows application in C# and wanting to persist MDI window states so that when a user opens the application, it looks like it did when they closed it down.
I've been using the IsolatedFileSto rage to save a class with the settings in it. I've set breakpoints in the program and watched as the correct values are supposedly 'saved' in the IsolatedFileSto rage location. But then when I load them...
No activity results to display
Show More
Leave a comment: