Tagged Questions

For issues relating to interfacing with Notepad and/or duplicating Notepad functionality.

learn more… | top users | synonyms

64
votes
85answers
17k views

What are the best alternatives to Notepad?

What are the best alternatives to Notepad? I would like to get syntax highlighting support for major languages. Other desired properties are: Simple to use Light weight
5
votes
6answers
209 views

get the value of notepad and put it inside the c# string?

Notepad: Hello world! How I'll put it in C# and convert it into string..? So far, I'm getting the path of the notepad. string notepad = @"c:\oasis\B1.text"; //this must be Hello world Please ...
5
votes
16answers
2k views

Windows.Form c# without visual studio

I am trying to learn Windows.Forms, and while I have Visual Studio (edit, my mistake obviously), I feel that I learn much more effectively by doing everything in Notepad. I have searched everywhere ...
4
votes
4answers
180 views

Notepad Path in VS2008

In my application, I have defined the following: public static readonly string NOTEPAD = "%windir%\\notepad.exe"; I can type in the text value of NOTEPAD into the Run command on my Win7 machine, and ...
4
votes
2answers
3k views

No application is associated with the specified file exception

UnhandledException: System.ComponentModel.Win32Exception: No application is associated with the specified file for this operation at ...
4
votes
43answers
2k views

Does anyone still code using “notepad”?

I know we've got all of these nice IDEs out there today. With the way that it intelligently finishes your coding for you or checks syntax as you type - it's cool. But.... for those of us who really ...
3
votes
3answers
117 views

File exists in Windows Explorer and notepad, but is not accessable in my program

Why does the following problem happen? Scenario: Make sure that IIS is installed Execute "notepad %WINDIR%\System32\inetsrv\config\applicationHost.config" using admin account Actual Result: the ...
3
votes
1answer
161 views

Should the tutorial Notepadv3 close its database?

Android’s Notepad tutorial Notepadv3 opens its database but never explicitly closes it. To make it correct, should Notepadv3 close its database, presumably with mDbHelper.close(); and, if so, where ...
3
votes
6answers
2k views

How do i read a notepad file in java?

im trying to create a restaurant system that will create food items and such from a menu. ill be learning jdbc soon and im sure that would help but for now i think the simplest way is too create my ...
3
votes
10answers
534 views

What development notepad should I use?

I need recommendations for a good (free) development notepad to work in on my new macbook, mainly for PHP, AJAX etc.
3
votes
9answers
10k views

Open txt file from C# application

The following code is suppose to open CMD from my C# application and open the file text.txt. I tried to set the file path as an environment variable but when notepad opens it looks for %file%.txt ...
2
votes
3answers
62 views

How to get the exact path of notepad.exe in order to associate a file extension

I need to associate a file extension I have created “.rulog” with notepad.exe as part of a setup project installation for a windows 7 machine (it’s here since we require admin privileges to write to ...
2
votes
1answer
162 views

C# - Opening text file with notepad minimized?

It doesn't look like the Minimized style has an effect: string logFilePath = @"c:\mylog.log"; ProcessStartInfo startInfo = new ProcessStartInfo(logFilePath) {WindowStyle = ...
2
votes
2answers
749 views

Error while executing notepad example

I am testing the example given on http://developer.android.com/resources/tutorials/notepad/notepad-ex1.html. I have followed the steps as mentioned in the tutorial. The application is successfully ...
2
votes
1answer
299 views

Silverlight 4 - send text to Notepad

I try this tutorial http://elegantcode.com/2010/02/20/silverlight-4-com-interop-and-the-cool-stuff-you-can-do-with-it/ I need open Notepad and send text into. I use this code: using (dynamic shell ...
2
votes
2answers
437 views

Can a java program “type” into another windows program like notepad

is there anyway to type into a notepad.exe process from a JAVA process?
2
votes
1answer
333 views

button added to listview in google notepad example

I've taken the Notepad Tutorial from Google and added a button to the note_row.xml But now, I can no longer edit the row when I click on it. I can however click the button. Any idea what I add ...
2
votes
1answer
632 views

Opening Resources in Text File Format in Notepad

I'm having some trouble using resource files. In my project I'm using a bunch of bitmap files and two txt files. Bitmaps are used as backgrounds for controls, but .txt files I want to open in ...
2
votes
2answers
9k views

How do I create a new line using javascript that shows correctly in notepad?

I have a script that copies table cells from the browser into the user's clipboard. I loop through each cell and when a new line is needed I use text += "\n"; If I paste the text into excel, it ...
1
vote
4answers
100 views

VIM: Doesn't VIM 'replace' use of CTRL with ESC?

It is usually advertised that using VIM alleviates the need of moving the hand away from home row. However, it seems that instead of going to CTRL, I am stretching my hand to ESC all the time. Note: ...
1
vote
2answers
103 views

In Notepad++, removing any text not matching a certain string on each line?

I have something like: oiuerer jeff oteaweawe gnwaeeeee jeff nbbaweee bbbadx jeff nvxxawee I would like to remove the text which is both before and after the word "jeff" so that each line is only ...
1
vote
1answer
64 views

Notepadv2 tutorial isn't working - “no notes yet”, NoteEdit-class doesn't seem to be called

so far I got along fine with Android Java, but now that I'm trying to do it right and learn the notepad I'm getting lost. When I run the Notepadv2 from the official tutorials, I get exactly the same ...
1
vote
3answers
162 views

Make all .xml files open in notepad in C sharp

I know that if i write System.Diagnostics.Process.Start( "notepad.exe", "text.txt"); a certain file will open in notepad. I want to make all files with a certain extension like .xml open in notepad. I ...
1
vote
2answers
97 views

Using Process.Start to open a text file in PFE

I wonder if you can help me with this one. I have looked on Google but found nothing. I have a program, that once it is finished comparing 2 files together, it writes out all the differences to a ...
1
vote
2answers
119 views

How do I report a typo/incorrect code in the Notepad v1 example 1 on the Android Developers site?

On the android developers website, there is a Notepad tutorial. http://developer.android.com/resources/tutorials/notepad/index.html I found a mistake in the first example, but after browsing through ...
1
vote
4answers
585 views

To Access Notepad, calculator through asp.net

I m trying to open Notepad, Calculator in button click in asp.net with code behind C#. I tried with the code System.Diagnostics.Process.Start("c:\\windows\\system32\\notepad.exe"); this is working ...
1
vote
2answers
92 views

Is there an easy way to View, Edit & Locally store a .txt file through Chrome

This isn't necessarily a coding problem, but users here would be the perfect people to ask. Is there an easy way to view and edit a simple text file (.txt seems the most obvious) on a browser (I use ...
1
vote
3answers
1k views

android notepad tutorial - no build target available

when setting up the the notepad exercise (http://developer.android.com/resources/tutorials/notepad/notepad-ex1.html) i am having problems getting past step 1 point 4. for build target it says no ...
1
vote
3answers
379 views

Null Reference exception in C#

I'm experiencing "null reference exception" when I'm attempting to return a value from a structure. here is the code: AssetItem item = new AssetItem(); item = initModified(); bool ...
1
vote
2answers
214 views

Dynamic event of textbox

How do you make an event dynamically? Like for example, I'm making a notepad with tab support for practice, and for every new tab, a text box is made dynamically. How can I make an event (TextChanged ...
1
vote
0answers
426 views

Notepad Tutorial Android - menu problems

I am working on the Notepad Tutorial on the Android dev site, part 1. I have done all the code as in the tutorial, also tried with the code form the downloaded solution. When i launch the app I ...
1
vote
1answer
827 views

How Make A Text File In Memory And Write Something On It And Open NotePad In Client And Open That File In It?

How can i Make A Text File In Memory(Ram -> Save NoWhere) And Write Something On It And Open NotePad on top of Client browser And Open That Text File In It And Let the user save it by him/her self? -> ...
1
vote
2answers
220 views

Implement F3 Find Next using TFindDialog

I've implemented a search using the TFindDialog on my form. Everything works well except that I cannot find a way to mimic the "F3 - Find Next" behaviour as in Notepad. Once you have entered a search ...
1
vote
0answers
32 views

Fetch path for a text file

I have an application monitoring application in C# and I am trying to fetch the path of a file edited from notepad (or opened in notepad). I am able to fetch the title of the active window using the ...
1
vote
1answer
2k views

“Keyboard not responding” in emulator?

I'm using Android 2.1 SDK on MacOS 10.6.2. When I try to run the standard Notepad app in the emulator, I get the expected messages from Eclipse [2010-01-18 17:42:24 - NotesList]New emulator found: ...
1
vote
3answers
862 views

Notepad tutorial

This is truly a beginner's question. I installed and successfully ran the notepad tutorials Notepadv1,2,3 and typed in a few notes. Can i import data (manually )from an external text file into the sq ...
1
vote
1answer
2k views

Equipping Notepad with Spell Check (as you type) feature — Best choice available?

I don't need any alternative text editor with bundle of features. I just want my text to be checked in Notepad (as I type) for any spelling mistake. What is the best choice available? Thanks in ...
0
votes
0answers
7 views

Modified Android Notepad example code can create and delete a note. But no edit or note title working

Using modified Android Notepad example code, I can create and delete a note only. No edit or note title is working. I changed the name of the App,Content provider and cursor management to reflect my ...
0
votes
1answer
24 views

Android Notepad Tutorial - Implementing Search feature

I have been learning Android programming from various books and tutorials from roughly 4-5 months now and have a basic idea of most of the things in Android Programming and I recently started with the ...
0
votes
1answer
39 views

Writing REG_EXPAND_SZ reg key from notepad

I am trying to write a reg key from notepad and I need to create a REG_EXPAND_SZ value. When I have used this before I have used "" for REG_SZ and dword: for REG_DWORD and so on but I don't know how ...
0
votes
1answer
67 views

Notepad app and databases

I am making an app that has a basic tableview where users can add data to the table, just for within their own version of the app. Needs to be on the iPhone alone, so no internet connection to a ...
0
votes
5answers
102 views

How to make notepad to save text in utf-8 without bom?

I have a csv file with special accents and saving it in notepad by selecting utf-8 encoding. When I read the file using java,it reads the bom characters too. So I want to save this file in utf8 ...
0
votes
0answers
43 views

Android Tutorial Notepad

I have a problem when I run the first example. Everything works fine but the size of the application screen is smaller than the one of my phone. It's like if it was a different resolution. I run the ...
0
votes
2answers
58 views

Find/Remove (keep only Numbers)

Have a text file with 123.234.531.123.5363 Text : some words here... Words : awesome//great+++ Rate : 2,231 131.53234.2414.5345.634 Text : some words here... Words : painfull//sad Rate : 182,21 ...
0
votes
1answer
52 views

Plugin for NotePad++ for rich text?

I like Notepad++. But sometimes I need some words set in bold or cursive, change font size ets. Does it possible in Notepad++? Or exists some plugin?
0
votes
0answers
56 views

— Android Notepad Tutorial #2 — Context menu doesn't appear [closed]

Possible Duplicate: Why doesn't the context menu work in the “Notepad” tutorial? My question is pretty the same of this one: Why doesn't the context menu work in the ...
0
votes
1answer
123 views

Visual studio file opens only with notepad

I have a very strange issue with Visual Studio 2010. My program have some memory issues, so I have to reboot frequently. After the last reboot, one of my header files has been corrupted ...
0
votes
0answers
85 views

Load data into widget TextView on initial widget startup

I am a total newbie at java and android coding, but I am trying to create a simple notepad widget. The widget displays the note-text in a TextView and when you tap it it opens an activity where you ...
0
votes
1answer
134 views

Notepad++ put all my PHP into one line

I edited a bunch of PHP files (with N++) on Computer A, uploaded it to a server, downloaded it to computer B (with N++), and they lost all their line breaks. I've done this routine many times and ...
0
votes
2answers
87 views

auto complete tags on Notepad++

I wonder if there is any plugin for notepad++ to autoclose a tag with the correct closed one. I mean, if I type I'd like that the correct appears automatically. Cheers.

1 2