Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

2
votes
2answers
1k views

How to set Wordpad's default plain-text font?

I much prefer Wordpad to Notepad in Windows 7 for quickly checking out source files, namely because Notepad doesn't display most correctly if the file was written in Unix. However it saddens me that ...
1
vote
1answer
135 views

Controlling Wordpad in Windows using messages

I am trying to find a reliable way to control windows Wordpad, which I successfully embedded in application as a child window. One command I would like to execute just after document was opened is ...
1
vote
2answers
101 views

Why do strings not match?

I have a Wordpad file from which I extract two strings and compare them. In this case they are both equal, but I cannot use the =~ expression to evaluate them. if($pin_list =~ /$lvl_list/){ do ...
1
vote
5answers
2k views

How to use the ribbon in my .NET applications?

This is what WordPad looks like in Windows 7: The ribbon is also in paint. Which leads me to think that the ribbon is "hidden" somewhere in a dll file that I could import into my C# apps. Is this ...
0
votes
1answer
86 views

Programaticly editing a RTF to be compatable with WordPad

I am in the process of transferring data from one document management system to another system. In the old system they had a bookmark button for inserting replacement fields. I need to replace the ...
0
votes
1answer
229 views

C# - How can I get a text range from WordPad by sending the EM_GETTEXTRANGE message?

I'm having trouble getting a text range from a running instance of WordPad. I have gotten the following Windows messages to work for WordPad without a problem: WM_GETTEXT, WM_GETTEXTLENGTH, ...
0
votes
1answer
666 views

Crystal Reports VS 2008 Different Wrapping Behavior

I have a text box which is 7.5" wide and I set Can Grow. Inside the textbox I have placed a TEXT database field. I set the field to use the RTF format. When I export the report to PDF on the developer ...
0
votes
2answers
1k views

Window CE 6 Wordpad replacement

I'm developing a Win CE 6 OS image and want to make it fit in the "Windows Embedded CE 6.0 Core Run-Time License". This means, among other things, that I have to remove the Wordpad application. From ...
0
votes
3answers
696 views

What's the best way to save a RichTextFile in C#?

I'm trying to create a notepad/wordpad clone. I want to save it in .rtf format so that it can be read by wordpad. How do I save a do this in C#?