active questions tagged text - Stack Overflow most recent 30 from stackoverflow.com 2009-11-28T19:59:15Z http://stackoverflow.com/feeds/tag/text http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1398564/oracle-text-url-indexing-performance 1 Oracle Text URL indexing performance Visage 2009-09-09T09:33:16Z 2009-11-28T18:00:02Z <p>I have an oracle table that has two columns - id and url.</p> <p>The URL is simply <a href="http://somemachinename/mypage.php?id=" rel="nofollow">http://somemachinename/mypage.php?id=</a></p> <p>I then create an oracle text index using the URL datastore on the url column.</p> <p>If I then do: </p> <pre><code>BEGIN ctx_ddl.sync_index(idx_name =&gt; 'MY_INDEX', memory =&gt; '50M', parallel_degree =&gt; 4); END; / </code></pre> <p>Then if I look at the apache logs on somemachinename I can see oracle requesting all of the URLs in turn.</p> <p>The problem is that oracle requests about 60 urls in turn and then stops for 15s, before requesting another 60-ish urls.</p> <p>The amount of data in the html page is small - less than 3k, so 60 pages shouldnt be filling any buffers - and even if it were it shouldnt take 15s to clear them.</p> <p>Running wireshark shows that the delay is definitely in the requests arriving (rather than a problem with the webserver), so I dont know what Oracle is doing in those 15s.</p> <p>The indexing is a big job (the table has about 2m rows), and it currently takes a week, wheras without the del;ays I think it would be more like hours....</p> <p>Any thoughts?</p> http://stackoverflow.com/questions/125703/how-do-i-modify-a-text-file-in-python 3 How do I modify a text file in Python? Oscar 2008-09-24T06:30:56Z 2009-11-28T07:35:10Z <p>I'm using Python, and would like to insert a string into a text file without deleting or copying the file. How can I do that?</p> http://stackoverflow.com/questions/1778485/android-listview-display-all-available-items-without-scroll-with-static-header 1 android listview display all available items without scroll with static header. Faisal khan 2009-11-22T11:39:57Z 2009-11-27T22:35:34Z <p>I'm having a little difficulties while trying to get a certain layout to work: I want to have list. List does not have to be scrollable, but should be shown completely. But the page itself should be able to scroll (with the lists in it), if the total content ist higher than the screen. </p> <p> <blockquote> </blockquote> <pre><code> &lt;LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" android:id="@+id/linear_layout" android:orientation="vertical" android:layout_width="fill_parent" android:layout_height="wrap_content" android:layout_weight="1" android:background="#ff181818" &gt; &lt;Textview android:id="@+id/my_text" text="header contents goes here" android:layout_width="fill_parent" android:layout_height="wrap_content"/&gt; </code></pre> <p></p> <pre><code> &lt;ListView android:id="@+id/my_list1" android:layout_height="wrap_content" android:layout_width="fill_parent" /&gt; &lt;/LinearLayout&gt; </code></pre> <p> </p> <p>it only uses a small part of the screen (about 2 lines per list), instead of filling the available height, and the lists themselves can be scrolled. How can I change the layout to always show the whole lists but have the screen be scrollalbe? </p> http://stackoverflow.com/questions/1809945/first-line-text-indent-in-sifr 0 First line text-indent in sIFR andreeib 2009-11-27T17:45:12Z 2009-11-27T19:09:49Z <p>Hi, I have a text block made whith sIFR and I want to indent the first line.</p> <p>Look at this image to see what I want:</p> <blockquote> <p><code>http://alltutorials.hi2.ro/testimonial.jpg</code></p> </blockquote> <p>I want the word WOW to be after the big quotes.</p> <p>I searched the sIFR documention I used text-indent but it seems it doesn't work.</p> <p>Thank's for the help,</p> <p>Andrei</p> <p>Paste the link because, it does not work directly.</p> http://stackoverflow.com/questions/1806795/how-to-change-text-in-a-textbox-on-another-form-in-visual-c 0 How to change text in a textbox on another form in Visual C#? Phenom 2009-11-27T04:47:52Z 2009-11-27T11:29:31Z <p>In Visual C# when I click a button, I want to load another form. But before that form loads, I want to fill the textboxes with some text. I tried to put some commands to do this before showing the form, but I get an error saying the textbox is inaccessible due to its protection level. </p> <p>How can I set the textbox in a form before I show it?</p> <pre><code> private void button2_Click(object sender, EventArgs e) { fixgame changeCards = new fixgame(); changeCards.p1c1val.text = "3"; changeCards.Show(); } </code></pre> http://stackoverflow.com/questions/1807807/text-alignment-in-svg 0 Text alignment in SVG Smile ArT 2009-11-27T10:02:29Z 2009-11-27T10:02:29Z <p>How to make text with proportional font but an equal number of characters per line fully justified in SVG text box? Preferably with an svg-code example if it's possible.</p> http://stackoverflow.com/questions/1263001/wpf-text-fade-out-then-in-effect 0 WPF Text Fade out-then-in effect Giles Moss 2009-08-11T21:22:48Z 2009-11-27T04:00:03Z <p>Hi Folks,</p> <p>I'm trying to use WPF animation to creat an effect where, when the data in a text property changes, the text fades out, then in again.. or preferably a proper crossfade.</p> <p>I have successfully got half of this working, the code below responds to the text changed event, immediately makes the text invisible then fades it in over 3 seconds.</p> <p>To fade text out is similarly simple, I just change the From and To properties of the tag. BUT - the problem is that the text on the screen changes immediately. This is usually absolutely required, of course, but in this case I want the OLD text to fade out, then the NEW text to fade in.</p> <p>Is there any clever trick to doing this in WPF animation?</p> <p>Current half-finished trigger:</p> <pre><code>&lt;Style TargetType="TextBlock" x:Key="fadeinout"&gt; &lt;Style.Triggers&gt; &lt;EventTrigger RoutedEvent="Binding.TargetUpdated"&gt; &lt;BeginStoryboard&gt; &lt;Storyboard&gt; &lt;DoubleAnimation Storyboard.TargetProperty="Opacity" Duration="0:0:3" From="0.0" To="1.0" BeginTime="0:0:0" /&gt; &lt;/Storyboard&gt; &lt;/BeginStoryboard&gt; &lt;/EventTrigger&gt; &lt;/Style.Triggers&gt; &lt;/Style&gt; </code></pre> http://stackoverflow.com/questions/1805987/suppose-i-have-2-vectors-what-algorithms-can-i-use-to-compare-them 1 Suppose I have 2 vectors. What algorithms can I use to compare them? alex 2009-11-26T22:39:54Z 2009-11-27T00:59:43Z <p>Company 1 has this vector:</p> <pre><code>['books','video','photography','food','toothpaste','burgers'] ... ... </code></pre> <p>Company 2 has this vector:</p> <pre><code>['video','processor','photography','LCD','power supply', 'books'] ... ... </code></pre> <p>Suppose this is a frequency distribution (I could make it a tuple but too much to type).<br> As you can see...these vectors have things that overlap. "video" and "photography" seem to be "similar" between two vectors due to the fact that they are in similar positions. And..."books" is obviously a strong point for company 1. Ordering and positioning does matter, as this is a frequency distribution.</p> <p>What algorithms could you use to play around with this? What algorithms could you use that could provide valuable data for these companies, using these vectors?</p> <p>I am new to text-mining and information-retrieval. Could someone guide me about those topics in relation to this question?</p> http://stackoverflow.com/questions/1806135/c-text-replace-preserve-case 2 C# text.Replace preserve case Josh King 2009-11-26T23:38:35Z 2009-11-26T23:57:35Z <p>I am working on a wiki bot for my communities wiki that uses the DotNetWikiBot Framework; it is to find a word that is commonly a typo (such as "abilty") and replaces them with the correction (such as "ability").</p> <p>This works as is is coded:</p> <pre><code>p.text = p.text.Replace(@"\b" + typoArray[x, 0] + @"\b", typoArray[x, 1]); </code></pre> <p>However this will replace "Abilty" with "ability" which is of course going to cause issues, but I cannot figure out how to preserve the case of the replaced word (so Abilty becomes Ability) unless the typo replacement is meant to be capitalized, no matter what it is replacing: januray to January</p> http://stackoverflow.com/questions/1804895/how-do-you-read-a-text-file-without-losing-odd-characters 1 How do you read a text file without losing odd characters? xpda 2009-11-26T17:29:29Z 2009-11-26T18:58:50Z <p>I would like to read a text file into an array of strings using System.IO.File.ReadAllLines. However, ReadAllLines strips out some odd characters in the file that I would like to keep, such as chr(187). I've tried some different encoding options, but that doesn't help and I don't see an option for "no encoding."</p> <p>I can use FileOpen and LineInput to read the file without modification, but this is quite a bit slower. Using FileSystemObject also works properly, but I would rather not use that.</p> <p>What is the best way to read a text file into an array of strings without modification in .net?</p> http://stackoverflow.com/questions/1377015/reading-a-file-in-vb-net 0 Reading a file in vb.net raji 2009-09-04T03:04:54Z 2009-11-26T17:11:04Z <p>how to read a text file character by character in VB.NET??</p> http://stackoverflow.com/questions/179708/how-can-i-find-the-rect-of-wrapped-text-on-an-iphone 1 How can I find the Rect of wrapped text on an iPhone? Pat Garner 2008-10-07T18:16:37Z 2009-11-26T16:17:36Z <p>Can anybody recommend a good method for determining the Rect of some wrapped text on an iPhone? I've tried all the built-in methods for NSString in the 2.1 SDK to no avail. The size methods never return sizes that allow me to completely fit wrapped text in my custom view.</p> <p>I'm drawing some user customizable text that should always be as big as possible within the limits of my custom view. If I can determine the rect needed to completely enclose wrapped text for a given max width and font size, I can raise or lower the font size until the text is just big enough to completely fill the custom view without being clipped.</p> <p>Any help is much appreciated!</p> http://stackoverflow.com/questions/1803628/raw-list-of-person-names 0 Raw list of person names cool-RR 2009-11-26T13:19:45Z 2009-11-26T13:49:08Z <p>I need to have a long list of people names ("Robert", "Jeniffer", "Andrew", etc.)</p> <p>How long? 100 will be sort of okay, but thousands would be better.</p> <p>I'd like it raw, not in an HTML webpage or something, so I can easily import it to my code.</p> http://stackoverflow.com/questions/1803535/c-detect-selected-text-on-windows 0 C# , detect selected text on windows? TatMing 2009-11-26T12:59:16Z 2009-11-26T13:09:40Z <p>I would make a tools like Google toolbar translate function, but it is for desktop. What i want to do is highlight the text in any application (word,pdf,live messenger etc) , and translate by google translate api ,return as a tool tips.</p> <p>I have search msdn about monitoring text, i only found using copy&amp;paste and monitoring clipboard to tick the event.</p> <p>so, any idea about that? thanks you.</p> http://stackoverflow.com/questions/461649/fluid-layout-of-text-in-flex3 2 Fluid layout of text in Flex3 Ian Dickinson 2009-01-20T15:00:55Z 2009-11-26T06:00:03Z <p>In my Flex3 app I have some floating windows which contain variable amounts of text. The windows are meant to be user-resizable. Currently, while I can resize the windows OK, I can't get the text in a TextArea in the window to re-flow when the window is resized. I've come across blog postings that there's a size bug in TextArea that means that setting the text content does not re-size the TextArea properly, together with suggested workarounds. In my case, the content stays the same but the geometry of the container changes. What seems to be happening is that the TextArea adopts a fixed size when it is first rendered, and no amount of resizing the container changes that. Can anyone suggest a means of creating a fluid text area in Flex?</p> <p>Ian</p> http://stackoverflow.com/questions/1791270/i-need-to-convert-a-returned-number-in-a-report-with-text 0 I need to convert a returned number in a report with text? jason 2009-11-24T16:37:02Z 2009-11-26T03:32:57Z <p>I have a value in a report that is returned as a number for example 1 - What i am trying to do is whenever 1 is displayed in the report i want it to show text such as Program Live.</p> <p>I am using crystal 9, any help would be appreciated.</p> http://stackoverflow.com/questions/1800295/reading-text-file-into-an-array-of-lines-in-c 0 Reading text file into an array of lines in C zpconn 2009-11-25T22:12:27Z 2009-11-25T23:20:13Z <p>Using C I would like to read in the contents of a text file in such a way as to have when all is said and done an array of strings with the nth string representing the nth line of the text file. The lines of the file can be arbitrarily long.</p> <p>What's an elegant way of accomplishing this? I know of some neat tricks to read a text file directly into a single appropriately sized buffer, but breaking it down into lines makes it trickier (at least as far as I can tell).</p> <p>Thanks very much!</p> http://stackoverflow.com/questions/1795520/are-there-any-good-summarizers-for-a-web-page 1 Are there any good summarizers for a web-page? alex 2009-11-25T08:52:31Z 2009-11-25T21:37:10Z <p>Suppose I give you a URL...can you analyze the words and spit out the "keywords" of that page? (besides using meta-tags)</p> <p>Are there good open-source summarizers out there? (preferably Python)</p> http://stackoverflow.com/questions/1797990/sifr-3-no-text-wrap-around-floating-images 0 sIFR 3 no text wrap around floating images Jeremy Schultz 2009-11-25T16:06:44Z 2009-11-25T20:45:04Z <p>Is sIFR supposed to wrap around floating images? I have some headings next to a large image float:left and the image bumps the headline down below it. Headings that aren't beside floating images do wrap properly so the functionality is there, so my question is whether or not sIFR 3 text wraps beside floating images.</p> <p>Jeremy</p> http://stackoverflow.com/questions/1799620/cursor-location-in-text-input-fields 0 Cursor location in text-input fields Mala 2009-11-25T20:05:00Z 2009-11-25T20:34:47Z <p>There is a lot of information on how to place the cursor exactly where you want it to be in a textarea. None of it seems to work for an <code>&lt;input type="text"&gt;</code> field.</p> <p>Basically, when the page loads, I have an input field with text in it, and it's focused. The problem is that the cursor is at the end of the pre-written text. I need it to be at the beginning. Alternatively, hiding the the cursor would be fine, too. Even better, actually, but I don't know if this is possible.</p> <p>Ideally this would be done in jQuery, but regular JS is fine too.</p> <p>Thanks!<br> Mala</p> http://stackoverflow.com/questions/1781428/acronyms-with-sphinx-search-engine 1 Acronyms with Sphinx search engine matt 2009-11-23T06:28:05Z 2009-11-25T00:23:56Z <p>how can i index acronyms like 'm.i.a.'? when i search for 'mia', i get results for 'mia' and not 'm.i.a.'. when i search for 'm.i.a.', i get nothing at all.</p> <p>edit:</p> <p>solution looks roughly like: <code>ignore_chars = -, .</code></p> http://stackoverflow.com/questions/1791526/can-i-get-a-javascript-event-from-the-selection-of-text-outside-of-text-or-textar 0 Can I get a Javascript event from the selection of text outside of text or textarea? dacracot 2009-11-24T17:11:51Z 2009-11-24T17:52:46Z <p>I would like to know when a user selects text in an html page using Javascript. The text should not be editable. The <code>onselect</code> event seems to be only applicable to <code>&lt;textarea&gt;</code> and <code>&lt;input type="TEXT"&gt;</code> tags. The event is not fired if either tag is disabled.</p> <p>Is there a way around this with these tags?</p> <p>Is there a completely different approach?</p> http://stackoverflow.com/questions/1758908/win32-drawtext-line-height 2 Win32 DrawText line height DougN 2009-11-18T20:38:44Z 2009-11-24T16:53:58Z <p>I'm calling the Win32 <code>DrawText</code> function to output some text into a device context. The text is long and wraps nicely onto a second line. The problem is I need to decrease the space between lines a bit (I guess decrease the line height?). Any ideas on how to do this? </p> <p>I would just call <code>DrawText</code> twice (one for each line) but then I have to do my own word wrap.</p> <p>Is there any other way?</p> <p>Thanks</p> http://stackoverflow.com/questions/1739729/word-2007-macro-to-insert-text 2 Word 2007 Macro to insert text James Brauman 2009-11-16T02:24:55Z 2009-11-24T09:16:37Z <p>I'm trying to create a macro to insert some text with custom formatting, then change the font style back to what it was before the macro was run. This is what I have come up with so far but it is giving me an error.</p> <pre><code>Dim myText As String Dim oldFont As Object 'Save old font Set oldFont = Selection.Font 'Insert text with custom font myText = "CUSTOM STRING" Selection.Font.Name = "Comic Sans MS" Selection.Font.Size = 26 Selection.Font.Bold = True Selection.TypeText (myText) 'Revert font back to original Set Selection.Font = oldFont </code></pre> <p>Can anyone explain a way to do what I'm looking for? Thanks.</p> <p>Edit: Sorry, I should have been more specific. If I am typing text, I have a certain formatting that I'm typing in that is shown on the Home Tab (eg. Comic Sans Ms, Size 22, Bold). When I insert text with the macro, this changes the formatting that I'm typing with, so if I continue typing it will be in the NEW font type, not the Comic Sans MS. I'm trying to make it so if I continue typing after I have inserted the text via macro, it will retain my old formatting.</p> http://stackoverflow.com/questions/1779764/jquery-expander-with-max-lines-property 0 jQuery expander with max-lines property lasseespeholt 2009-11-22T19:50:34Z 2009-11-23T18:53:38Z <p>Hi,</p> <p>I really thinks <a href="http://plugins.learningjquery.com/expander/" rel="nofollow">jQuery Expander plugin</a> is great but it can't do satisfy my needs. It cuts text and put a "read more" button after the text which expands the text. But it only cuts when the text length is more than a specified value. But what if the text is:</p> <blockquote> <pre><code>Some text: Blah blah </code></pre> </blockquote> <p>The text use as much space as a text with many characters but the Expander will not cut it off. I want to have a max lines property so I can restrict both on text length and max lines. Any plugin suggestions?</p> http://stackoverflow.com/questions/335265/silverlight-2-0-cant-get-the-text-wrapping-behaviour-that-i-want 5 Silverlight 2.0 - Can't get the text wrapping behaviour that I want Anthony 2008-12-02T20:13:58Z 2009-11-22T23:11:12Z <p>I am having trouble getting Silverlight 2.0 to lay out text exactly how I want. I want text with line breaks and embedded links, with wrapping, like HTML text in a web page. </p> <p>Here's the closest that I have come:</p> <pre><code>&lt;UserControl x:Class="FlowPanelTest.Page" xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" xmlns:Controls="clr-namespace:Microsoft.Windows.Controls;assembly=Microsoft.Windows.Controls" Width="250" Height="300"&gt; &lt;Border BorderBrush="Black" BorderThickness="2" &gt; &lt;Controls:WrapPanel&gt; &lt;TextBlock x:Name="tb1" TextWrapping="Wrap"&gt;Short text. &lt;/TextBlock&gt; &lt;TextBlock x:Name="tb2" TextWrapping="Wrap"&gt;A bit of text. &lt;/TextBlock&gt; &lt;TextBlock x:Name="tb3" TextWrapping="Wrap"&gt;About half of a line of text.&lt;/TextBlock&gt; &lt;TextBlock x:Name="tb4" TextWrapping="Wrap"&gt;More than half a line of longer text.&lt;/TextBlock&gt; &lt;TextBlock x:Name="tb5" TextWrapping="Wrap"&gt;More than one line of text, so it will wrap onto the following line.&lt;/TextBlock&gt; &lt;/Controls:WrapPanel&gt; &lt;/Border&gt; &lt;/UserControl&gt; </code></pre> <p>But the issue is that although the text blocks tb1 and tb2 will go onto the same line because there is room enough for them completely, tb3 onwards will not start on the same line as the previous block, even though it will wrap onto following lines.</p> <p>I want each text block to start where the previous one ends, on the same line. I want to put click event handlers on some of the text. I also want paragraph breaks. Essentially I'm trying to work around the lack of FlowDocument and Hyperlink controls in Silverlight 2.0's subset of XAML.</p> <p><hr></p> <p>To answer the questions posed in the answers: </p> <p><strong>Why not use runs for the non-clickable text?</strong> If I just use individual TextBlocks only on the clickable text, then those bits of text will still suffer from the wrapping problem illustrated above. And the TextBlock just before the link, and the TextBlock just after. Essentially all of it. It doesn't look like I have many opportunities for putting multiple runs in the same TextBlock.</p> <p>Dividing the links from the other text with RegExs and loops is not the issue at all, the issue is display layout.</p> <p><strong>Why not put each word in an individual TextBlock in a WrapPanel</strong> Aside from being an ugly hack, this does not play at all well with linebreaks - the layout is incorrect. </p> <p>It would also make the underline style of linked text into a broken line.</p> <p>Here's an example with each word in its own TextBlock. Try running it, note that the linebreak isn't shown in the right place at all.</p> <pre><code>&lt;UserControl x:Class="SilverlightApplication2.Page" xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" xmlns:Controls="clr-namespace:Microsoft.Windows.Controls;assembly=Microsoft.Windows.Controls" Width="300" Height="300"&gt; &lt;Controls:WrapPanel&gt; &lt;TextBlock TextWrapping="Wrap"&gt;Short1 &lt;/TextBlock&gt; &lt;TextBlock TextWrapping="Wrap"&gt;Longer1 &lt;/TextBlock&gt; &lt;TextBlock TextWrapping="Wrap"&gt;Longerest1 &lt;/TextBlock&gt; &lt;TextBlock TextWrapping="Wrap"&gt; &lt;Run&gt;Break&lt;/Run&gt; &lt;LineBreak&gt;&lt;/LineBreak&gt; &lt;/TextBlock&gt; &lt;TextBlock TextWrapping="Wrap"&gt;Short2&lt;/TextBlock&gt; &lt;TextBlock TextWrapping="Wrap"&gt;Longer2&lt;/TextBlock&gt; &lt;TextBlock TextWrapping="Wrap"&gt;Longerest2&lt;/TextBlock&gt; &lt;TextBlock TextWrapping="Wrap"&gt;Short3&lt;/TextBlock&gt; &lt;TextBlock TextWrapping="Wrap"&gt;Longer3&lt;/TextBlock&gt; &lt;TextBlock TextWrapping="Wrap"&gt;Longerest3&lt;/TextBlock&gt; &lt;/Controls:WrapPanel&gt; &lt;/UserControl&gt; </code></pre> <p><strong>What about The LinkLabelControl</strong> as <a href="http://www.silverlightshow.net/items/Silverlight-LinkLabel-control.aspx" rel="nofollow">here</a> and <a href="http://www.codeplex.com/SilverlightLinkLabel" rel="nofollow">here</a>. It has the same problems as the approach above, since it's much the same. Try running the sample, and make the link text longer and longer until it wraps. Note that the link starts on a new line, which it shouldn't. Make the link text even longer, so that the link text is longer than a line. Note that it doesn't wrap at all, it cuts off. This control doesn't handle line breaks and paragraph breaks either.</p> <p><strong>Why not put the text all in runs, detect clicks on the containing TextBlock and work out which run was clicked</strong> Runs do not have mouse events, but the containing TextBlock does. I can't find a way to check if the run is under the mouse (IsMouseOver is not present in SilverLight) or to find the bounding geometry of the run (no clip property). </p> <p>There is <strong>VisualTreeHelper.FindElementsInHostCoordinates()</strong></p> <p>The code below uses VisualTreeHelper.FindElementsInHostCoordinates to get the controls under the click. The output lists the TextBlock but not the Run, since a Run is not a UiElement. </p> <pre><code>private void theText_MouseLeftButtonDown(object sender, System.Windows.Input.MouseButtonEventArgs e) { // get the elements under the click UIElement uiElementSender = sender as UIElement; Point clickPos = e.GetPosition(uiElementSender); var UiElementsUnderClick = VisualTreeHelper.FindElementsInHostCoordinates(clickPos, uiElementSender); // show the controls string outputText = ""; foreach (var uiElement in UiElementsUnderClick) { outputText += uiElement.GetType().ToString() + "\n"; } this.outText.Text = outputText; } </code></pre> <p><strong>Use an empty text block with a margin to space following content onto a following line</strong></p> <p>I'm still thinking about this one. How do you calculate the right width for a line-breaking block to force following content onto the following line? Too short and the following content will still be on the same line, at the right. Too long and the "linebreak" will be on the following line, with content after it. You would have to resize the breaks when the control is resized.</p> <p>Some of the code for this is:</p> <pre><code> TextBlock lineBreak = new TextBlock(); lineBreak.TextWrapping = TextWrapping.Wrap; lineBreak.Text = " "; // need adaptive width lineBreak.Margin = new Thickness(0, 0, 200, 0); </code></pre> http://stackoverflow.com/questions/391523/what-are-some-good-free-programming-books 122 What are some good free programming books? theman_on_vista 2008-12-24T14:24:53Z 2009-11-22T14:30:15Z <p>I know of a couple, but I would like to build a list up for some nice holiday reading.</p> <p>(If there is a book on here you read for free, and really liked, make sure to support the author and buy a hard copy!)</p> http://stackoverflow.com/questions/1529480/rotate-sifr-jquery 0 rotate sIFR jquery Ben casey 2009-10-07T04:28:48Z 2009-11-21T20:00:02Z <p>im looking for a way to rotate sifr text on a wordpress blog using jquery, any ideas, the rotate plugin doesnt seem to work. </p> http://stackoverflow.com/questions/1774846/how-to-search-replace-text-with-an-a-href-wrapper-in-javascript 0 How to search/replace text with an "a href" wrapper in JavaScript? unknown (google) 2009-11-21T07:35:39Z 2009-11-21T19:42:41Z <p>I've converted html to a string, I'm able to use replace in that string to wrap the text with a link, and I can put that html back into the ID it came from.</p> <p>My problem is that my replace method is going <em>inside</em> existing links on the page. This could create nested links, which is a problem. Does anyone out there know how to prevent the replace method from matching text that is within a link already?</p> <p>I have right now:</p> <pre><code>keyword = "matching phrase"; keywordLink = "&lt;a href='http://myurl.com'/&gt;" + keyword + "&lt;/a&gt;"; sasser = sasser.replace(keyword, keywordLink); sasDom.innerHTML = sasser; </code></pre> <p>I'm looking for, in pseudo code:</p> <pre><code>... (keyword [if the next " &lt; " sign is not followed by "/a&gt;", regardless of how far away it is], keywordLink); </code></pre> http://stackoverflow.com/questions/1774218/drag-file-and-reveal-text-vb-net 0 Drag file and reveal text - VB.NET Kevin 2009-11-21T01:42:01Z 2009-11-21T16:40:25Z <p>Hey guys,</p> <p>How can I drag a file into a textbox, and then it will show the directory of that file. It seems pretty simple, since its a drag and drop kind of thing.</p> <p>Thanks</p>